/hardware/bsp/intel/peripheral/libupm/examples/python/ |
D | m24lr64e.py | 37 byte = nfcTag.readByte(addr) variable 39 print "Read byte: ", format(byte, '02x') 42 byte = (~byte & 0xff) variable 43 nfcTag.writeByte(addr, byte) 44 print "Wrote inverted byte: ", format(byte, '02x') 47 byte = nfcTag.readByte(addr) variable 48 print "Read byte: ", format(byte, '02x')
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
D | m24lr64e.cxx | 47 uint8_t byte = nfcTag->readByte(addr); in main() local 48 printf("Read byte: %02x\n", byte); in main() 51 byte = ~byte; in main() 52 nfcTag->writeByte(addr, byte); in main() 53 printf("Wrote inverted byte: %02x\n", byte); in main() 56 byte = nfcTag->readByte(addr); in main() 57 printf("Read byte: %02x\n", byte); in main()
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
D | m24lr64e.js | 41 var byte = nfcTag.readByte(addr); variable 43 console.log("Read byte: " + byte.toString(16)); 46 byte = (~byte & 0xff); 47 nfcTag.writeByte(addr, byte); 48 console.log("Wrote inverted byte: " + byte.toString(16)); 51 byte = nfcTag.readByte(addr); 52 console.log("Read byte: " + byte.toString(16));
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | rtt.h | 93 byte LCI_request; // 1: request LCI, 0: do not request LCI 94 byte LCR_request; // 1: request LCR, 0: do not request LCR 113 byte number_per_burst_peer; // Maximum number of "FTM frames per burst" supported by 122 byte retry_after_duration; // When status == RTT_STATUS_FAIL_BUSY_TRY_LATER, 196 byte rtt_one_sided_supported; // if 1-sided rtt data collection is supported 197 byte rtt_ftm_supported; // if ftm rtt data collection is supported 198 byte lci_support; // if initiator supports LCI request. Applies to 2-sided RTT 199 byte lcr_support; // if initiator supports LCR request. Applies to 2-sided RTT 200 byte preamble_support; // bit mask indicates what preamble is supported by initiator 201 byte bw_support; // bit mask indicates what BW is supported by initiator [all …]
|
D | gscan.h | 73 byte id; // element identifier 74 byte len; // number of bytes to follow 75 byte data[]; 144 byte report_events; 219 wifi_error wifi_get_cached_gscan_results(wifi_interface_handle iface, byte flush, 372 byte flags; // WIFI_PNO_FLAG_XXX 373 byte auth_bit_field; // auth bit field for matching WPA IE 409 byte plmn[3]; // mcc/mnc combination as per rules, 0s if unspecified 418 byte *anqp // ANQP data, in the information_element format
|
/hardware/qcom/audio/legacy/alsa_sound/ |
D | AudioUtil.cpp | 75 int AudioUtil::getSamplingFrequencyFromEDID(unsigned char byte) { in getSamplingFrequencyFromEDID() argument 78 if (byte & BIT(6)) { in getSamplingFrequencyFromEDID() 81 } else if (byte & BIT(5)) { in getSamplingFrequencyFromEDID() 84 } else if (byte & BIT(4)) { in getSamplingFrequencyFromEDID() 87 } else if (byte & BIT(3)) { in getSamplingFrequencyFromEDID() 90 } else if (byte & BIT(2)) { in getSamplingFrequencyFromEDID() 93 } else if (byte & BIT(1)) { in getSamplingFrequencyFromEDID() 96 } else if (byte & BIT(0)) { in getSamplingFrequencyFromEDID() 103 int AudioUtil::getBitsPerSampleFromEDID(unsigned char byte, in getBitsPerSampleFromEDID() argument 107 if (byte & BIT(2)) { in getBitsPerSampleFromEDID() [all …]
|
D | AudioUtil.h | 65 static int getSamplingFrequencyFromEDID(unsigned char byte); 66 static int getBitsPerSampleFromEDID(unsigned char byte,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/ |
D | recon_sse2.asm | 144 movzx ecx, byte [rsi] 145 movzx edx, byte [rsi+rax*1] 147 movzx edx, byte [rsi+rax*2] 150 movzx edx, byte [rsi+rdi] 153 movzx edx, byte [rsi] 155 movzx edx, byte [rsi+rax] 157 movzx edx, byte [rsi+rax*2] 159 movzx edx, byte [rsi+rdi] 268 movzx ecx, byte [rsi] 269 movzx edx, byte [rsi+rax] [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | temporal_filter.c | 100 int byte = 0; in vp8_temporal_filter_apply_c() local 107 int src_byte = frame1[byte]; in vp8_temporal_filter_apply_c() 129 byte++; in vp8_temporal_filter_apply_c() 132 byte += stride - block_size; in vp8_temporal_filter_apply_c() 230 int byte; in vp8_temporal_filter_iterate_c() local 366 byte = mb_y_offset; in vp8_temporal_filter_iterate_c() 375 dst1[byte] = (unsigned char)pval; in vp8_temporal_filter_iterate_c() 378 byte++; in vp8_temporal_filter_iterate_c() 381 byte += stride - 16; in vp8_temporal_filter_iterate_c() 387 byte = mb_uv_offset; in vp8_temporal_filter_iterate_c() [all …]
|
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/ |
D | mm_jpeg_mpo_composer.c | 163 int32_t byte; in mm_jpeg_mpo_get_app_marker() local 170 byte = *(p_current_addr); in mm_jpeg_mpo_get_app_marker() 173 while ((byte != 0xFF) && in mm_jpeg_mpo_get_app_marker() 177 if (byte != 0xFF) { in mm_jpeg_mpo_get_app_marker() 183 byte = *(p_current_addr); in mm_jpeg_mpo_get_app_marker() 184 LOGD("Byte %x", byte); in mm_jpeg_mpo_get_app_marker() 185 if (byte == app_marker) { in mm_jpeg_mpo_get_app_marker() 186 LOGD("Byte %x", byte); in mm_jpeg_mpo_get_app_marker() 189 } else if (byte != M_SOI) { in mm_jpeg_mpo_get_app_marker() 195 while ((byte != M_EOI) && in mm_jpeg_mpo_get_app_marker()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/ |
D | filter_altivec.asm | 963 .byte 0, 0,128, 0, 0, 0,128, 0, 0, 0,128, 0, 0, 0,128, 0 964 .byte 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 965 .byte 0, -6,123, 12, 0, -6,123, 12, 0, -6,123, 12, 0, -6,123, 12 966 .byte -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0 967 .byte 2,-11,108, 36, 2,-11,108, 36, 2,-11,108, 36, 2,-11,108, 36 968 .byte -8, 1, 0, 0, -8, 1, 0, 0, -8, 1, 0, 0, -8, 1, 0, 0 969 .byte 0, -9, 93, 50, 0, -9, 93, 50, 0, -9, 93, 50, 0, -9, 93, 50 970 .byte -6, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0 971 .byte 3,-16, 77, 77, 3,-16, 77, 77, 3,-16, 77, 77, 3,-16, 77, 77 972 .byte -16, 3, 0, 0,-16, 3, 0, 0,-16, 3, 0, 0,-16, 3, 0, 0 [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_temporal_filter.c | 93 int byte = 0; in vp9_temporal_filter_apply_c() local 97 int src_byte = frame1[byte]; in vp9_temporal_filter_apply_c() 118 byte++; in vp9_temporal_filter_apply_c() 121 byte += stride - block_size; in vp9_temporal_filter_apply_c() 195 int byte; in temporal_filter_iterate_c() local 315 byte = mb_y_offset; in temporal_filter_iterate_c() 322 dst1[byte] = (uint8_t)pval; in temporal_filter_iterate_c() 325 byte++; in temporal_filter_iterate_c() 328 byte += stride - 16; in temporal_filter_iterate_c() 334 byte = mb_uv_offset; in temporal_filter_iterate_c() [all …]
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/ |
D | viddec_pm_utils_bstream.h | 61 int32_t viddec_pm_utils_bstream_get_current_byte(viddec_pm_utils_bstream_cxt_t *cxt, uint8_t *byte); 67 …get_au_offsets(viddec_pm_utils_bstream_cxt_t *cxt, uint32_t *bit, uint32_t *byte, uint8_t *is_emul) in viddec_pm_utils_bstream_get_au_offsets() argument 72 *byte = cxt->au_pos + (cxt->bstrm_buf.buf_index - cxt->bstrm_buf.buf_st); in viddec_pm_utils_bstream_get_au_offsets()
|
D | viddec_parser_ops.h | 69 int32_t viddec_pm_get_au_pos(void *parent, uint32_t *bit, uint32_t *byte, unsigned char *is_emul); 88 uint32_t viddec_pm_get_cur_byte(void *parent, uint8_t *byte);
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
D | viddec_pm_utils_list.c | 36 uint32_t viddec_pm_utils_list_getbyte_position(viddec_pm_utils_list_t *list, uint32_t byte, uint32_… in viddec_pm_utils_list_getbyte_position() argument 42 if( accumulated_size >= byte) in viddec_pm_utils_list_getbyte_position() 45 *offset = list->start_offset + byte - 1; in viddec_pm_utils_list_getbyte_position() 53 if((accumulated_size + list->sc_ibuf[index].len) >= byte) in viddec_pm_utils_list_getbyte_position() 55 *offset = byte - accumulated_size - 1; in viddec_pm_utils_list_getbyte_position()
|
D | viddec_pm_parser_ops.c | 64 int32_t viddec_pm_get_au_pos(void *parent, uint32_t *bit, uint32_t *byte, uint8_t *is_emul) in viddec_pm_get_au_pos() argument 70 viddec_pm_utils_bstream_get_au_offsets(&(cxt->getbits), bit, byte, is_emul); in viddec_pm_get_au_pos() 132 uint32_t viddec_pm_get_cur_byte(void *parent, uint8_t *byte) in viddec_pm_get_cur_byte() argument 138 ret = viddec_pm_utils_bstream_get_current_byte(&(cxt->getbits), byte); in viddec_pm_get_cur_byte()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/ |
D | vp8_variance_halfpixvar16x16_h_armv6.asm | 40 ldr r6, [r0, #1] ; load 4 src pixels with 1 byte offset 64 uxtb16 r5, r6 ; byte (two pixels) to halfwords 70 ldr r6, [r0, #5] ; load 4 src pixels with 1 byte offset 95 uxtb16 r5, r6 ; byte (two pixels) to halfwords 101 ldr r6, [r0, #9] ; load 4 src pixels with 1 byte offset 126 uxtb16 r5, r6 ; byte (two pixels) to halfwords 132 ldr r6, [r0, #13] ; load 4 src pixels with 1 byte offset 159 uxtb16 r5, r6 ; byte (two pixels) to halfwords
|
/hardware/google/apf/ |
D | apf_disassembler.c | 77 int byte; in main() local 78 while (scanf("%2x", &byte) == 1 && program_len < sizeof(program)) { in main() 79 program[program_len++] = byte; in main()
|
/hardware/bsp/intel/peripheral/libupm/src/nunchuck/ |
D | nunchuck.cxx | 68 bool NUNCHUCK::writeByte(uint8_t reg, uint8_t byte) in writeByte() argument 72 if ( (rv = mraa_i2c_write_byte_data(m_i2c, byte, reg)) != MRAA_SUCCESS ) in writeByte()
|
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/ |
D | LogDumpHelper.h | 69 const uint8_t* byte = start ; in DumpBufferToString() local 72 while (byte < end && s < send) in DumpBufferToString() 74 s += snprintf(s, strSize - (s - str), "%02x ", *byte) ; in DumpBufferToString() 75 ++byte ; in DumpBufferToString()
|
/hardware/bsp/intel/peripheral/libupm/src/lpd8806/ |
D | lpd8806.cxx | 94 uint16_t byte = (m_pixelsCount * 3) + ((m_pixelsCount + 31) / 32); in show() local 96 while (byte--) { in show()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/ |
D | mp4_utils.h | 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef 157 byte *m_dataBeginPtr;
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/ |
D | mp4_utils.h | 41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef 157 byte *m_dataBeginPtr;
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/ |
D | hevc_utils.cpp | 134 byte bFirstSliceInPic = 0; in isNewFrame() 136 byte coef1=1, coef2=0, coef3=0; in isNewFrame()
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
D | hevc_utils.cpp | 134 byte bFirstSliceInPic = 0; in isNewFrame() 136 byte coef1=1, coef2=0, coef3=0; in isNewFrame()
|