Home
last modified time | relevance | path

Searched refs:mem_buf (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/tools/
Dpblimage.c23 static unsigned char mem_buf[1000000]; variable
24 static unsigned char *pmem_buf = mem_buf;
180 crc32_pbl = pbl_crc32(0, (const char *)mem_buf, pbl_size); in add_end_cmd()
214 if (write(ifd, (const void *)&mem_buf, size) != size) { in pbl_load_uboot()
/external/libchrome/base/strings/
Dstringprintf.cc98 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/
Ddemux.c801 static const uint8_t* GetFramePayload(const uint8_t* const mem_buf, in GetFramePayload() argument
820 return mem_buf + start_offset; in GetFramePayload()
829 const uint8_t* const mem_buf = dmux->mem_.buf_; in SynthesizeFrame() local
831 const uint8_t* const payload = GetFramePayload(mem_buf, frame, &payload_size); in SynthesizeFrame()
891 const uint8_t* const mem_buf = dmux->mem_.buf_; in ChunkCount() local
895 const uint8_t* const header = mem_buf + c->data_.offset_; in ChunkCount()
903 const uint8_t* const mem_buf = dmux->mem_.buf_; in GetChunk() local
907 const uint8_t* const header = mem_buf + c->data_.offset_; in GetChunk()
925 const uint8_t* const mem_buf = dmux->mem_.buf_; in SetChunk() local
927 iter->chunk.bytes = mem_buf + chunk->data_.offset_ + CHUNK_HEADER_SIZE; in SetChunk()
/external/webp/src/enc/
Dvp8l_enc.c455 uint8_t* mem_buf = NULL; in GetHuffBitLengthsAndCodes() local
479 mem_buf = (uint8_t*)WebPSafeCalloc(total_length_size, in GetHuffBitLengthsAndCodes()
481 if (mem_buf == NULL) goto End; in GetHuffBitLengthsAndCodes()
483 codes = (uint16_t*)mem_buf; in GetHuffBitLengthsAndCodes()
517 WebPSafeFree(mem_buf); in GetHuffBitLengthsAndCodes()
/external/libfuse/lib/
Dfuse_lowlevel.c490 struct fuse_bufvec mem_buf = FUSE_BUFVEC_INIT(len); in fuse_send_data_iov_fallback() local
510 mem_buf.buf[0].mem = mbuf; in fuse_send_data_iov_fallback()
511 res = fuse_buf_copy(&mem_buf, buf, 0); in fuse_send_data_iov_fallback()
758 struct fuse_bufvec mem_buf = FUSE_BUFVEC_INIT(len); in fuse_send_data_iov() local
774 mem_buf.buf[0].mem = mbuf; in fuse_send_data_iov()
775 mem_buf.off = now_len; in fuse_send_data_iov()
776 res = fuse_buf_copy(&mem_buf, buf, 0); in fuse_send_data_iov()