Searched refs:refs (Results 1 - 25 of 84) sorted by relevance

1234

/external/clang/test/CodeGen/
H A Dpragma-pack-1.c7 } refs; variable in typeref:struct:ref
/external/webp/src/enc/
H A Dbackward_references.c79 void VP8LInitBackwardRefs(VP8LBackwardRefs* const refs) { argument
80 if (refs != NULL) {
81 refs->refs = NULL;
82 refs->size = 0;
83 refs->max_size = 0;
87 void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs) { argument
88 if (refs != NULL) {
89 free(refs->refs);
94 VP8LBackwardRefsAlloc(VP8LBackwardRefs* const refs, int max_size) argument
216 PushBackCopy(VP8LBackwardRefs* const refs, int length) argument
228 BackwardReferencesRle(int xsize, int ysize, const uint32_t* const argb, VP8LBackwardRefs* const refs) argument
249 BackwardReferencesHashChain(int xsize, int ysize, const uint32_t* const argb, int cache_bits, int quality, VP8LBackwardRefs* const refs) argument
393 VP8LBackwardRefs refs; local
604 BackwardReferencesHashChainFollowChosenPath( int xsize, int ysize, const uint32_t* const argb, int cache_bits, const uint32_t* const chosen_path, int chosen_path_size, VP8LBackwardRefs* const refs) argument
675 BackwardReferencesTraceBackwards(int xsize, int ysize, int recursive_cost_model, const uint32_t* const argb, int cache_bits, VP8LBackwardRefs* const refs) argument
710 BackwardReferences2DLocality(int xsize, VP8LBackwardRefs* const refs) argument
798 ComputeCacheHistogram(const uint32_t* const argb, int xsize, int ysize, const VP8LBackwardRefs* const refs, int cache_bits, VP8LHistogram* const histo) argument
851 VP8LBackwardRefs refs; local
[all...]
H A Dhistogram.h57 const VP8LBackwardRefs* const refs,
64 void VP8LHistogramStoreRefs(const VP8LBackwardRefs* const refs,
106 const VP8LBackwardRefs* const refs,
H A Dbackward_references.h179 PixOrCopy* refs; member in struct:__anon15050
184 // Initialize the object. Must be called first. 'refs' can be NULL.
185 void VP8LInitBackwardRefs(VP8LBackwardRefs* const refs);
187 // Release memory and re-initialize the object. 'refs' can be NULL.
188 void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs);
191 int VP8LBackwardRefsAlloc(VP8LBackwardRefs* const refs, int max_size);
H A Dhistogram.c31 void VP8LHistogramStoreRefs(const VP8LBackwardRefs* const refs, argument
34 for (i = 0; i < refs->size; ++i) {
35 VP8LHistogramAddSinglePixOrCopy(histo, &refs->refs[i]);
40 const VP8LBackwardRefs* const refs,
46 VP8LHistogramStoreRefs(refs, p);
232 const PixOrCopy* const v = &backward_refs->refs[i];
380 const VP8LBackwardRefs* const refs,
394 HistogramBuildImage(xsize, histo_bits, refs, image_out);
39 VP8LHistogramCreate(VP8LHistogram* const p, const VP8LBackwardRefs* const refs, int palette_code_bits) argument
379 VP8LGetHistoImageSymbols(int xsize, int ysize, const VP8LBackwardRefs* const refs, int quality, int histo_bits, int cache_bits, VP8LHistogramSet* const image_in, uint16_t* const histogram_symbols) argument
/external/elfutils/libdwfl/
H A Dderelocate.c61 } refs[0]; member in struct:dwfl_relocation
93 struct secref *refs = NULL; local
138 newref->next = refs;
139 refs = newref;
153 for (struct secref *sec = refs; sec != NULL; sec = sec->next)
166 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs]));
174 for (size_t i = nrefs; i-- > 0; refs = refs->next)
175 sortrefs[i] = refs;
176 assert (refs
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js40 if (this.response_.refs) {
41 for (var i = 0; i < this.response_.refs.length; i++) {
42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
/external/v8/test/mjsunit/
H A Dmirror-unresolved-function.js46 var refs = new MirrorRefCache(
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
77 assertEquals('undefined', refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
H A Dmirror-array.js48 var refs = new MirrorRefCache(
80 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
81 assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
90 assertEquals('number', refs.lookup(fromJSON.properties[i].ref).type, "Unexpected type of the length property");
91 assertEquals(a.length, refs.lookup(fromJSON.properties[i].ref).value, "Length mismatch in parsed JSON");
101 assertEquals(indexedProperties[index].value().type(), refs.lookup(fromJSON.properties[i].ref).type, 'Unexpected serialized type');
H A Dmirror-function.js48 var refs = new MirrorRefCache(
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
H A Ddebug-return-value.js36 if (this.response_.refs) {
37 for (var i = 0; i < this.response_.refs.length; i++) {
38 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i];
H A Ddebug-referenced-by.js107 refs = [];
109 refs[i] = {'y': y};
H A Dmirror-error.js48 var refs = new MirrorRefCache(
73 assertEquals(e.message, refs.lookup(p.ref).value);
H A Dmirror-object.js48 var refs = new MirrorRefCache(
96 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
97 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
99 assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type in JSON');
101 assertEquals(mirror.prototypeObject().type(), refs.lookup(fromJSON.prototypeObject.ref).type, 'Unexpected prototype object type in JSON');
134 var o = refs.lookup(fromJSON.properties[i].ref);
/external/e2fsprogs/lib/ext2fs/
H A Direl_ma.c49 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[m
[all...]
/external/stlport/src/
H A Dmessages.cpp188 messages<char>::messages(size_t refs) argument
189 : locale::facet(refs) {}
191 messages_byname<char>::messages_byname(const char *name, size_t refs) argument
192 : messages<char>(refs), _M_impl(new _STLP_PRIV _Messages(false, name)) {}
217 messages<wchar_t>::messages(size_t refs) argument
218 : locale::facet(refs) {}
220 messages_byname<wchar_t>::messages_byname(const char *name, size_t refs) argument
221 : messages<wchar_t>(refs), _M_impl(new _STLP_PRIV _Messages(true, name)) {}
H A Dfacets_byname.cpp41 ctype_byname<char>::ctype_byname(const char* name, size_t refs) argument
42 : ctype<char>( 0, false, refs) {
112 ctype_byname<wchar_t>::ctype_byname(const char* name, size_t refs) argument
113 : ctype<wchar_t>(refs) {
184 collate_byname<char>::collate_byname(const char* name, size_t refs) argument
185 : collate<char>(refs) {
231 collate_byname<wchar_t>::collate_byname(const char* name, size_t refs) argument
232 : collate<wchar_t>(refs) {
277 ::codecvt_byname(const char* name, size_t refs) argument
278 : codecvt<char, char, mbstate_t>(refs) {
290 codecvt_byname(const char* name, size_t refs) argument
430 numpunct_byname(const char* name, size_t refs) argument
471 numpunct_byname(const char* name, size_t refs) argument
861 moneypunct_byname(const char * name, size_t refs) argument
905 moneypunct_byname(const char * name, size_t refs) argument
954 moneypunct_byname(const char * name, size_t refs) argument
1010 moneypunct_byname(const char * name, size_t refs) argument
[all...]
/external/v8/test/cctest/
H A Dtest-threads.cc144 i::List<i::ThreadId>* refs,
148 refs_(refs), thread_no_(thread_no), thread_to_start_(thread_to_start),
175 i::List<i::ThreadId> refs(kNThreads);
180 new ThreadIdValidationThread(prev, &refs, i, semaphore);
183 refs.Add(i::ThreadId::Invalid());
143 ThreadIdValidationThread(i::Thread* thread_to_start, i::List<i::ThreadId>* refs, unsigned int thread_no, i::Semaphore* semaphore) argument
/external/qemu/distrib/sdl-1.2.15/src/joystick/macos/
H A DSDL_sysjoystick.c56 ISpElementReference refs[kMaxReferences]; member in struct:joystick_hwdata
179 joystick->hwdata->refs);
190 &(joystick->hwdata->refs[count2]));
201 &(joystick->hwdata->refs[count2]));
237 joystick->hwdata->refs[j],
250 joystick->hwdata->refs[j],
294 joystick->hwdata->refs[j],
/external/dbus/test/
H A Dunused-code-gc.py15 refs = s[2]
16 for r in refs:
37 refs = s[2]
38 for r in refs:
/external/jmonkeyengine/engine/src/test/jme3test/asset/
H A DTestAssetCache.java136 List<Object> refs = new ArrayList<Object>(5000);
160 refs.add(data);
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
H A DMakefile25 rm -f manpage.links manpage.refs
/external/mesa3d/src/glsl/
H A Dopt_structure_splitting.cpp303 ir_structure_reference_visitor refs; local
305 visit_list_elements(&refs, instructions);
308 foreach_iter(exec_list_iterator, iter, refs.variable_list) {
322 if (refs.variable_list.is_empty())
330 foreach_iter(exec_list_iterator, iter, refs.variable_list) {
355 ir_structure_splitting_visitor split(&refs.variable_list);
H A Dopt_tree_grafting.cpp274 ir_variable_refcount_visitor *refs; member in struct:tree_grafting_info
333 variable_entry *entry = info->refs->get_variable_entry(lhs_var);
356 ir_variable_refcount_visitor refs; local
360 info.refs = &refs;
362 visit_list_elements(info.refs, instructions);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DRule.java122 * that we can detect refs to $rule.attr etc...
129 * So, if there are 3 ID refs in a rule's alt number 2, you'll have
142 * So, if there are 3 expr refs in a rule's alt number 2, you'll have
271 List refs = (List)altToTokenRefMap[outerAltNum].get(refAST.getText());
272 if ( refs==null ) {
273 refs = new ArrayList();
274 altToTokenRefMap[outerAltNum].put(refAST.getText(), refs);
276 refs.add(refAST);
288 List refs = (List)altToRuleRefMap[outerAltNum].get(refAST.getText());
289 if ( refs
[all...]

Completed in 9228 milliseconds

1234