Searched refs:mem_buf (Results 1 – 4 of 4) sorted by relevance
/external/libchrome/base/strings/ |
D | stringprintf.cc | 98 std::vector<typename StringType::value_type> mem_buf(mem_length); in StringAppendVT() local 103 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy); in StringAppendVT() 108 dst->append(&mem_buf[0], result); in StringAppendVT()
|
/external/webp/src/demux/ |
D | demux.c | 806 static const uint8_t* GetFramePayload(const uint8_t* const mem_buf, in GetFramePayload() argument 825 return mem_buf + start_offset; in GetFramePayload() 834 const uint8_t* const mem_buf = dmux->mem_.buf_; in SynthesizeFrame() local 836 const uint8_t* const payload = GetFramePayload(mem_buf, frame, &payload_size); in SynthesizeFrame() 896 const uint8_t* const mem_buf = dmux->mem_.buf_; in ChunkCount() local 900 const uint8_t* const header = mem_buf + c->data_.offset_; in ChunkCount() 908 const uint8_t* const mem_buf = dmux->mem_.buf_; in GetChunk() local 912 const uint8_t* const header = mem_buf + c->data_.offset_; in GetChunk() 930 const uint8_t* const mem_buf = dmux->mem_.buf_; in SetChunk() local 932 iter->chunk.bytes = mem_buf + chunk->data_.offset_ + CHUNK_HEADER_SIZE; in SetChunk()
|
/external/webp/src/enc/ |
D | vp8l_enc.c | 477 uint8_t* mem_buf = NULL; in GetHuffBitLengthsAndCodes() local 501 mem_buf = (uint8_t*)WebPSafeCalloc(total_length_size, in GetHuffBitLengthsAndCodes() 503 if (mem_buf == NULL) goto End; in GetHuffBitLengthsAndCodes() 505 codes = (uint16_t*)mem_buf; in GetHuffBitLengthsAndCodes() 539 WebPSafeFree(mem_buf); in GetHuffBitLengthsAndCodes()
|
/external/libfuse/lib/ |
D | fuse_lowlevel.c | 563 struct fuse_bufvec mem_buf = FUSE_BUFVEC_INIT(len); in fuse_send_data_iov_fallback() local 583 mem_buf.buf[0].mem = mbuf; in fuse_send_data_iov_fallback() 584 res = fuse_buf_copy(&mem_buf, buf, 0); in fuse_send_data_iov_fallback() 831 struct fuse_bufvec mem_buf = FUSE_BUFVEC_INIT(len); in fuse_send_data_iov() local 847 mem_buf.buf[0].mem = mbuf; in fuse_send_data_iov() 848 mem_buf.off = now_len; in fuse_send_data_iov() 849 res = fuse_buf_copy(&mem_buf, buf, 0); in fuse_send_data_iov()
|