Searched defs:length (Results 1 - 25 of 270) sorted by relevance

1234567891011

/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dqueue.h31 int length; member in struct:queue
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
H A DEbmlBufferWriter.h10 unsigned int length; member in struct:__anon1026
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A D802.3.h27 #define SNAP_HDR_LEN 6 /* 802.3 SNAP header length */
28 #define DOT3_OUI_LEN 3 /* 802.3 oui length */
33 uint16 length; /* frame length incl header */ member in struct:dot3_mac_llc_snap_header
H A Dbcmeth.h43 * 8 bit length in bytes (0-255)
47 * 16 bit big-endian length in bytes (0-65535)
49 * length is the number of additional bytes beyond the 4 or 6 byte header
95 uint16 length; member in struct:bcmeth_hdr
H A Dvlan.h64 uint16 length; /* frame length incl header */ member in struct:dot3_mac_llc_snapvlan_header
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
H A DVideoFrameInfo.h26 uint32_t length; // nalu length member in struct:__anon767
/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
H A DVideoFrameInfo.h27 uint32_t length; // nalu length member in struct:__anon772
/hardware/qcom/display/msm8996/sdm/libs/core/
H A Ddump_impl.cpp37 DisplayError DumpInterface::GetDump(char *buffer, uint32_t length) { argument
38 if (!buffer || !length) {
43 DumpImpl::AppendString(buffer, length, "\n-------- Snapdragon Display Manager --------");
45 DumpImpl::dump_list_[i]->AppendDump(buffer, length);
47 DumpImpl::AppendString(buffer, length, "\n\n");
60 void DumpImpl::AppendString(char *buffer, uint32_t length, const char *format, ...) { argument
62 if (filled >= length) {
69 vsnprintf(buffer, length - filled, format, list);
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
H A Dloc_eng_xtra.cpp78 LOC_LOGV("length: %d\n data: %p", mLen, mData);
157 char* data, int length)
161 adapter->sendMsg(new LocEngInjectXtraData(adapter, data, length));
156 loc_eng_xtra_inject_data(loc_eng_data_s_type &loc_eng_data, char* data, int length) argument
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
H A Dloc_eng_xtra.cpp78 LOC_LOGV("length: %d\n data: %p", mLen, mData);
137 char* data, int length)
140 adapter->sendMsg(new LocEngInjectXtraData(adapter, data, length));
154 length of server string
136 loc_eng_xtra_inject_data(loc_eng_data_s_type &loc_eng_data, char* data, int length) argument
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.c214 int length; local
218 length = loc_eng_dmn_conn_glue_piperead(msgqid, buf, 128);
220 } while(length);
221 return length;
/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
H A Daci_queue.cxx78 const uint8_t length = p_data->buffer[0]; local
89 memcpy((uint8_t *)&(aci_q->aci_data[aci_q->tail].buffer[0]), (uint8_t *)&p_data->buffer[0], length + 1);
97 const uint8_t length = p_data->buffer[0]; local
108 memcpy((uint8_t *)&(aci_q->aci_data[aci_q->tail].buffer[0]), (uint8_t *)&p_data->buffer[0], length + 1);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
H A Dmkvwriter.cpp29 int32 MkvWriter::Write(const void* buffer, uint32 length) { argument
33 if (length == 0)
39 const size_t bytes_written = fwrite(buffer, 1, length, file_);
41 return (bytes_written == length) ? 0 : -1;
/hardware/ti/omap4-aah/kernel-headers-ti/linux/
H A Dbvbuffdesc.h50 unsigned long length; member in struct:bvbuffdesc
/hardware/bsp/intel/peripheral/libmraa/api/mraa/
H A Di2c.hpp115 * Read length bytes from the bus into *data pointer
118 * @param length Size of read in bytes to make
119 * @return length of read, should match length
122 read(uint8_t* data, int length) argument
124 return mraa_i2c_read(m_i2c, data, length);
152 * Read length bytes from the bus into *data pointer starting from
157 * @param length max number of bytes to read
158 * @return length passed to the function or -1
161 readBytesReg(uint8_t reg, uint8_t* data, int length) argument
187 write(const uint8_t* data, int length) argument
[all...]
H A Dspi.hpp135 * @param length size of buffer to send
136 * @return uint8_t* data received on the miso line. Same length as passed in
139 write(uint8_t* txBuf, int length) argument
141 return mraa_spi_write_buf(m_spi, txBuf, length);
151 * @param length size of buffer (in bytes) to send
152 * @return uint8_t* data received on the miso line. Same length as passed in
155 write_word(uint16_t* txBuf, int length) argument
157 return mraa_spi_write_buf_word(m_spi, txBuf, length);
168 * @param length size of buffer to send
172 transfer(uint8_t* txBuf, uint8_t* rxBuf, int length) argument
187 transfer_word(uint16_t* txBuf, uint16_t* rxBuf, int length) argument
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
H A Dh264parse_bsd.c41 uint32_t length =0; local
125 length = leadingZeroBits;
152 codeNum = codeNum + (1 << length) -1;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
H A Dviddec_pm_utils_list.c33 EX: if byte=4, and the first es buffer in list is of length 100, we return lis_index=0, offset=3.
108 So we subtract SC length to reflect that */
181 void viddec_pm_utils_list_remove_used_entries(viddec_pm_utils_list_t *list, uint32_t length) argument
187 if(length != 0)
219 list->total_bytes = length;
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
H A Dml_stored_data.c103 MPL_LOGE("bytes written (%d) don't match requested length (%d)\n",
133 * the length of the calibration
172 * the length of the calibration
211 len is the total record length including header and checksum */
239 * @param length
244 inv_error_t inv_store_cal(unsigned char *calData, size_t length) argument
314 size_t length; local
316 result = inv_get_mpl_state_size(&length);
317 calData = (unsigned char *)inv_malloc(length);
320 "aborting\n", length);
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
H A Dml_stored_data.c103 MPL_LOGE("bytes written (%d) don't match requested length (%d)\n",
133 * the length of the calibration
172 * the length of the calibration
211 len is the total record length including header and checksum */
239 * @param length
244 inv_error_t inv_store_cal(unsigned char *calData, size_t length) argument
314 size_t length; local
316 result = inv_get_mpl_state_size(&length);
317 calData = (unsigned char *)inv_malloc(length);
320 "aborting\n", length);
[all...]

Completed in 749 milliseconds

1234567891011