Searched refs:new_chunk (Results 1 – 8 of 8) sorted by relevance
/external/qemu/elff/ |
D | elf_alloc.cc | 40 ElfAllocatorChunk* new_chunk = in alloc() local 42 assert(new_chunk != NULL); in alloc() 43 if (new_chunk == NULL) { in alloc() 47 new_chunk->size = ELF_ALLOC_CHUNK_SIZE; in alloc() 48 new_chunk->avail = INC_PTR(new_chunk, sizeof(ElfAllocatorChunk)); in alloc() 49 new_chunk->remains = new_chunk->size - sizeof(ElfAllocatorChunk); in alloc() 50 new_chunk->prev = current_chunk_; in alloc() 51 current_chunk_ = new_chunk; in alloc()
|
/external/bison/lib/ |
D | obstack.c | 257 register struct _obstack_chunk *new_chunk; in _obstack_newchunk() local 270 new_chunk = CALL_CHUNKFUN (h, new_size); in _obstack_newchunk() 271 if (!new_chunk) in _obstack_newchunk() 273 h->chunk = new_chunk; in _obstack_newchunk() 274 new_chunk->prev = old_chunk; in _obstack_newchunk() 275 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size; in _obstack_newchunk() 279 __PTR_ALIGN ((char *) new_chunk, new_chunk->contents, h->alignment_mask); in _obstack_newchunk() 309 new_chunk->prev = old_chunk->prev; in _obstack_newchunk()
|
/external/bluetooth/glib/glib/ |
D | gstring.c | 141 GStringChunk *new_chunk = g_new (GStringChunk, 1); in g_string_chunk_new() local 146 new_chunk->const_table = NULL; in g_string_chunk_new() 147 new_chunk->storage_list = NULL; in g_string_chunk_new() 148 new_chunk->storage_next = actual_size; in g_string_chunk_new() 149 new_chunk->default_size = actual_size; in g_string_chunk_new() 150 new_chunk->this_size = actual_size; in g_string_chunk_new() 152 return new_chunk; in g_string_chunk_new()
|
/external/kernel-headers/original/linux/raid/ |
D | md_p.h | 166 __u32 new_chunk; /* 17 new chunk size (bytes) */ member 234 __u32 new_chunk; /* new chunk size (bytes) */ member
|
D | md_k.h | 147 int delta_disks, new_level, new_layout, new_chunk; member
|
/external/v8/src/ |
D | utils.h | 653 Vector<T> new_chunk = Vector<T>::New(new_capacity); in NewChunk() local 659 current_chunk_ = new_chunk; in NewChunk() 722 Vector<T> new_chunk = Vector<T>::New(sequence_length + new_capacity); in NewChunk() local 723 ASSERT(sequence_length < new_chunk.length()); in NewChunk() 725 new_chunk[i] = this->current_chunk_[sequence_start_ + i]; in NewChunk() 732 this->current_chunk_ = new_chunk; in NewChunk()
|
/external/libvpx/vpx_mem/memory_manager/include/ |
D | heapmm.h | 140 void HMM_UNIQUE(new_chunk)(
|
/external/libvpx/vpx_mem/memory_manager/ |
D | hmm_base.c | 313 void U(new_chunk)(U(descriptor) *desc, void *start, U(size_bau) n_baus) in U() argument
|