Searched refs:byte (Results 1 - 25 of 54) sorted by relevance

123

/hardware/libhardware_legacy/include/hardware_legacy/
H A Drtt.h93 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_suppor
[all...]
H A Dgscan.h72 byte id; // element identifier
73 byte len; // number of bytes to follow
74 byte data[];
143 byte report_events;
218 wifi_error wifi_get_cached_gscan_results(wifi_interface_handle iface, byte flush,
361 byte flags; // WIFI_PNO_FLAG_XXX
362 byte auth_bit_field; // auth bit field for matching WPA IE
398 byte plmn[3]; // mcc/mnc combination as per rules, 0s if unspecified
407 byte *anqp // ANQP data, in the information_element format
/hardware/google/apf/
H A Dapf_run.c42 char byte[3] = { input[i*2], input[i*2+1], 0 }; local
44 (*output)[i] = strtol(byte, &end_ptr, 16);
45 if (end_ptr != byte + 2) {
46 fprintf(stderr, "Failed to parse hex %s\n", byte);
H A Dapf_disassembler.c77 int byte; local
78 while (scanf("%2x", &byte) == 1 && program_len < sizeof(program)) {
79 program[program_len++] = byte;
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
H A Dqtypes.h78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
H A Dmp4_utils.h41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
160 byte *m_dataBeginPtr;
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
H A Dqtypes.h78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
H A Dmp4_utils.h41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
H A Dqtypes.h78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
H A Dmp4_utils.h41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
H A Dqtypes.h78 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
H A Dmp4_utils.h41 typedef unsigned char byte; /* Unsigned 8 bit value type. */ typedef
157 byte *m_dataBeginPtr;
/hardware/qcom/audio/legacy/alsa_sound/
H A DAudioUtil.h65 static int getSamplingFrequencyFromEDID(unsigned char byte);
66 static int getBitsPerSampleFromEDID(unsigned char byte,
H A DAudioUtil.cpp75 int AudioUtil::getSamplingFrequencyFromEDID(unsigned char byte) { argument
78 if (byte & BIT(6)) {
81 } else if (byte & BIT(5)) {
84 } else if (byte & BIT(4)) {
87 } else if (byte & BIT(3)) {
90 } else if (byte & BIT(2)) {
93 } else if (byte & BIT(1)) {
96 } else if (byte & BIT(0)) {
103 int AudioUtil::getBitsPerSampleFromEDID(unsigned char byte, argument
107 if (byte
[all...]
/hardware/interfaces/automotive/vehicle/2.1/default/common/src/
H A DObd2SensorStore.cpp40 const uint8_t byte = mStorage[byteIndex]; local
41 uint8_t newValue = value ? (byte | (1 << bitIndex)) :
42 (byte & ~(1 << bitIndex));
49 const uint8_t byte = mStorage[byteIndex]; local
50 return (byte & (1 << bitIndex)) != 0;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
H A Dviddec_pm_utils_bstream.h19 uint32_t buf_end; /* first invalid byte in buf */
27 uint32_t st; /* start index of valid byte */
29 uint32_t bitoff; /* bit offset in first valid byte */
35 /* counter of emulation preventation byte */
39 the bstream buffer's first valid byte index wrt to accessunit in this variable */
61 int32_t viddec_pm_utils_bstream_get_current_byte(viddec_pm_utils_bstream_cxt_t *cxt, uint8_t *byte);
67 static inline void viddec_pm_utils_bstream_get_au_offsets(viddec_pm_utils_bstream_cxt_t *cxt, uint32_t *bit, uint32_t *byte, uint8_t *is_emul) argument
72 *byte = cxt->au_pos + (cxt->bstrm_buf.buf_index - cxt->bstrm_buf.buf_st);
H A Dviddec_pm_utils_list.h14 /* This structure is for storing information on byte position in the current access unit.
15 stpos is the au byte index of first byte in current es buffer.edpos is the au byte index+1 of last
16 valid byte in current es buffer.*/
31 viddec_pm_utils_au_bytepos_t data[MAX_IBUFS_PER_SC]; /* place to store au byte positions */
41 /* This function updates au byte position of the current list. This should be called after sc codes are detected and before
49 /* this function returns 1 if the requested byte is not found. If found returns list and offset into list */
50 uint32_t viddec_pm_utils_list_getbyte_position(viddec_pm_utils_list_t *list, uint32_t byte, uint32_t *list_index, uint32_t *offset);
H A Dviddec_parser_ops.h46 /* This function returns the requested number of bits(<=32) and increments au byte position.
50 /* This function returns requested number of bits(<=32) with out incrementing au byte position
54 /* This function skips requested number of bits(<=32) by incrementing au byte position.
66 /* This function gets current byte and bit positions and information on whether an emulation byte is present after
67 current byte.
69 int32_t viddec_pm_get_au_pos(void *parent, uint32_t *bit, uint32_t *byte, unsigned char *is_emul);
87 /* Returns the current byte value where offset is on */
88 uint32_t viddec_pm_get_cur_byte(void *parent, uint8_t *byte);
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
H A Dhevc_utils.cpp134 byte bFirstSliceInPic = 0;
136 byte coef1=1, coef2=0, coef3=0;
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
H A Dhevc_utils.cpp134 byte bFirstSliceInPic = 0;
136 byte coef1=1, coef2=0, coef3=0;
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
H A Dhevc_utils.cpp134 byte bFirstSliceInPic = 0;
136 byte coef1=1, coef2=0, coef3=0;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
H A Dviddec_pm_utils_list.c32 We return the index of es buffer and the offset into it for the requested byte offset.
33 EX: if byte=4, and the first es buffer in list is of length 100, we return lis_index=0, offset=3.
34 byte value should range from [1-N].
36 uint32_t viddec_pm_utils_list_getbyte_position(viddec_pm_utils_list_t *list, uint32_t byte, uint32_t *list_index, uint32_t *offset) argument
42 if( accumulated_size >= byte)
45 *offset = list->start_offset + byte - 1;
50 /* walkthrough the list until we find the byte */
53 if((accumulated_size + list->sc_ibuf[index].len) >= byte)
55 *offset = byte - accumulated_size - 1;
68 The start represents the linear offset of the first byte i
[all...]
H A Dviddec_pm_parser_ops.c64 int32_t viddec_pm_get_au_pos(void *parent, uint32_t *bit, uint32_t *byte, uint8_t *is_emul) argument
70 viddec_pm_utils_bstream_get_au_offsets(&(cxt->getbits), bit, byte, is_emul);
132 uint32_t viddec_pm_get_cur_byte(void *parent, uint8_t *byte) argument
138 ret = viddec_pm_utils_bstream_get_current_byte(&(cxt->getbits), byte);
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
H A DLogDumpHelper.h69 const uint8_t* byte = start ; local
72 while (byte < end && s < send)
74 s += snprintf(s, strSize - (s - str), "%02x ", *byte) ;
75 ++byte ;
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dgscan_event_handler.h55 byte *mPasspointAnqp;

Completed in 738 milliseconds

123