Searched defs:new_array (Results 1 - 11 of 11) sorted by relevance
/external/v8/src/ |
H A D | bootstrapper.h | 70 Handle<FixedArray> new_array = local 72 cache_->CopyTo(0, *new_array, 0, cache_->length()); 73 cache_ = *new_array;
|
H A D | hydrogen.cc | 1241 HValueMapListElement* new_array = local 1243 memset(new_array, 0, sizeof(HValueMapListElement) * new_size); 1252 array_ = new_array;
|
H A D | objects.cc | 2266 FixedArray* new_array; local 2271 if (!maybe_new_array->To<FixedArray>(&new_array)) { 2274 new_array->set(0, descriptor_contents); 2275 new_array->set(1, new_map); 2276 return new_array; 2294 if (!maybe_new_array->To<FixedArray>(&new_array)) { 2299 new_array->set(i, array->get(i)); 2302 new_array->set(i, new_map); 2303 return new_array; 11290 Object* new_array; local 12773 Handle<FixedArray> new_array = local 12811 Handle<FixedArray> new_array = local [all...] |
/external/valgrind/main/callgrind/ |
H A D | context.c | 305 fn_node** new_array = (fn_node**) CLG_MALLOC("cl.context.pc.1", local 309 new_array[i] = CLG_(current_fn_stack).bottom[i]; 311 CLG_(current_fn_stack).top = new_array + fn_entries; 312 CLG_(current_fn_stack).bottom = new_array;
|
H A D | fn.c | 661 UInt* new_array; local 670 new_array = (UInt*) CLG_MALLOC("cl.fn.rfa.1", newsize * sizeof(UInt)); 672 new_array[i] = current_fn_active.array[i]; 674 new_array[i++] = 0; 678 current_fn_active.array = new_array;
|
/external/stlport/src/ |
H A D | ios.cpp | 97 PODType* new_array local 99 if (new_array) { 100 fill(new_array + N, new_array + new_N, PODType()); 101 return pair<PODType*, size_t>(new_array, new_N);
|
/external/qemu/memcheck/ |
H A D | memcheck_proc_management.c | 384 ThreadCallStackEntry* new_array = local 386 if (new_array == NULL) { 393 memcpy(new_array, thread->call_stack, 399 thread->call_stack = new_array;
|
/external/webkit/Tools/android/flex-2.5.4a/ |
H A D | misc.c | 760 register void *new_array; local 763 new_array = flex_realloc( array, num_bytes ); 764 if ( ! new_array ) 767 return new_array;
|
/external/e2fsprogs/e2fsck/ |
H A D | rehash.c | 88 struct hash_entry *new_array, *ent; local 140 new_array = realloc(fd->harray, 142 if (!new_array) { 146 fd->harray = new_array;
|
H A D | profile.c | 248 char **array = 0, **new_array; local 276 new_array = realloc(array, sizeof(char *) * (max+1)); 277 if (!new_array) { 281 array = new_array;
|
/external/qemu/elff/ |
H A D | dwarf_defs.h | 774 const Dwarf_Abbr_DIE** new_array = new const Dwarf_Abbr_DIE*[new_size];
local 775 assert(new_array != NULL);
776 if (new_array == NULL) {
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*));
784 array_ = new_array;
|
Completed in 291 milliseconds