/third_party/ltp/tools/sparse/sparse-src/validation/expand/ |
H A D | builtin_fpclassify.c | 3 #define classify(X) __builtin_fpclassify(FP_NAN,FP_INF,FP_NOR,FP_SUB,FP_ZERO,X) macro 7 if (classify(__builtin_nan("0")) != FP_NAN) in test() 9 if (classify(__builtin_inf("0")) != FP_INF) in test() 11 if (classify(1.0) != FP_NOR) in test() 13 if (classify(0.0) != FP_ZERO) in test()
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/ |
H A D | lws-button.c | 152 * classify it over time in LWS_PLAT_TIMER_CB() 283 goto classify; in LWS_PLAT_TIMER_CB() 293 * classified, then we can already classify it in LWS_PLAT_TIMER_CB() 332 * quick enough to count: we classify it as a in LWS_PLAT_TIMER_CB() 344 * He went up again too quickly, classify it in LWS_PLAT_TIMER_CB() 352 goto classify; in LWS_PLAT_TIMER_CB() 361 goto classify; in LWS_PLAT_TIMER_CB() 387 classify: in LWS_PLAT_TIMER_CB()
|
/third_party/python/Tools/scripts/ |
H A D | abitype.py | 8 # classify each token, giving it a one-letter code: 14 def classify(): function 191 c = classify()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | TestClassOverride.java | 70 public int classify(int c) { in classify() method in TestClassOverride.CustomClassifier 73 : c >= nEntries ? super.classify(c) in classify()
|
H A D | BiDiConformanceTest.java | 360 public int classify(int c) { in classify() method in BiDiConformanceTest.ConfTestBidiClassifier
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | TestClassOverride.java | 73 public int classify(int c) { in classify() method in TestClassOverride.CustomClassifier 76 : c >= nEntries ? super.classify(c) in classify()
|
H A D | BiDiConformanceTest.java | 363 public int classify(int c) { in classify() method in BiDiConformanceTest.ConfTestBidiClassifier
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | parse.py | 119 ilabel = self.classify(type, value, context) 164 def classify(self, type, value, context): member in Parser
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsls.c | 118 int classify; member 163 " -F, --classify Display classification\n" in usage() 197 { "classify", no_argument, NULL, 'F' }, in parse_options() 268 opts.classify++; in parse_options() 454 && (!opts.classify in readdir_recursive() 520 if (dt_type == NTFS_DT_DIR && opts.classify) in list_dir_entry()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | BidiClassifier.java | 32 * <code>classify</code> of the custom <code>BidiClassifier</code> will be 94 public int classify(int c) { in classify() method in BidiClassifier
|
H A D | Bidi.java | 4727 (dir = customClassifier.classify(c)) == Bidi.CLASS_DEFAULT) { in getCustomizedClass()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | BidiClassifier.java | 33 * <code>classify</code> of the custom <code>BidiClassifier</code> will be 90 public int classify(int c) { in classify() method in BidiClassifier
|
H A D | Bidi.java | 4672 (dir = customClassifier.classify(c)) == Bidi.CLASS_DEFAULT) { in getCustomizedClass()
|
/third_party/optimized-routines/math/test/rtest/ |
H A D | intern.h | 61 classify, /* classify double: dbl -> int */ enumerator 62 classifyf, /* classify float: flt -> int */
|
H A D | dotest.c | 585 {"isfinite", (funcptr)test_isfinite, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 587 {"isinf", (funcptr)test_isinf, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 589 {"isnan", (funcptr)test_isnan, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 591 {"isnormal", (funcptr)test_isnormal, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 593 {"signbit", (funcptr)test_signbit, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 595 {"fpclassify", (funcptr)test_fpclassify, classify, {NULL}, cases_uniform, 0, 0x7fffffff}, 1529 case classify: in vet_for_decline() 1654 case classify: in docase() 1826 case classify: in docase() 2080 case classify in docase() [all...] |
H A D | main.c | 58 case classify: in isdouble()
|
/third_party/python/Lib/idlelib/ |
H A D | undo.py | 248 self.classify(self.chars[-1]) != self.classify(cmd.chars): 256 def classify(self, c): member in InsertCommand
|
/third_party/skia/third_party/skcms/ |
H A D | skcms.cc | 145 static TFKind classify(const skcms_TransferFunction& tf, TF_PQish* pq = nullptr in classify() function 173 return classify(*tf) == sRGBish; in skcms_TransferFunction_isSRGBish() 176 return classify(*tf) == PQish; in skcms_TransferFunction_isPQish() 179 return classify(*tf) == HLGish; in skcms_TransferFunction_isHLGish() 204 switch (classify(*tf, &pq, &hlg)) { in skcms_TransferFunction_eval() 1837 [[clang::no_sanitize("float-divide-by-zero")]] // Checked for by classify() on the way out. 1842 switch (classify(*src, &pq, &hlg)) { 1864 assert (classify(*src) == sRGBish); 1911 // a >= 0 and ad+b >= 0. These constraints are checked by classify(), so they're true 1923 // That should usually make classify(in [all...] |
/third_party/libwebsockets/lib/misc/fts/ |
H A D | trie.c | 490 static char classify[] = { variable 633 m = classify[(int)c]; in lws_fts_fill() 888 if (classify[(int)c]) { in lws_fts_fill()
|
/third_party/mksh/ |
H A D | edit.c | 3496 #define is_bad(c) (classify[rtt2asc(c) & 0x7F] & vB) 3497 #define is_cmd(c) (classify[rtt2asc(c) & 0x7F] & (vM | vE | vC | vU)) 3498 #define is_move(c) (classify[rtt2asc(c) & 0x7F] & vM) 3499 #define is_extend(c) (classify[rtt2asc(c) & 0x7F] & vE) 3500 #define is_long(c) (classify[rtt2asc(c) & 0x7F] & vX) 3501 #define is_undoable(c) (!(classify[rtt2asc(c) & 0x7F] & vU)) 3502 #define is_srch(c) (classify[rtt2asc(c) & 0x7F] & vS) 3503 #define is_zerocount(c) (classify[rtt2asc(c) & 0x7F] & vZ) 3505 static const unsigned char classify[128] = { variable
|
/third_party/node/deps/ada/ |
H A D | ada.cpp | 10661 uint8x16_t classify = vandq_u8(lowpart, highpart); 10662 if (vmaxvq_u8(classify) != 0) { 10663 uint8x16_t is_zero = vceqq_u8(classify, zero); 10674 uint8x16_t classify = vandq_u8(lowpart, highpart); 10675 if (vmaxvq_u8(classify) != 0) { 10676 uint8x16_t is_zero = vceqq_u8(classify, zero); 10799 uint8x16_t classify = vandq_u8(lowpart, highpart); 10800 if (vmaxvq_u8(classify) != 0) { 10801 uint8x16_t is_zero = vceqq_u8(classify, zero); 10812 uint8x16_t classify [all...] |
/third_party/mesa3d/src/nouveau/codegen/lib/ |
H A D | gm107.asm | 114 // Step 1: classify input according to exponent and value, and calculate
|
H A D | gk110.asm | 101 // Step 1: classify input according to exponent and value, and calculate
|
H A D | gk104.asm | 559 // Step 1: classify input according to exponent and value, and calculate
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |