HomeSort by relevance Sort by last modified time
    Searched refs:new_list (Results 1 - 25 of 41) sorted by null

1 2

  /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/autotest/server/site_tests/enterprise_CFM_USBPeripheralRebootStress/
enterprise_CFM_USBPeripheralRebootStress.py 66 new_list= new_output.splitlines()
67 if not set(new_list) == set(original_list):
68 only_in_original = list(set(original_list) - set(new_list))
69 only_in_new = list(set(new_list) - set(original_list))
78 return set(new_list) == set(original_list)
  /external/e2fsprogs/lib/blkid/
devno.c 147 struct dir_list *list = NULL, *new_list = NULL; local
163 blkid__scan_dir(current->name, devno, &new_list, &devname);
173 list = new_list;
174 new_list = NULL;
178 free_dirlist(&new_list);
  /external/e2fsprogs/lib/ext2fs/
finddev.c 132 struct dir_list *list = 0, *new_list = 0; local
150 scan_dir(current->name, device, &new_list, &ret_path);
160 list = new_list;
161 new_list = 0;
168 free_dirlist(&new_list);
  /external/v8/src/zone/
zone-handle-set.h 66 List* new_list = new (zone) List(old_list->length() + 1, zone); local
70 new_list->Add(old_list->at(i), zone);
72 new_list->Add(value, zone);
74 new_list->Add(old_list->at(i), zone);
76 DCHECK_EQ(old_list->length() + 1, new_list->length());
77 DCHECK(IsAligned(bit_cast<intptr_t>(new_list), kPointerAlignment));
78 data_ = bit_cast<intptr_t>(new_list) | kListTag;
  /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;
  /external/toolchain-utils/crosperf/
suite_runner.py 23 new_list = []
27 new_list.append(arg)
28 args_list = new_list
31 new_list = []
38 new_list.append(new_arg)
40 new_list.append(arg)
41 args_list = new_list
generate_report_unittest.py 65 for original_list, new_list in zip(original_runs, bench_runs):
66 self.assertEqual(len(original_list), len(new_list))
67 for original_keyvals, sub_keyvals in zip(original_list, new_list):
  /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/mesa3d/src/mesa/state_tracker/
st_glsl_to_nir.cpp 299 struct exec_list new_list;
300 exec_list_make_empty(&new_list);
303 insert_sorted(&new_list, var);
305 exec_list_move_nodes_to(&new_list, var_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/libchrome/base/trace_event/
trace_event_argument.cc 389 auto* new_list = new ListValue(); local
392 WrapUnique(new_list));
395 cur_list = new_list;
397 cur_list->Append(WrapUnique(new_list));
399 cur_list = new_list;
  /external/libpng/
pngset.c 1313 png_bytep new_list; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngset.c 1326 png_bytep new_list; local
    [all...]
  /external/skia/third_party/libpng/
pngset.c 1311 png_bytep new_list; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 786 PyObject* new_list; local
797 new_list = PyList_New(0);
798 if (!new_list) {
805 if (PyList_Append(new_list, weakref) != 0) {
806 Py_DECREF(new_list);
813 self->statements = new_list;
818 PyObject* new_list; local
829 new_list = PyList_New(0);
830 if (!new_list) {
837 if (PyList_Append(new_list, weakref) != 0) {
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 801 PyObject* new_list; local
812 new_list = PyList_New(0);
813 if (!new_list) {
820 if (PyList_Append(new_list, weakref) != 0) {
821 Py_DECREF(new_list);
827 Py_SETREF(self->statements, new_list);
832 PyObject* new_list; local
843 new_list = PyList_New(0);
844 if (!new_list) {
851 if (PyList_Append(new_list, weakref) != 0)
    [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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pstats.py 302 new_list = list
308 return new_list, msg
309 new_list = []
312 new_list.append(func)
317 new_list = list[:count]
320 new_list = list[:count]
321 if len(list) != len(new_list):
323 len(list), len(new_list), sel)
325 return new_list, msg
  /external/python/cpython2/Lib/
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/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

Completed in 741 milliseconds

1 2