/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);
|
/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
|
/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
|
/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:__anon18900::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...] |
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
Wildcard.java | 35 private final int[] refs; field in class:Wildcard 83 refs = new int[size]; 84 Arrays.fill(refs, -1); 90 refs[i] = ((Integer)v).intValue(); 107 sb.append((refs[i] >= 0) ? matcher.group(refs[i]) : strings[i]);
|
/external/mesa3d/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:__anon7238::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/mesa3d/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]);
|