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

1 2 3 4 5 6

  /external/chromium_org/v8/test/mjsunit/
debug-referenced-by.js 107 refs = [];
109 refs[i] = {'y': y};
  /external/chromium_org/chrome/installer/util/
wmi_unittest.cc 16 ULONG refs = services->Release(); local
17 EXPECT_EQ(refs, 0);
24 ULONG refs = services->Release(); local
25 EXPECT_EQ(refs, 0);
37 ULONG refs = class_method->Release(); local
38 EXPECT_EQ(refs, 0);
39 refs = wmi_services->Release();
40 EXPECT_EQ(refs, 0);
  /packages/apps/Camera/tests/src/com/android/camera/functional/
CameraTest.java 62 ArrayList<WeakReference<Activity>> refs = local
66 refs.add(new WeakReference<Activity>(activity));
75 for (WeakReference<Activity> c: refs) {
  /packages/apps/Camera2/tests/src/com/android/camera/functional/
CameraTest.java 62 ArrayList<WeakReference<Activity>> refs = local
66 refs.add(new WeakReference<Activity>(activity));
75 for (WeakReference<Activity> c: refs) {
  /packages/apps/Camera2/tests_camera/src/com/android/camera/functional/
CameraTest.java 62 ArrayList<WeakReference<Activity>> refs = local
66 refs.add(new WeakReference<Activity>(activity));
75 for (WeakReference<Activity> c: refs) {
  /packages/apps/LegacyCamera/tests/src/com/android/camera/functional/
CameraTest.java 67 ArrayList<WeakReference<Activity>> refs = local
71 refs.add(new WeakReference<Activity>(activity));
80 for (WeakReference<Activity> c: refs) {
  /art/runtime/
method_helper.h 66 uint32_t refs = 0; local
69 refs++;
73 return refs;
  /external/e2fsprogs/lib/ext2fs/
irel_ma.c 49 struct ext2_inode_reference *refs; member in struct:inode_reference_entry
161 * If max_refs has changed, reallocate the refs array
164 if (ref_ent->refs && ent->max_refs !=
169 retval = ext2fs_resize_mem(old_size, size, &ref_ent->refs);
252 if (ref_ent->refs == 0) {
256 sizeof(struct ext2_inode_reference), &ref_ent->refs);
259 memset(ref_ent->refs, 0, size);
266 ref_ent->refs[(unsigned) ref_ent->num++] = *ref;
294 if ((ref_ent->refs == NULL) ||
300 *ref = ref_ent->refs[ma->ref_iter++]
    [all...]
  /external/clang/test/CodeGen/
pragma-pack-1.c 7 } refs; variable in typeref:struct:ref
67 // CHECK: @refs = common global [[struct_ref]]
  /external/fio/
flow.c 7 unsigned int refs; member in struct:fio_flow
64 flow->refs = 0;
72 flow->refs++;
84 if (!--flow->refs) {
  /external/ltrace/
prototype.h 99 unsigned refs; member in struct:protolib
  /frameworks/native/include/binder/
ProcessState.h 77 RefBase::weakref_type* refs; member in struct:android::ProcessState::handle_entry
  /bionic/libc/kernel/uapi/xen/
gntdev.h 32 struct ioctl_gntdev_grant_ref refs[1]; member in struct:ioctl_gntdev_map_grant_ref
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
SerialBitmapReferenceCounter.java 29 private int refs = 0; field in class:SerialBitmapReferenceCounter.InnerTracker
32 refs++;
36 refs--;
38 return refs == 0;
  /external/kernel-headers/original/uapi/xen/
gntdev.h 60 struct ioctl_gntdev_grant_ref refs[1]; member in struct:ioctl_gntdev_map_grant_ref
  /libcore/luni/src/test/java/libcore/util/
CollectionUtilsTest.java 31 List<Reference<String>> refs = new ArrayList<Reference<String>>(); local
32 refs.add(newLiteralReference("a"));
33 refs.add(newLiteralReference("b"));
34 refs.add(newLiteralReference("c"));
35 refs.add(newLiteralReference("d"));
36 refs.add(newLiteralReference("e"));
38 Iterable<String> strings = CollectionUtils.dereferenceIterable(refs, true);
41 refs.get(1).clear(); // b
43 assertEquals(4, refs.size());
48 assertEquals(3, refs.size())
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
version_edit.h 18 int refs; member in struct:leveldb::FileMetaData
25 FileMetaData() : refs(0), allowed_seeks(1 << 30), file_size(0) { }
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 358 ir_array_reference_visitor refs; local
359 if (!refs.get_split_list(instructions, linked))
367 foreach_iter(exec_list_iterator, iter, refs.variable_list) {
395 ir_array_splitting_visitor split(&refs.variable_list);
opt_structure_splitting.cpp 317 ir_structure_reference_visitor refs; local
319 visit_list_elements(&refs, instructions);
322 foreach_iter(exec_list_iterator, iter, refs.variable_list) {
336 if (refs.variable_list.is_empty())
344 foreach_iter(exec_list_iterator, iter, refs.variable_list) {
369 ir_structure_splitting_visitor split(&refs.variable_list);
opt_tree_grafting.cpp 298 ir_variable_refcount_visitor *refs; member in struct:__anon17895::tree_grafting_info
357 ir_variable_refcount_entry *entry = info->refs->get_variable_entry(lhs_var);
382 ir_variable_refcount_visitor refs; local
386 info.refs = &refs;
388 visit_list_elements(info.refs, instructions);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_vector_splitting.cpp 339 ir_vector_reference_visitor refs; local
341 visit_list_elements(&refs, instructions);
344 foreach_list_safe(node, &refs.variable_list) {
358 if (refs.variable_list.is_empty())
366 foreach_list(node, &refs.variable_list) {
386 ir_vector_splitting_visitor split(&refs.variable_list);
brw_wm_pass0.c 45 memset(&c->refs[c->nr_refs], 0, sizeof(*c->refs));
46 return &c->refs[c->nr_refs++];
354 struct brw_wm_ref *refs[4]; local
358 * First get all refs, then assign refs. This ensures that "in-place"
365 refs[i] = get_new_ref(c, inst->SrcReg[0], i, NULL);
369 pass0_set_fpreg_ref( c, dst->File, dst->Index, i, refs[i]);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_render.c 147 struct nouveau_pushbuf_refn refs[] = { local
154 nouveau_pushbuf_refn (push, refs, multi ? 2 : 1))
nv04_surface.c 199 struct nouveau_pushbuf_refn refs[] = { local
230 nouveau_pushbuf_refn (push, refs, 2))
280 struct nouveau_pushbuf_refn refs[] = { local
294 nouveau_pushbuf_refn (push, refs, 2))
429 struct nouveau_pushbuf_refn refs[] = { local
437 nouveau_pushbuf_refn (push, refs, 1))
  /external/elfutils/0.153/libdwfl/
derelocate.c 61 } refs[0]; member in struct:dwfl_relocation
96 struct secref *refs = NULL; local
142 newref->next = refs;
143 refs = newref;
157 for (struct secref *sec = refs; sec != NULL; sec = sec->next)
170 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs]));
178 for (size_t i = nrefs; i-- > 0; refs = refs->next)
179 sortrefs[i] = refs;
180 assert (refs == NULL)
    [all...]

Completed in 1480 milliseconds

1 2 3 4 5 6