Searched refs:extra_size (Results 1 - 7 of 7) sorted by relevance

/external/webp/src/utils/
H A Dbit_writer.c26 static int BitWriterResize(VP8BitWriter* const bw, size_t extra_size) { argument
29 const uint64_t needed_size_64b = (uint64_t)bw->pos_ + extra_size;
209 static int VP8LBitWriterResize(VP8LBitWriter* const bw, size_t extra_size) { argument
214 const uint64_t size_required_64b = (uint64_t)current_size + extra_size;
275 const uint64_t extra_size = (bw->end_ - bw->buf_) + MIN_EXTRA_SIZE; local
276 if (extra_size != (size_t)extra_size ||
277 !VP8LBitWriterResize(bw, (size_t)extra_size)) {
/external/e2fsprogs/e2fsck/
H A Dpass4.c33 int extra_size = 0; local
38 extra_size = ((struct ext2_inode_large *)inode)->i_extra_isize;
46 if (EXT2_INODE_SIZE(fs->super) -EXT2_GOOD_OLD_INODE_SIZE -extra_size >0)
48 extra_size);
/external/valgrind/coregrind/
H A Dm_errormgr.c691 UInt extra_size; local
819 // extra_size = <something>
823 extra_size = VG_TDICT_CALL(tool_update_extra, p);
836 if (NULL != p->extra && 0 != extra_size) {
837 void* new_extra = VG_(malloc)("errormgr.mre.3", extra_size);
838 VG_(memcpy)(new_extra, p->extra, extra_size);
/external/webp/src/dec/
H A Didec.c179 const uint64_t extra_size = (new_size + CHUNK_SIZE - 1) & ~(CHUNK_SIZE - 1); local
181 (uint8_t*)WebPSafeMalloc(extra_size, sizeof(*new_buf));
186 mem->buf_size_ = (size_t)extra_size;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_texstate.c1388 uint extra_size = 0; local
1435 extra_size = t->minLod;
1442 t->pp_txformat |= (((log2Width + extra_size) << R200_TXFORMAT_WIDTH_SHIFT) |
1443 ((log2Height + extra_size)<< R200_TXFORMAT_HEIGHT_SHIFT));
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp4122 unsigned extra_size = seq->header_size - initial_header_size; local
4124 if( extra_size % sizeof(int) == 0 )
4125 sprintf( header_dt_buf, "%ui", (unsigned)(extra_size/sizeof(int)) );
4127 sprintf( header_dt_buf, "%uu", extra_size );
/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c1441 const int extra_size = (request->u.servicereg.txtlen > sizeof(RDataBody)) ? (request->u.servicereg.txtlen - sizeof(RDataBody)) : 0; local
1488 instance = mallocL("service_instance", sizeof(*instance) + extra_size);

Completed in 247 milliseconds