Searched refs:mem_buf (Results 1 – 4 of 4) sorted by relevance
/external/u-boot/tools/ |
D | pblimage.c | 22 static unsigned char mem_buf[1000000]; variable 23 static unsigned char *pmem_buf = mem_buf; 179 crc32_pbl = pbl_crc32(0, (const char *)mem_buf, pbl_size); in add_end_cmd() 213 if (write(ifd, (const void *)&mem_buf, size) != size) { in pbl_load_uboot()
|
/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 | 801 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/ |
D | vp8l_enc.c | 455 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()
|