/external/libunwind/src/ |
D | Los-common.c | 48 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list) in move_cached_elf_data() argument 61 while (new_list && old_list->start <= new_list->start) in move_cached_elf_data() 63 if (old_list->start == new_list->start in move_cached_elf_data() 64 && old_list->end == new_list->end) in move_cached_elf_data() 68 new_list->ei = old_list->ei; in move_cached_elf_data() 78 new_list = new_list->next; in move_cached_elf_data() 94 struct map_info *new_list; in rebuild_if_necessary() local 98 new_list = map_create_list (UNW_MAP_CREATE_LOCAL, getpid()); in rebuild_if_necessary() 99 map = map_find_from_addr (new_list, addr); in rebuild_if_necessary() 115 move_cached_elf_data (local_map_list, new_list); in rebuild_if_necessary() [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | window_capturer_unittest.cc | 76 WindowCapturer::WindowList new_list; in TEST_F() local 77 EXPECT_TRUE(capturer_->GetWindowList(&new_list)); in TEST_F() 78 for (WindowCapturer::WindowList::iterator new_list_it = new_list.begin(); in TEST_F() 79 new_list_it != new_list.end(); ++new_list_it) { in TEST_F()
|
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_bo.c | 345 struct list_head *new_list = in reallocate_size_list() local 349 if (!new_list) { in reallocate_size_list() 361 list_inithead(&new_list[i]); in reallocate_size_list() 363 new_list[i].next = old_head->next; in reallocate_size_list() 364 new_list[i].prev = old_head->prev; in reallocate_size_list() 365 new_list[i].next->prev = &new_list[i]; in reallocate_size_list() 366 new_list[i].prev->next = &new_list[i]; in reallocate_size_list() 370 list_inithead(&new_list[i]); in reallocate_size_list() 372 cache->size_list = new_list; in reallocate_size_list()
|
/external/v8/src/zone/ |
D | zone-handle-set.h | 67 List* new_list = zone->New<List>(zone); in insert() local 68 new_list->reserve(old_list->size() + 1); in insert() 72 new_list->push_back(old_list->at(i)); in insert() 74 new_list->push_back(value); in insert() 76 new_list->push_back(old_list->at(i)); in insert() 78 DCHECK_EQ(old_list->size() + 1, new_list->size()); in insert() 79 DCHECK(IsAligned(reinterpret_cast<Address>(new_list), kPointerAlignment)); in insert() 80 data_ = reinterpret_cast<Address>(new_list) | kListTag; in insert()
|
/external/e2fsprogs/lib/ext2fs/ |
D | finddev.c | 133 struct dir_list *list = 0, *new_list = 0; in ext2fs_find_block_device() local 151 scan_dir(current->name, device, &new_list, &ret_path); in ext2fs_find_block_device() 161 list = new_list; in ext2fs_find_block_device() 162 new_list = 0; in ext2fs_find_block_device() 169 free_dirlist(&new_list); in ext2fs_find_block_device()
|
/external/e2fsprogs/lib/blkid/ |
D | devno.c | 147 struct dir_list *list = NULL, *new_list = NULL; in blkid_devno_to_devname() local 163 blkid__scan_dir(current->name, devno, &new_list, &devname); in blkid_devno_to_devname() 173 list = new_list; in blkid_devno_to_devname() 174 new_list = NULL; in blkid_devno_to_devname() 178 free_dirlist(&new_list); in blkid_devno_to_devname()
|
/external/selinux/libsepol/cil/src/ |
D | cil_list.c | 49 struct cil_list *new_list = cil_malloc(sizeof(*new_list)); in cil_list_init() local 50 new_list->head = NULL; in cil_list_init() 51 new_list->tail = NULL; in cil_list_init() 52 new_list->flavor = flavor; in cil_list_init() 53 *list = new_list; in cil_list_init()
|
/external/toolchain-utils/crosperf/ |
D | suite_runner.py | 30 new_list = [] 34 new_list.append(arg) 35 args_list = new_list 38 new_list = [] 45 new_list.append(new_arg) 47 new_list.append(arg) 48 args_list = new_list
|
D | generate_report_unittest.py | 91 for original_list, new_list in zip(original_runs, bench_runs): 92 self.assertEqual(len(original_list), len(new_list)) 93 for original_keyvals, sub_keyvals in zip(original_list, new_list):
|
/external/grpc-grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/ |
D | grpc_ares_ev_driver.cc | 240 fd_node* new_list = nullptr; in grpc_ares_notify_on_event_locked() local 265 fdn->next = new_list; in grpc_ares_notify_on_event_locked() 266 new_list = fdn; in grpc_ares_notify_on_event_locked() 301 cur->next = new_list; in grpc_ares_notify_on_event_locked() 302 new_list = cur; in grpc_ares_notify_on_event_locked() 305 ev_driver->fds = new_list; in grpc_ares_notify_on_event_locked() 307 if (new_list == nullptr) { in grpc_ares_notify_on_event_locked()
|
/external/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_bufmgr.c | 287 struct list_head *new_list = in v3d_bo_last_unreference_locked_timed() local 296 list_inithead(&new_list[i]); in v3d_bo_last_unreference_locked_timed() 298 new_list[i].next = old_head->next; in v3d_bo_last_unreference_locked_timed() 299 new_list[i].prev = old_head->prev; in v3d_bo_last_unreference_locked_timed() 300 new_list[i].next->prev = &new_list[i]; in v3d_bo_last_unreference_locked_timed() 301 new_list[i].prev->next = &new_list[i]; in v3d_bo_last_unreference_locked_timed() 305 list_inithead(&new_list[i]); in v3d_bo_last_unreference_locked_timed() 307 cache->size_list = new_list; in v3d_bo_last_unreference_locked_timed()
|
/external/toolchain-utils/cros_utils/ |
D | manifest_versions.py | 84 new_list = copy.deepcopy(pp) 87 new_list[i] = 'paladin' 88 chrome_path = '/'.join(new_list) 95 wild_path = os.path.join('/', '/'.join(new_list[:-1]), new_base)
|
/external/mesa3d/src/gallium/drivers/lima/standalone/ |
D | lima_compiler_cmdline.c | 64 struct exec_list new_list; in sort_varyings() local 65 exec_list_make_empty(&new_list); in sort_varyings() 68 insert_sorted(&new_list, var); in sort_varyings() 70 exec_list_append(&nir->variables, &new_list); in sort_varyings()
|
/external/blktrace/btt/ |
D | output.c | 333 struct seek_mode_info *p, *this, *new_list = NULL; in output_seek_mode_info() local 339 if (new_list == NULL || this->nseeks > new_list->nseeks) in output_seek_mode_info() 340 new_list = this; in output_seek_mode_info() 341 else if (this->nseeks == new_list->nseeks) { in output_seek_mode_info() 342 for (p = new_list; p != NULL; p = p->next) in output_seek_mode_info() 349 this->next = new_list; in output_seek_mode_info() 350 new_list = this; in output_seek_mode_info() 356 sip->median / sip->nseeks, new_list->mode, new_list->nseeks); in output_seek_mode_info() 358 if (new_list->next) { in output_seek_mode_info() 360 for (p = new_list->next; p != NULL; p = p->next) in output_seek_mode_info()
|
/external/python/cpython3/Lib/ |
D | pstats.py | 311 new_list = list 317 return new_list, msg 318 new_list = [] 321 new_list.append(func) 326 new_list = list[:count] 329 new_list = list[:count] 330 if len(list) != len(new_list): 332 len(list), len(new_list), sel) 334 return new_list, msg
|
/external/python/cpython2/Lib/ |
D | 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
|
/external/python/cpython2/Modules/_sqlite/ |
D | connection.c | 801 PyObject* new_list; in _pysqlite_drop_unused_statement_references() local 812 new_list = PyList_New(0); in _pysqlite_drop_unused_statement_references() 813 if (!new_list) { in _pysqlite_drop_unused_statement_references() 820 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_statement_references() 821 Py_DECREF(new_list); in _pysqlite_drop_unused_statement_references() 827 Py_SETREF(self->statements, new_list); in _pysqlite_drop_unused_statement_references() 832 PyObject* new_list; in _pysqlite_drop_unused_cursor_references() local 843 new_list = PyList_New(0); in _pysqlite_drop_unused_cursor_references() 844 if (!new_list) { in _pysqlite_drop_unused_cursor_references() 851 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_cursor_references() [all …]
|
/external/libpng/ |
D | pngset.c | 1375 png_bytep new_list; in png_set_keep_unknown_chunks() local 1461 new_list = png_voidcast(png_bytep, png_malloc(png_ptr, in png_set_keep_unknown_chunks() 1465 memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks); in png_set_keep_unknown_chunks() 1469 new_list = png_ptr->chunk_list; in png_set_keep_unknown_chunks() 1472 new_list = NULL; in png_set_keep_unknown_chunks() 1479 if (new_list != NULL) in png_set_keep_unknown_chunks() 1487 old_num_chunks = add_one_chunk(new_list, old_num_chunks, in png_set_keep_unknown_chunks() 1493 for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5) in png_set_keep_unknown_chunks() 1507 if (png_ptr->chunk_list != new_list) in png_set_keep_unknown_chunks() 1508 png_free(png_ptr, new_list); in png_set_keep_unknown_chunks() [all …]
|
/external/pdfium/third_party/libpng16/ |
D | pngset.c | 1375 png_bytep new_list; in png_set_keep_unknown_chunks() local 1461 new_list = png_voidcast(png_bytep, png_malloc(png_ptr, in png_set_keep_unknown_chunks() 1465 memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks); in png_set_keep_unknown_chunks() 1469 new_list = png_ptr->chunk_list; in png_set_keep_unknown_chunks() 1472 new_list = NULL; in png_set_keep_unknown_chunks() 1479 if (new_list != NULL) in png_set_keep_unknown_chunks() 1487 old_num_chunks = add_one_chunk(new_list, old_num_chunks, in png_set_keep_unknown_chunks() 1493 for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5) in png_set_keep_unknown_chunks() 1507 if (png_ptr->chunk_list != new_list) in png_set_keep_unknown_chunks() 1508 png_free(png_ptr, new_list); in png_set_keep_unknown_chunks() [all …]
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 480 ScopedPyObjectPtr new_list(Subscript(pself, full_slice.get())); in Subscript() local 481 if (new_list == NULL) { in Subscript() 484 if (PySequence_SetSlice(new_list.get(), from, to, value) < 0) { in Subscript() 488 return InternalAssignRepeatedField(self, new_list.get()); in Subscript() 529 ScopedPyObjectPtr new_list(Subscript(pself, full_slice.get())); in Subscript() local 530 if (PyList_Insert(new_list.get(), index, value) < 0) { in Subscript() 533 int ret = InternalAssignRepeatedField(self, new_list.get()); in Subscript()
|
/external/vulkan-validation-layers/layers/ |
D | gpu_validation.h | 97 std::vector<GpuBufferInfo> new_list{}; in GetGpuBufferInfo() 98 command_buffer_map[command_buffer] = new_list; in GetGpuBufferInfo()
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_cmdline.c | 83 struct exec_list new_list; in sort_varyings() local 84 exec_list_make_empty(&new_list); in sort_varyings() 87 insert_sorted(&new_list, var); in sort_varyings() 89 exec_list_append(&nir->variables, &new_list); in sort_varyings()
|
/external/python/cpython3/Modules/_sqlite/ |
D | connection.c | 747 PyObject* new_list; in _pysqlite_drop_unused_statement_references() local 758 new_list = PyList_New(0); in _pysqlite_drop_unused_statement_references() 759 if (!new_list) { in _pysqlite_drop_unused_statement_references() 766 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_statement_references() 767 Py_DECREF(new_list); in _pysqlite_drop_unused_statement_references() 773 Py_SETREF(self->statements, new_list); in _pysqlite_drop_unused_statement_references() 778 PyObject* new_list; in _pysqlite_drop_unused_cursor_references() local 789 new_list = PyList_New(0); in _pysqlite_drop_unused_cursor_references() 790 if (!new_list) { in _pysqlite_drop_unused_cursor_references() 797 if (PyList_Append(new_list, weakref) != 0) { in _pysqlite_drop_unused_cursor_references() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_nir.cpp | 409 struct exec_list new_list; in sort_uniforms() local 410 exec_list_make_empty(&new_list); in sort_uniforms() 414 insert_uniform_sorted(&new_list, var); in sort_uniforms() 416 exec_list_append(&shader->variables, &new_list); in sort_uniforms() 437 struct exec_list new_list; in sort_fsoutput() local 438 exec_list_make_empty(&new_list); in sort_fsoutput() 442 insert_fsoutput_sorted(&new_list, var); in sort_fsoutput() 446 nir_foreach_variable_in_list(var, &new_list) in sort_fsoutput() 449 exec_list_append(&shader->variables, &new_list); in sort_fsoutput()
|
/external/freetype/src/cache/ |
D | ftccache.c | 126 FTC_Node new_list = NULL; in ftc_cache_resize() local 156 node->link = new_list; in ftc_cache_resize() 157 new_list = node; in ftc_cache_resize() 163 cache->buckets[p + mask + 1] = new_list; in ftc_cache_resize()
|