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

1 2

  /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) {
  /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/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/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/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 2032 struct cil_list *new_list; member in struct:perm_to_list
2039 struct cil_list *new_list = perm_args->new_list; local
2094 struct cil_list *new_list = NULL; local
    [all...]
  /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/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;
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_bufmgr.c 286 struct list_head *new_list = local
293 list_replace(&cache->size_list[i], &new_list[i]);
295 list_inithead(&new_list[i]);
297 cache->size_list = 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/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 1375 png_bytep new_list; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngset.c 1326 png_bytep new_list; local
    [all...]
  /external/syslinux/com32/lib/libpng/
pngset.c 1073 png_bytep new_list, p; local
1093 new_list=(png_bytep)png_malloc(png_ptr,
1098 png_memcpy(new_list, png_ptr->chunk_list,
1103 png_memcpy(new_list + 5*old_num_chunks, chunk_list,
    [all...]
  /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...]
psb_MPEG4.c 872 unsigned char *new_list; local
    [all...]
psb_H264.c 1429 unsigned char *new_list; local
    [all...]
psb_VC1.c 1286 unsigned char *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/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/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/python/cpython3/Modules/_sqlite/
connection.c 760 PyObject* new_list; local
771 new_list = PyList_New(0);
772 if (!new_list) {
779 if (PyList_Append(new_list, weakref) != 0) {
780 Py_DECREF(new_list);
786 Py_SETREF(self->statements, new_list);
791 PyObject* new_list; local
802 new_list = PyList_New(0);
803 if (!new_list) {
810 if (PyList_Append(new_list, weakref) != 0)
    [all...]
  /external/selinux/libsepol/src/
write.c 700 cond_av_list_t *cur_list, *new_list = NULL; local
710 if (expand_cond_av_list(p, list, &new_list, &expa))
712 list = new_list;
740 cond_av_list_destroy(new_list);
    [all...]
  /external/e2fsprogs/misc/
mke2fs.c 1172 char **new_list; local
1176 new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
1177 if (!new_list)
1179 sl->list = new_list;
    [all...]

Completed in 3043 milliseconds

1 2