Searched refs:data_size (Results 51 - 75 of 235) sorted by relevance

12345678910

/external/webp/src/dec/
H A Didec.c116 idec->io_.data_size = MemDataSize(mem);
165 const uint8_t* const data, size_t data_size) {
173 if (data_size > MAX_CHUNK_PAYLOAD) {
179 if (mem->end_ + data_size > mem->buf_size_) { // Need some free memory
182 const uint64_t new_size = (uint64_t)current_size + data_size;
195 memcpy(mem->buf_ + mem->end_, data, data_size);
196 mem->end_ += data_size;
204 const uint8_t* const data, size_t data_size) {
210 if (data_size < mem->buf_size_) return 0; // can't remap to a shorter buffer!
213 mem->end_ = mem->buf_size_ = data_size;
164 AppendToMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
203 RemapMemBuffer(WebPIDecoder* const idec, const uint8_t* const data, size_t data_size) argument
603 WebPIDecode(const uint8_t* data, size_t data_size, WebPDecoderConfig* config) argument
735 WebPIAppend(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
756 WebPIUpdate(WebPIDecoder* idec, const uint8_t* data, size_t data_size) argument
[all...]
H A Dalpha.c47 size_t data_size, int width, int height, uint8_t* output) {
50 const size_t alpha_data_size = data_size - ALPHA_HEADER_LEN;
59 if (data_size <= ALPHA_HEADER_LEN) {
46 ALPHInit(ALPHDecoder* const dec, const uint8_t* data, size_t data_size, int width, int height, uint8_t* output) argument
H A Dvp8li.h103 const uint8_t* const data, size_t data_size,
H A Dwebpi.h59 size_t data_size; // input buffer size member in struct:__anon20519
/external/nanopb-c/
H A Dpb_decode.c354 size_t prev_size = iter->pos->data_size;
439 void *pItem = (uint8_t*)iter->pData + iter->pos->data_size * (*size);
458 void *pItem = (uint8_t*)iter->pData + iter->pos->data_size * (*size);
474 static bool checkreturn allocate_field(pb_istream_t *stream, void *pData, size_t data_size, size_t array_size) argument
477 size_t size = array_size * data_size;
529 if (!allocate_field(stream, iter->pData, iter->pos->data_size, 1))
557 allocated_size += (substream.bytes_left - 1) / iter->pos->data_size + 1;
559 if (!allocate_field(&substream, iter->pData, iter->pos->data_size, allocated_size))
567 pItem = *(uint8_t**)iter->pData + iter->pos->data_size * (*size);
587 if (!allocate_field(stream, iter->pData, iter->pos->data_size, *siz
[all...]
/external/opencv3/3rdparty/libwebp/mux/
H A Dmuxi.h143 const size_t data_size = chunk->data_.size; local
144 assert(data_size < MAX_CHUNK_PAYLOAD);
145 return SizeWithPadding(data_size);
/external/vboot_reference/firmware/lib20/
H A Dapi.c98 sd->hash_remaining_size = pre->body_signature.data_size;
101 *size = pre->body_signature.data_size;
105 pre->body_signature.data_size);
/external/vboot_reference/firmware/lib21/
H A Dapi.c91 sd->hash_remaining_size = sig->data_size;
94 *size = sig->data_size;
97 rv = vb2ex_hwcrypto_digest_init(sig->hash_alg, sig->data_size);
/external/webrtc/webrtc/base/
H A Dhttpbase.h51 virtual ProcessResult ProcessHeaderComplete(bool chunked, size_t& data_size,
76 virtual HttpError onHttpHeaderComplete(bool chunked, size_t& data_size) = 0;
157 size_t& data_size,
H A Dvirtualsocketserver.cc763 const char* data, size_t data_size,
768 return static_cast<int>(data_size);
783 return static_cast<int>(data_size);
805 size_t packet_size = data_size + UDP_HEADER_SIZE;
808 return static_cast<int>(data_size);
811 AddPacketToNetwork(socket, recipient, cur_time, data, data_size,
814 return static_cast<int>(data_size);
841 size_t data_size = std::min(socket->send_buffer_.size(), max_data_size); local
842 if (0 == data_size)
846 data_size, TCP_HEADER_SIZ
762 SendUdp(VirtualSocket* socket, const char* data, size_t data_size, const SocketAddress& remote_addr) argument
867 AddPacketToNetwork(VirtualSocket* sender, VirtualSocket* recipient, uint32_t cur_time, const char* data, size_t data_size, size_t header_size, bool ordered) argument
[all...]
H A Dwinping.h80 uint32_t data_size,
/external/lzma/Asm/x86/
H A D7zCrcOpt.asm15 data_size equ (REG_SIZE * 5) define
16 crc_table equ (REG_SIZE + data_size)
17 num_VAR equ [r4 + data_size]
/external/opencv3/3rdparty/libwebp/enc/
H A Dalpha.c113 const size_t data_size = width * height; local
115 assert((uint64_t)data_size == (uint64_t)width * height); // as per spec
123 (method == ALPHA_NO_COMPRESSION) ? (ALPHA_HEADER_LEN + data_size)
124 : (data_size >> 5);
189 const size_t data_size = width * height; local
195 assert((uint64_t)data_size == (uint64_t)width * height); // as per spec
210 quant_alpha = (uint8_t*)malloc(data_size);
263 filtered_alpha = (uint8_t*)malloc(data_size);
/external/harfbuzz_ng/test/api/
H A Dhb-test.h209 gsize data_size,
216 g_test_add_vtable (normal_path, data_size, test_data, data_setup, data_test, data_teardown);
237 gsize data_size,
244 hb_test_add_vtable (path, data_size, test_data, data_setup, data_test, data_teardown);
208 hb_test_add_vtable(const char *test_path, gsize data_size, gconstpointer test_data, hb_test_fixture_func_t data_setup, hb_test_fixture_func_t data_test, hb_test_fixture_func_t data_teardown) argument
235 hb_test_add_vtable_flavor(const char *test_path, const char *flavor, gsize data_size, gconstpointer test_data, hb_test_fixture_func_t data_setup, hb_test_fixture_func_t data_test, hb_test_fixture_func_t data_teardown) argument
/external/libbrillo/brillo/http/
H A Dhttp_connection_curl.cc99 uint64_t data_size = 0; local
101 data_size = request_data_stream_->GetRemainingSize();
107 curl_handle_, CURLOPT_INFILESIZE_LARGE, data_size);
110 curl_handle_, CURLOPT_POSTFIELDSIZE_LARGE, data_size);
H A Dhttp_utils.h60 size_t data_size,
99 size_t data_size,
159 size_t data_size,
185 size_t data_size,
/external/opencv3/3rdparty/libwebp/dec/
H A Dvp8li.h99 size_t data_size, uint8_t* const output);
H A Dwebpi.h56 size_t data_size; // input buffer size member in struct:__anon14932
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table.cc212 IndexSubTable::Builder::Builder(int32_t data_size, int32_t index_format) argument
213 : SubTable::Builder(data_size),
224 int32_t data_size)
225 : SubTable::Builder(data_size),
221 Builder(int32_t index_format, int32_t image_format, int32_t image_data_offset, int32_t data_size) argument
/external/strace/
H A Dio.c61 * data_size limits the cumulative size of printed data.
65 tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size) argument
103 if (len > data_size)
104 len = data_size;
105 data_size -= len;
/external/vboot_reference/firmware/2lib/include/
H A D2api.h402 * @param data_size Expected total size of data to hash
406 uint32_t data_size);
/external/vboot_reference/firmware/lib20/include/
H A Dvb2_struct.h55 uint32_t data_size; member in struct:vb2_signature
/external/vboot_reference/host/lib/
H A Dextract_vmlinuz.c37 kblob_size = preamble->body_signature.data_size;
/external/webrtc/talk/media/devices/
H A Dfilevideocapturer.cc308 buffer.ReadUInt32(&frame->data_size);
350 if (frame_buffer_size_ < captured_frame_.data_size) {
351 frame_buffer_size_ = captured_frame_.data_size;
357 captured_frame_.data_size,
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dapp.h44 size_t data_size() const { return data_.size(); } function in class:webrtc::rtcp::App

Completed in 1777 milliseconds

12345678910