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

1 2

  /external/e2fsprogs/lib/ext2fs/
crc32c_defs.h 54 #define likely(x) __builtin_expect(!!(x), 1) macro
57 #define likely(x) (x) macro
  /device/google/contexthub/firmware/os/inc/
util.h 42 #define likely(x) (x) macro
  /external/jemalloc_new/include/jemalloc/internal/
util.h 32 # define likely(x) __builtin_expect(!!(x), 1) macro
35 # define likely(x) !!(x) macro
  /external/libnetfilter_conntrack/include/internal/
internal.h 72 #define likely(x) __builtin_expect((x),1) macro
  /external/libunwind/include/
compiler.h 51 # define likely(x) __builtin_expect ((x), 1) macro
54 # define likely(x) (x) macro
68 # define likely(x) (x) macro
  /external/icu/icu4c/source/common/
uscript.cpp 101 char likely[ULOC_FULLNAME_CAPACITY]; local
129 likely, UPRV_LENGTHOF(likely), &internalErrorCode);
131 length = getCodesFromLocale(likely, fillIn, capacity, err);
loclikely.cpp 18 * Code for likely and minimized locale subtags, separated out from other .cpp files
19 * that then do not depend on resource bundle code and likely-subtags data.
1314 char likely[ULOC_FULLNAME_CAPACITY]; local
    [all...]
  /external/iproute2/include/
bpf_api.h 35 #ifndef likely
36 # define likely(X) __builtin_expect(!!(X), 1) macro
  /external/virglrenderer/src/gallium/include/pipe/
p_compiler.h 191 * is either likely to be true, or unlikely to be true.
201 * If these macros are used, the CPU is more likely to correctly predict
205 * In light of this, it is also a good idea to mark as "likely" a path
206 * which is not necessarily always more likely, but that will benefit much
222 #ifndef likely
224 # define likely(x) __builtin_expect(!!(x), 1) macro
227 # define likely(x) (x) macro
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateAliases.java 60 Map<String, String> likely = new TreeMap<String, String>(); local
64 likely.put(max, getDefaultContents(max));
67 addToLikely(likely);
70 addToLikely(likely);
72 addToLikely(likely);
75 for (Entry<String, String> small2large : likely.entrySet()) {
107 private void addToLikely(Map<String, String> likely) {
114 likely.put(partial, target);
CompareSuppress.java 45 Map<String, String> likely = sdi.getLikelySubtags(); local
46 for (Entry<String, String> s : likely.entrySet()) {
50 LikelySubtags likelyMaker = new LikelySubtags(likely);
KeymanCheck.java 129 LikelySubtags likely = new LikelySubtags(); local
ShowStarredCoverage.java 391 Map<String, String> likely = supp.getLikelySubtags(); local
392 for (Entry<String, String> entry : likely.entrySet()) {
  /external/elfutils/lib/
eu-config.h 129 # define likely(e) debugpred__ (e,1) macro
132 #ifndef likely
134 # define likely(expr) __builtin_expect (!!(expr), 1) macro
  /external/jemalloc/include/jemalloc/internal/
util.h 69 # define likely(x) __builtin_expect(!!(x), 1) macro
72 # define likely(x) !!(x) macro
  /external/libxkbcommon/xkbcommon/src/
utils.h 206 # define likely(x) __builtin_expect(!!(x), 1) macro
209 # define likely(x) (x) macro
  /external/mesa3d/src/util/
macros.h 48 #ifndef likely
50 # define likely(x) __builtin_expect(!!(x), 1) macro
53 # define likely(x) (x) macro
  /external/u-boot/include/
compiler.h 149 #define likely(x) __builtin_expect(!!(x), 1) macro
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
CheckLanguageCodeConverter.java 106 LikelySubtags likely = new LikelySubtags(supplementalDataInfo); local
124 String max = likely.maximize(code);
LanguageTest.java 112 String likely = likelyMap.get(language); local
113 if (likely != null) {
114 script = parser.set(likely).getScript();
118 errln("Language without likely script:\t" + base + "\t"
159 String likely = likelyMap.get("und_" + script); local
160 if (likely == null) {
163 errln("Script without likely language:\t" + script + "\t"
LikelySubtagsTest.java 35 static final Map<String, String> likely = SUPPLEMENTAL_DATA_INFO field in class:LikelySubtagsTest
37 static final LikelySubtags LIKELY = new LikelySubtags(
38 SUPPLEMENTAL_DATA_INFO, likely);
62 for (Entry<String, String> entry : likely.entrySet()) {
169 String max = LIKELY.maximize(source);
196 final String maximize = LIKELY.maximize(test);
200 LIKELY.maximize(test); // do again for debugging
210 // "Problems with likely subtags test")) {
252 for (Entry<String, String> entry : likely.entrySet()) {
296 errln("Script has no likely language: " + shortName)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
LanguageTagCanonicalizer.java 22 private final LikelySubtags likely; field in class:LanguageTagCanonicalizer
34 likely = favorRegion ? LIKELY_FAVOR_REGION : LIKELY_FAVOR_SCRIPT;
69 String likelyMin = likely.minimize(result);
107 * It special-cases cases where regions split, using likely subtags to get the best answer.
115 // we look for the most likely region given the language, if there is one.
118 String max = likely.maximize(x.toString());
  /external/harfbuzz_ng/src/
hb.hh 178 #define likely(expr) (__builtin_expect (!!(expr), 1)) macro
181 #define likely(expr) (expr) macro
  /external/u-boot/include/linux/
compiler.h 133 # ifndef likely
134 # define likely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 1)) macro
165 # define likely(x) __builtin_expect(!!(x), 1) macro
  /external/arm-optimized-routines/math/
math_config.h 226 # define likely(x) __builtin_expect (!!(x), 1) macro
235 # define likely(x) (x) macro

Completed in 629 milliseconds

1 2