/external/libunwind/src/ |
Los-common.c | 48 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list) 58 from the beginning of new_list each time looking for a match to 60 in new_list we checked. */ 61 while (new_list && old_list->start <= new_list->start) 63 if (old_list->start == new_list->start 64 && old_list->end == new_list->end) 68 new_list->ei = old_list->ei; 78 new_list = new_list->next 94 struct map_info *new_list; local [all...] |
/external/webrtc/webrtc/modules/desktop_capture/ |
window_capturer_unittest.cc | 76 WindowCapturer::WindowList new_list; local 77 EXPECT_TRUE(capturer_->GetWindowList(&new_list)); 78 for (WindowCapturer::WindowList::iterator new_list_it = new_list.begin(); 79 new_list_it != new_list.end(); ++new_list_it) {
|
/external/curl/lib/ |
pipeline.c | 197 struct curl_llist *new_list = NULL; local 200 new_list = Curl_llist_alloc((curl_llist_dtor) site_blacklist_llist_dtor); 201 if(!new_list) 212 Curl_llist_destroy(new_list, NULL); 219 Curl_llist_destroy(new_list, NULL); 236 if(!Curl_llist_insert_next(new_list, new_list->tail, entry)) { 238 Curl_llist_destroy(new_list, NULL); 252 *list_ptr = new_list; 290 struct curl_llist *new_list = NULL local [all...] |
/external/chromium-trace/catapult/tracing/tracing_build/ |
update_gypi_unittest.py | 34 new_list = ['item1', 'item2', 'item3'] 37 gypi_file._GetReplacementListAsString(existing_list, new_list))
|
/external/selinux/libsepol/cil/src/ |
cil_list.c | 49 struct cil_list *new_list = cil_malloc(sizeof(*new_list)); local 50 new_list->head = NULL; 51 new_list->tail = NULL; 52 new_list->flavor = flavor; 53 *list = new_list;
|
cil_post.c | 1676 struct cil_list *new_list; member in struct:perm_to_list 1683 struct cil_list *new_list = perm_args->new_list; local 1738 struct cil_list *new_list = NULL; local [all...] |
/external/e2fsprogs/lib/blkid/ |
devno.c | 143 struct dir_list *list = NULL, *new_list = NULL; local 159 blkid__scan_dir(current->name, devno, &new_list, &devname); 169 list = new_list; 170 new_list = NULL; 174 free_dirlist(&new_list);
|
/external/e2fsprogs/lib/ext2fs/ |
finddev.c | 128 struct dir_list *list = 0, *new_list = 0; local 146 scan_dir(current->name, device, &new_list, &ret_path); 156 list = new_list; 157 new_list = 0; 164 free_dirlist(&new_list);
|
/external/libchrome/base/trace_event/ |
trace_event_argument.cc | 387 auto new_list = new ListValue(); local 390 make_scoped_ptr(new_list)); 393 cur_list = new_list; 395 cur_list->Append(make_scoped_ptr(new_list)); 397 cur_list = new_list;
|
/external/blktrace/btt/ |
output.c | 331 struct seek_mode_info *p, *this, *new_list = NULL; local 337 if (new_list == NULL || this->nseeks > new_list->nseeks) 338 new_list = this; 339 else if (this->nseeks == new_list->nseeks) { 340 for (p = new_list; p != NULL; p = p->next) 347 this->next = new_list; 348 new_list = this; 354 sip->median / sip->nseeks, new_list->mode, new_list->nseeks) [all...] |
/external/freetype/src/cache/ |
ftccache.c | 126 FTC_Node new_list = NULL; local 156 node->link = new_list; 157 new_list = node; 163 cache->buckets[p + mask + 1] = new_list;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pstats.py | 294 new_list = list 300 return new_list, msg 301 new_list = [] 304 new_list.append(func) 309 new_list = list[:count] 312 new_list = list[:count] 313 if len(list) != len(new_list): 315 len(list), len(new_list), sel) 317 return new_list, msg
|
/art/runtime/ |
monitor_pool.cc | 53 uintptr_t* new_list = new uintptr_t[current_chunk_list_capacity_](); local 55 monitor_chunks_[current_chunk_list_index_] = new_list;
|
/external/libpng/ |
pngset.c | 1311 png_bytep new_list; local [all...] |
/external/pdfium/third_party/lpng_v163/ |
pngset.c | 1275 png_bytep new_list; local [all...] |
/external/protobuf/python/google/protobuf/pyext/ |
repeated_scalar_container.cc | 493 ScopedPyObjectPtr new_list(Subscript(self, full_slice)); 494 if (new_list == NULL) { 497 if (PySequence_SetSlice(new_list, from, to, value) < 0) { 501 return InternalAssignRepeatedField(self, new_list); 533 ScopedPyObjectPtr new_list(Subscript(self, full_slice)); 534 if (PyList_Insert(new_list, index, value) < 0) { 537 int ret = InternalAssignRepeatedField(self, new_list);
|
/hardware/intel/img/psb_video/src/ |
tng_vld_dec.c | 249 unsigned char *new_list; local 251 new_list = realloc(ctx->slice_param_list, 253 if (NULL == new_list) { 256 ctx->slice_param_list = (object_buffer_p*) new_list;
|
/external/opencv3/3rdparty/libpng/ |
pngset.c | 1123 png_bytep new_list, p; local [all...] |
/external/autotest/client/site_tests/graphics_dEQP/ |
process_logs.py | 123 new_list = list(set(data[result].append(test))) 125 data[result] = new_list
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/ |
connection.py | 569 new_list = [] 572 new_list.append("%s." % record) 574 new_list.append(record) 575 return new_list
|
/hardware/intel/img/psb_video/src/mrst/ |
psb_MPEG2.c | 873 unsigned char *new_list; local 875 new_list = realloc(ctx->slice_param_list, 877 if (NULL == new_list) { 880 ctx->slice_param_list = (object_buffer_p*) new_list; [all...] |
/external/e2fsprogs/misc/ |
mke2fs.c | 991 char **new_list; local 995 new_list = realloc(sl->list, (sl->max+1) * sizeof(char *)); 996 if (!new_list) 998 sl->list = new_list; [all...] |