Home
last modified time | relevance | path

Searched refs:lookups (Results 1 – 25 of 103) sorted by relevance

12345

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DLookupList.java17 private Lookup[] lookups; field in LookupList
22 lookups = new Lookup[10]; in LookupList()
28 if (lookupCount >= lookups.length) { in addLookup()
29 Lookup[] newLookups = new Lookup[lookups.length + 5]; in addLookup()
31 System.arraycopy(lookups, 0, newLookups, 0, lookups.length); in addLookup()
32 lookups = newLookups; in addLookup()
35 lookups[lookupCount] = lookup; in addLookup()
56 lookups[i].writeLookup(writer); in writeLookupList()
DCanonGSUBBuilder.java320 int[] lookups = new int[2]; in buildLookups() local
345 lookups[0] = lookupList.addLookup(compLookup); in buildLookups()
346 lookups[1] = lookupList.addLookup(dcmpLookup); in buildLookups()
348 return lookups; in buildLookups()
351 public static void addLookups(Feature feature, int[] lookups) in addLookups() argument
353 for (int i = 0; i < lookups.length; i += 1) { in addLookups()
354 feature.addLookup(lookups[i]); in addLookups()
484 int[] lookups = buildLookups(data, lookupList, script); in buildDecompTables() local
488 addLookups(ccmp, lookups); in buildDecompTables()
/external/harfbuzz_ng/src/
Dhb-ot-map.cc36 for (unsigned int i = 0; i < lookups[table_index].len; i++) in collect_lookups()
37 hb_set_add (lookups_out, lookups[table_index][i].index); in collect_lookups()
110 hb_ot_map_t::lookup_map_t *lookup = m.lookups[table_index].push (); in add_lookups()
299 if (last_num_lookups < m.lookups[table_index].len) in compile()
301 m.lookups[table_index].qsort (last_num_lookups, m.lookups[table_index].len); in compile()
304 for (unsigned int i = j + 1; i < m.lookups[table_index].len; i++) in compile()
305 if (m.lookups[table_index][i].index != m.lookups[table_index][j].index) in compile()
306 m.lookups[table_index][++j] = m.lookups[table_index][i]; in compile()
309 m.lookups[table_index][j].mask |= m.lookups[table_index][i].mask; in compile()
310 m.lookups[table_index][j].auto_zwj &= m.lookups[table_index][i].auto_zwj; in compile()
[all …]
Dhb-ot-map-private.hh115 …tage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len; in get_stage_lookups()
116 *plookups = &lookups[table_index][start]; in get_stage_lookups()
120 HB_INTERNAL void collect_lookups (unsigned int table_index, hb_set_t *lookups) const;
131 lookups[table_index].finish (); in finish()
145 hb_prealloced_array_t<lookup_map_t, 32> lookups[2]; /* GSUB/GPOS */ member
Dhb-ot-shape-private.hh49 inline void collect_lookups (hb_tag_t table_tag, hb_set_t *lookups) const in collect_lookups()
57 map.collect_lookups (table_index, lookups); in collect_lookups()
Dhb-ot-shape.cc908 hb_set_t lookups; in hb_ot_shape_glyphs_closure() local
909 lookups.init (); in hb_ot_shape_glyphs_closure()
910 hb_ot_shape_plan_collect_lookups (shape_plan, HB_OT_TAG_GSUB, &lookups); in hb_ot_shape_glyphs_closure()
917 for (hb_codepoint_t lookup_index = -1; hb_set_next (&lookups, &lookup_index);) in hb_ot_shape_glyphs_closure()
/external/selinux/libselinux/utils/
Davcstat.c30 unsigned long long lookups; member
185 &tmp.lookups, in main()
194 tot.lookups += tmp.lookups; in main()
208 tot.lookups, tot.hits, tot.misses, in main()
211 rel.lookups = tot.lookups - last.lookups; in main()
218 rel.lookups, rel.hits, rel.misses, in main()
/external/guice/core/src/com/google/inject/internal/
DDeferredLookups.java38 private final List<Element> lookups = Lists.newArrayList(); field in DeferredLookups
48 injector.lookups = injector; in initialize()
49 new LookupProcessor(errors).process(injector, lookups); in initialize()
54 lookups.add(lookup); in getProvider()
60 lookups.add(lookup); in getMembersInjector()
DEncounterImpl.java43 private final Lookups lookups; field in EncounterImpl
51 EncounterImpl(Errors errors, Lookups lookups) { in EncounterImpl() argument
53 this.lookups = lookups; in EncounterImpl()
129 return lookups.getProvider(key); in getProvider()
138 return lookups.getMembersInjector(typeLiteral); in getMembersInjector()
/external/c-ares/
Dares_init.c106 #define ARES_CONFIG_CHECK(x) (x->lookups && x->nsort > -1 && \
166 channel->lookups = NULL; in ares_init_options()
249 if(channel->lookups) in ares_init_options()
250 free(channel->lookups); in ares_init_options()
395 if (channel->lookups) { in ares_save_options()
396 options->lookups = strdup(channel->lookups); in ares_save_options()
397 if (!options->lookups && channel->lookups) in ares_save_options()
493 if ((optmask & ARES_OPT_LOOKUPS) && !channel->lookups) in init_by_options()
495 channel->lookups = strdup(options->lookups); in init_by_options()
496 if (!channel->lookups) in init_by_options()
[all …]
Dares_destroy.c35 free(options->lookups); in ares_destroy_options()
82 if (channel->lookups) in ares_destroy()
83 free(channel->lookups); in ares_destroy()
/external/autotest/contrib/
Ddhcp_failed_machines.py23 lookups = {} variable
33 lookups[d['fixed-address'].replace(';', '')] = hostname
71 return lookups.get(h, h)
/external/clang/include/clang/AST/
DDeclLookups.h71 inline DeclContext::lookups_range DeclContext::lookups() const { in lookups() function
85 return lookups().begin(); in lookups_begin()
89 return lookups().end(); in lookups_end()
/external/skia/bench/
DSkGlyphCacheBench.cpp29 for (int lookups = 0; lookups < 10; lookups++) { in do_font_stuff() local
/external/vulkan-validation-layers/loader/
Dvk-loader-generate.py164 lookups = []
167 lookups.append("if (!strcmp(name, \"%s\"))" % (proto.name))
168 lookups.append(" return (void *) table->%s;"
180 func.append(" %s" % "\n ".join(lookups))
/external/deqp/doc/testspecs/GLES2/
Dperformance.texture.format.txt36 Test cases measure performance of 2D and cubemap texture lookups without
38 more texture lookups, each targeting different texture unit. There are
41 Texture lookups use same coordinates and lookup results are multiplied
/external/iptables/extensions/
Dlibxt_CT.man25 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
30 \fIid\fP and only have lookups done in that zone. If \fBmark\fP is used
34 Assign this packet to zone \fIid\fP and only have lookups done in that zone.
/external/python/cpython2/Objects/
Ddictnotes.txt14 Usually written once with many lookups.
15 When base classes are used, there are many failed lookups
49 justification for d.setdefault is combining the two lookups into one.
212 1) For example, if membership testing or lookups dominate runtime and memory
265 The idea is to exploit key access patterns by anticipating future lookups
266 based on previous lookups.
/external/python/cpython2/Doc/library/
Dbisect.rst76 functions show how to transform them into the standard lookups for sorted
120 The :func:`bisect` function can be useful for numeric table lookups. This
135 all of the previous key lookups).
/external/deqp/doc/testspecs/GLES3/
Dfunctional.fbo.invalidate.txt30 + Texture lookups from partially invalidated texture attachment
Dfunctional.texture.shadow.txt45 texture lookups.
/external/curl/m4/
Dcurl-confopts.m461 AC_MSG_CHECKING([whether to enable c-ares for DNS lookups])
64 AC_HELP_STRING([--enable-ares@<:@=PATH@:>@],[Enable c-ares for DNS lookups])
65 AC_HELP_STRING([--disable-ares],[Disable c-ares for DNS lookups]),
280 dnl AC_MSG_CHECKING([whether to enable threads for DNS lookups])
283 dnl AC_HELP_STRING([--enable-threads@<:@=PATH@:>@],[Enable threads for DNS lookups])
284 dnl AC_HELP_STRING([--disable-threads],[Disable threads for DNS lookups]),
/external/syslinux/com32/lib/zlib/
Dalgorithm.txt108 will be two lookups. If you had a compression method with really long
109 symbols, you could have as many levels of lookups as is efficient. For
185 the symbols, it takes on the average 1.25 lookups per symbol. That's compared
186 to one lookup for the single table, or 1.66 lookups per symbol for the
/external/zlib/src/doc/
Dalgorithm.txt108 will be two lookups. If you had a compression method with really long
109 symbols, you could have as many levels of lookups as is efficient. For
185 the symbols, it takes on the average 1.25 lookups per symbol. That's compared
186 to one lookup for the single table, or 1.66 lookups per symbol for the
/external/python/cpython2/Modules/zlib/
Dalgorithm.txt108 will be two lookups. If you had a compression method with really long
109 symbols, you could have as many levels of lookups as is efficient. For
185 the symbols, it takes on the average 1.25 lookups per symbol. That's compared
186 to one lookup for the single table, or 1.66 lookups per symbol for the

12345