/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_v3.c | 45 X509_EXTENSION *ex; in STACK_OF() local 54 ex = sk_X509_EXTENSION_value(sk, lastpos); in STACK_OF() 55 if (OBJ_cmp(ex->object, obj) == 0) in STACK_OF() 65 X509_EXTENSION *ex; in STACK_OF() local 74 ex = sk_X509_EXTENSION_value(sk, lastpos); in STACK_OF() 75 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in STACK_OF() 100 X509_EXTENSION *ex, int loc) in STACK_OF() 123 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) in STACK_OF() 139 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument 157 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) X509_EXTENSION_create_by_OBJ() argument 187 X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj) X509_EXTENSION_set_object() argument 196 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) X509_EXTENSION_set_critical() argument 204 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) X509_EXTENSION_set_data() argument 216 X509_EXTENSION_get_object(X509_EXTENSION *ex) X509_EXTENSION_get_object() argument 223 X509_EXTENSION_get_data(X509_EXTENSION *ex) X509_EXTENSION_get_data() argument 230 X509_EXTENSION_get_critical(const X509_EXTENSION *ex) X509_EXTENSION_get_critical() argument [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x509_v3.c | 45 X509_EXTENSION *ex; in STACK_OF() local 54 ex = sk_X509_EXTENSION_value(sk, lastpos); in STACK_OF() 55 if (OBJ_cmp(ex->object, obj) == 0) in STACK_OF() 65 X509_EXTENSION *ex; in STACK_OF() local 74 ex = sk_X509_EXTENSION_value(sk, lastpos); in STACK_OF() 75 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in STACK_OF() 100 X509_EXTENSION *ex, int loc) in STACK_OF() 123 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) in STACK_OF() 139 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, in argument 157 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) X509_EXTENSION_create_by_OBJ() argument 187 X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj) X509_EXTENSION_set_object() argument 196 X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) X509_EXTENSION_set_critical() argument 204 X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data) X509_EXTENSION_set_data() argument 216 X509_EXTENSION_get_object(X509_EXTENSION *ex) X509_EXTENSION_get_object() argument 223 X509_EXTENSION_get_data(X509_EXTENSION *ex) X509_EXTENSION_get_data() argument 230 X509_EXTENSION_get_critical(const X509_EXTENSION *ex) X509_EXTENSION_get_critical() argument [all...] |
/third_party/skia/src/utils/win/ |
H A D | SkHRESULT.h | 46 #define HR(ex) HR_GENERAL(ex, nullptr, _hr) 47 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr) 49 #define HRB(ex) HR_GENERAL(ex, nullptr, false) 50 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false) 52 #define HRN(ex) HR_GENERAL(ex, nullpt [all...] |
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | remquo.c | 7 int ex = ux.i>>52 & 0x7ff; in remquo() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in remquo() 22 if (!ex) { in remquo() 23 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in remquo() 24 uxi <<= -ex + 1; in remquo() 38 if (ex < ey) { in remquo() 39 if (ex+1 == ey) in remquo() 45 for (; ex > ey; ex--) { in remquo() 60 ex in remquo() [all...] |
H A D | remquof.c | 7 int ex = ux.i>>23 & 0xff; in remquof() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in remquof() 22 if (!ex) { in remquof() 23 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in remquof() 24 uxi <<= -ex + 1; in remquof() 38 if (ex < ey) { in remquof() 39 if (ex+1 == ey) in remquof() 45 for (; ex > ey; ex--) { in remquof() 60 ex in remquof() [all...] |
H A D | remquol.c | 12 int ex = ux.i.se & 0x7fff; in remquol() local 19 if (y == 0 || isnan(y) || ex == 0x7fff) in remquol() 25 if (!ex) { in remquol() 26 ux.i.se = ex; in remquol() 28 ex = ux.i.se - 120; in remquol() 37 if (ex >= ey) { in remquol() 43 for (; ex > ey; ex--) { in remquol() 64 ex = -120; in remquol() 66 for (; mx >> 63 == 0; mx *= 2, ex in remquol() [all...] |
H A D | fmodl.c | 12 int ex = ux.i.se & 0x7fff; in fmodl() local 16 if (y == 0 || isnan(y) || ex == 0x7fff) in fmodl() 18 ux.i.se = ex; in fmodl() 27 if (!ex) { in fmodl() 29 ex = ux.i.se - 120; in fmodl() 41 for (; ex > ey; ex--) { in fmodl() 59 for (; mx >> 63 == 0; mx *= 2, ex--); in fmodl() 67 for (; ex > ey; ex in fmodl() [all...] |
/third_party/musl/src/math/ |
H A D | remquof.c | 7 int ex = ux.i>>23 & 0xff; in remquof() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in remquof() 22 if (!ex) { in remquof() 23 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in remquof() 24 uxi <<= -ex + 1; in remquof() 38 if (ex < ey) { in remquof() 39 if (ex+1 == ey) in remquof() 45 for (; ex > ey; ex--) { in remquof() 60 ex in remquof() [all...] |
H A D | remquo.c | 7 int ex = ux.i>>52 & 0x7ff; in remquo() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in remquo() 22 if (!ex) { in remquo() 23 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in remquo() 24 uxi <<= -ex + 1; in remquo() 38 if (ex < ey) { in remquo() 39 if (ex+1 == ey) in remquo() 45 for (; ex > ey; ex--) { in remquo() 60 ex in remquo() [all...] |
H A D | remquol.c | 12 int ex = ux.i.se & 0x7fff; in remquol() local 19 if (y == 0 || isnan(y) || ex == 0x7fff) in remquol() 25 if (!ex) { in remquol() 26 ux.i.se = ex; in remquol() 28 ex = ux.i.se - 120; in remquol() 37 if (ex >= ey) { in remquol() 43 for (; ex > ey; ex--) { in remquol() 64 ex = -120; in remquol() 66 for (; mx >> 63 == 0; mx *= 2, ex in remquol() [all...] |
H A D | fmodl.c | 12 int ex = ux.i.se & 0x7fff; in fmodl() local 16 if (y == 0 || isnan(y) || ex == 0x7fff) in fmodl() 18 ux.i.se = ex; in fmodl() 27 if (!ex) { in fmodl() 29 ex = ux.i.se - 120; in fmodl() 41 for (; ex > ey; ex--) { in fmodl() 59 for (; mx >> 63 == 0; mx *= 2, ex--); in fmodl() 67 for (; ex > ey; ex in fmodl() [all...] |
H A D | fmod.c | 7 int ex = ux.i>>52 & 0x7ff; in fmod() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in fmod() 25 if (!ex) { in fmod() 26 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in fmod() 27 uxi <<= -ex + 1; in fmod() 41 for (; ex > ey; ex--) { in fmod() 56 for (; uxi>>52 == 0; uxi <<= 1, ex--); in fmod() 59 if (ex > 0) { in fmod() 61 uxi |= (uint64_t)ex << 5 in fmod() [all...] |
H A D | fmodf.c | 7 int ex = ux.i>>23 & 0xff; in fmodf() local 13 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in fmodf() 22 if (!ex) { in fmodf() 23 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in fmodf() 24 uxi <<= -ex + 1; in fmodf() 38 for (; ex > ey; ex--) { in fmodf() 53 for (; uxi>>23 == 0; uxi <<= 1, ex--); in fmodf() 56 if (ex > 0) { in fmodf() 58 uxi |= (uint32_t)ex << 2 in fmodf() [all...] |
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
H A D | fanotify22.c | 143 const struct test_case *ex) in check_error_event_info_fid() 147 if (memcmp(&fid->fsid, &ex->fid->fsid, sizeof(fid->fsid))) { in check_error_event_info_fid() 149 ex->name, FSID_VAL_MEMBER(fid->fsid, 0), in check_error_event_info_fid() 150 ex->fid->fsid.val[0]); in check_error_event_info_fid() 154 if (fh->handle_type != ex->fid->handle.handle_type) { in check_error_event_info_fid() 156 ex->name, fh->handle_type, ex->fid->handle.handle_type); in check_error_event_info_fid() 160 if (fh->handle_bytes != ex->fid->handle.handle_bytes) { in check_error_event_info_fid() 162 ex->name, fh->handle_bytes, ex in check_error_event_info_fid() 142 check_error_event_info_fid(struct fanotify_event_info_fid *fid, const struct test_case *ex) check_error_event_info_fid() argument 175 check_error_event_info_error(struct fanotify_event_info_error *info_error, const struct test_case *ex) check_error_event_info_error() argument 213 check_event(char *buf, size_t len, const struct test_case *ex) check_event() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
H A D | TestIDNA.java | 102 }catch(StringPrepParseException ex){ in doTestToUnicode() 103 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 104 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 117 }catch(StringPrepParseException ex){ in doTestToUnicode() 118 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 119 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 132 }catch(StringPrepParseException ex){ in doTestToUnicode() 133 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 134 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 153 }catch(StringPrepParseException ex){ in doTestIDNToUnicode() [all...] |
H A D | TestIDNARef.java | 43 }catch(java.lang.ExceptionInInitializerError ex){ in TestToUnicode() 45 }catch(java.lang.NoClassDefFoundError ex){ in TestToUnicode() 61 }catch(java.lang.ExceptionInInitializerError ex){ in TestToASCII() 63 }catch(java.lang.NoClassDefFoundError ex){ in TestToASCII() 85 }catch(java.lang.ExceptionInInitializerError ex){ in TestIDNToASCII() 87 }catch(java.lang.NoClassDefFoundError ex){ in TestIDNToASCII() 104 }catch(java.lang.ExceptionInInitializerError ex){ in TestIDNToUnicode() 106 }catch(java.lang.NoClassDefFoundError ex){ in TestIDNToUnicode() 131 }catch(StringPrepParseException ex){ in doTestToUnicode() 132 if(expectedException == null || !ex in doTestToUnicode() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | TestIDNA.java | 99 }catch(StringPrepParseException ex){ in doTestToUnicode() 100 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 101 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 114 }catch(StringPrepParseException ex){ in doTestToUnicode() 115 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 116 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 129 }catch(StringPrepParseException ex){ in doTestToUnicode() 130 if(expectedException == null || !ex.equals(expectedException)){ in doTestToUnicode() 131 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); in doTestToUnicode() 150 }catch(StringPrepParseException ex){ in doTestIDNToUnicode() [all...] |
H A D | TestIDNARef.java | 40 }catch(java.lang.ExceptionInInitializerError ex){ in TestToUnicode() 42 }catch(java.lang.NoClassDefFoundError ex){ in TestToUnicode() 58 }catch(java.lang.ExceptionInInitializerError ex){ in TestToASCII() 60 }catch(java.lang.NoClassDefFoundError ex){ in TestToASCII() 82 }catch(java.lang.ExceptionInInitializerError ex){ in TestIDNToASCII() 84 }catch(java.lang.NoClassDefFoundError ex){ in TestIDNToASCII() 101 }catch(java.lang.ExceptionInInitializerError ex){ in TestIDNToUnicode() 103 }catch(java.lang.NoClassDefFoundError ex){ in TestIDNToUnicode() 128 }catch(StringPrepParseException ex){ in doTestToUnicode() 129 if(expectedException == null || !ex in doTestToUnicode() [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | regexp-web-compatibility.js | 130 } catch (ex) { 131 assert (ex instanceof SyntaxError); 137 } catch (ex) { 138 assert (ex instanceof SyntaxError); 144 } catch (ex) { 145 assert (ex instanceof SyntaxError); 151 } catch (ex) { 152 assert (ex instanceof SyntaxError); 170 } catch (ex) { 171 assert (ex instanceo [all...] |
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | executor_test.cc | 240 Executor ex; in TEST_F() local 242 ex.Execute(engine.get(), script.get(), ShaderMap(), &options, nullptr); in TEST_F() 270 Executor ex; in TEST_F() local 272 ex.Execute(engine.get(), script.get(), ShaderMap(), &options, nullptr); in TEST_F() 300 Executor ex; in TEST_F() local 302 ex.Execute(engine.get(), script.get(), ShaderMap(), &options, nullptr); in TEST_F() 327 Executor ex; in TEST_F() local 329 ex.Execute(engine.get(), script.get(), ShaderMap(), &options, nullptr); in TEST_F() 362 Executor ex; in TEST_F() local 364 ex in TEST_F() 393 Executor ex; TEST_F() local 414 Executor ex; TEST_F() local 434 Executor ex; TEST_F() local 464 Executor ex; TEST_F() local 484 Executor ex; TEST_F() local 505 Executor ex; TEST_F() local 525 Executor ex; TEST_F() local 546 Executor ex; TEST_F() local 566 Executor ex; TEST_F() local 587 Executor ex; TEST_F() local 607 Executor ex; TEST_F() local 628 Executor ex; TEST_F() local 648 Executor ex; TEST_F() local 669 Executor ex; TEST_F() local 689 Executor ex; TEST_F() local 710 Executor ex; TEST_F() local 730 Executor ex; TEST_F() local 751 Executor ex; TEST_F() local 770 Executor ex; TEST_F() local 790 Executor ex; TEST_F() local 810 Executor ex; TEST_F() local 831 Executor ex; TEST_F() local 850 Executor ex; TEST_F() local 870 Executor ex; TEST_F() local [all...] |
/third_party/selinux/libsepol/cil/test/unit/ |
H A D | CuTest.h | 103 #define CuAssertStrEquals(tc,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac)) 104 #define CuAssertStrEquals_Msg(tc,ms,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac)) 105 #define CuAssertIntEquals(tc,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac)) 106 #define CuAssertIntEquals_Msg(tc,ms,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac)) 107 #define CuAssertDblEquals(tc,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(a [all...] |
/third_party/musl/porting/liteos_m/kernel/src/math/ |
H A D | fmodl.c | 12 int ex = ux.i.se & 0x7fff; in fmodl() local 16 if (y == 0 || isnan(y) || ex == 0x7fff) in fmodl() 18 ux.i.se = ex; in fmodl() 27 if (!ex) { in fmodl() 29 ex = ux.i.se - 120; in fmodl() 41 for (; ex > ey; ex--) { in fmodl() 59 for (; mx >> 63 == 0; mx *= 2, ex--); in fmodl() 67 for (; ex > ey; ex in fmodl() [all...] |
H A D | fmod.c | 7 int ex = ux.i>>52 & 0x7ff; in fmod() local 16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in fmod() 25 if (!ex) { in fmod() 26 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in fmod() 27 uxi <<= -ex + 1; in fmod() 41 for (; ex > ey; ex--) { in fmod() 56 for (; uxi>>52 == 0; uxi <<= 1, ex--); in fmod() 59 if (ex > 0) { in fmod() 61 uxi |= (uint64_t)ex << 5 in fmod() [all...] |
/third_party/musl/porting/uniproton/kernel/src/math/ |
H A D | fmodl.c | 12 int ex = ux.i.se & 0x7fff; in fmodl() local 16 if (y == 0 || isnan(y) || ex == 0x7fff) in fmodl() 18 ux.i.se = ex; in fmodl() 27 if (!ex) { in fmodl() 29 ex = ux.i.se - 120; in fmodl() 41 for (; ex > ey; ex--) { in fmodl() 59 for (; mx >> 63 == 0; mx *= 2, ex--); in fmodl() 67 for (; ex > ey; ex in fmodl() [all...] |
/third_party/optimized-routines/math/test/rtest/ |
H A D | semi.c | 16 int ex = (in[0] >> 20) & 0x7FF; /* exponent */ in test_rint() local 19 if ((ex > 0x3ff + 52 - 1) || /* things this big can't be fractional */ in test_rint() 28 * Special case: ex < 0x3ff, ie our number is in (0,1). Return in test_rint() 31 if (ex < 0x3ff) { in test_rint() 45 for (i = ex; i < 0x3ff + 52; i++) { in test_rint() 56 for (i = ex; i < 0x3ff + 52; i++) { in test_rint() 79 int ex = (*in >> 23) & 0xFF; /* exponent */ in test_rintf() local 82 if ((ex > 0x7f + 23 - 1) || /* things this big can't be fractional */ in test_rintf() 90 * Special case: ex < 0x7f, ie our number is in (0,1). Return in test_rintf() 93 if (ex < in test_rintf() 275 int ex = (x[0] >> 20) & 0x7FF; /* exponent */ test_ldexp() local 353 int ex = (*x >> 23) & 0xFF; /* exponent */ test_ldexpf() local 420 int ex = (x[0] >> 20) & 0x7FF; /* exponent */ test_frexp() local 458 int ex = (*x >> 23) & 0xFF; /* exponent */ test_frexpf() local 490 int ex = (x[0] >> 20) & 0x7FF; /* exponent */ test_modf() local 527 int ex = (*x >> 23) & 0xFF; /* exponent */ test_modff() local [all...] |