Home
last modified time | relevance | path

Searched refs:exps (Results 1 – 15 of 15) sorted by relevance

/third_party/openssl/test/
Drsa_mp_test.c133 BIGNUM **pris = NULL, **exps = NULL, **coeffs = NULL; in key2048p3() local
155 exps = OPENSSL_zalloc(sizeof(BIGNUM *)); in key2048p3()
157 if (!TEST_ptr(pris) || !TEST_ptr(exps) || !TEST_ptr(coeffs)) in key2048p3()
161 exps[0] = BN_bin2bn(ex_exponent, sizeof(ex_exponent) - 1, NULL); in key2048p3()
163 if (!TEST_ptr(pris[0]) || !TEST_ptr(exps[0]) || !TEST_ptr(coeffs[0])) in key2048p3()
166 if (!TEST_true(RSA_set0_multi_prime_params(key, pris, exps, in key2048p3()
172 OPENSSL_free(exps); in key2048p3()
178 if (exps != NULL) in key2048p3()
179 BN_free(exps[0]); in key2048p3()
/third_party/openssl/crypto/rsa/
Drsa_lib.c263 int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[], in RSA_set0_multi_prime_params() argument
270 if (primes == NULL || exps == NULL || coeffs == NULL || pnum == 0) in RSA_set0_multi_prime_params()
284 if (primes[i] != NULL && exps[i] != NULL && coeffs[i] != NULL) { in RSA_set0_multi_prime_params()
289 pinfo->d = exps[i]; in RSA_set0_multi_prime_params()
388 int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[], in RSA_get0_multi_prime_crt_params() argument
397 if (exps != NULL || coeffs != NULL) { in RSA_get0_multi_prime_crt_params()
404 if (exps != NULL) in RSA_get0_multi_prime_crt_params()
405 exps[i] = pinfo->d; in RSA_get0_multi_prime_crt_params()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DBigNumberFormatTest.java301 String exp = null, exps[] = null; in expect() local
313 exps = (String[]) expo; in expect()
324 if (exps != null) { in expect()
325 n = Math.max(n, exps.length); in expect()
330 exps == null ? exp : exps[i]); in expect()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DBigNumberFormatTest.java304 String exp = null, exps[] = null; in expect() local
316 exps = (String[]) expo; in expect()
327 if (exps != null) { in expect()
328 n = Math.max(n, exps.length); in expect()
333 exps == null ? exp : exps[i]); in expect()
/third_party/mindspore/tests/st/ops/cpu/
Dtest_rl_buffer_net.py50 def append(self, exps): argument
51 return self.buffer_append(self.buffer, exps, self.count, self.head)
Dtest_rl_buffer_op.py37 def construct(self, buffer, exps): argument
38 return self.buffer_append(buffer, exps, self.count, self.head)
/third_party/mindspore/tests/st/ops/gpu/
Dtest_rl_buffer_net.py50 def append(self, exps): argument
51 return self.buffer_append(self.buffer, exps, self.count, self.head)
Dtest_rl_buffer_op.py37 def construct(self, buffer, exps): argument
38 return self.buffer_append(buffer, exps, self.count, self.head)
/third_party/optimized-routines/math/test/rtest/
Ddotest.c831 int exps[] = { in float32_case() local
854 for (eptr = 0; eptr < sizeof(exps)/sizeof(*exps); eptr++) { in float32_case()
855 se = (sign ? 0x80000000 : 0) | ((exps[eptr]+127) << 23); in float32_case()
958 int exps[] = { in float64_case() local
982 for (eptr = 0; eptr < sizeof(exps)/sizeof(*exps); eptr++) { in float64_case()
983 se = (sign ? 0x80000000 : 0) | ((exps[eptr]+1023) << 20); in float64_case()
/third_party/openssl/include/openssl/
Drsa.h207 int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[],
217 int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[],
/third_party/boost/boost/test/impl/
Dexecution_monitor.ipp939 int operator()( unsigned id, _EXCEPTION_POINTERS* exps );
955 seh_catch_preventer( unsigned /* id */, _EXCEPTION_POINTERS* /* exps */ )
972 system_signal_exception::operator()( unsigned id, _EXCEPTION_POINTERS* exps )
1010 if( m_se_id == EXCEPTION_ACCESS_VIOLATION && exps->ExceptionRecord->NumberParameters == 2 ) {
1011 m_fault_address = (void*)exps->ExceptionRecord->ExceptionInformation[1];
1012 m_dir = exps->ExceptionRecord->ExceptionInformation[0] == 0;
/third_party/openssl/doc/man3/
DRSA_get0_key.pod43 int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[],
45 int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[],
/third_party/vk-gl-cts/framework/common/
DtcuTextureUtil.cpp1348 int exps = de::max(-eBias - 1, floorc) + 1 + eBias; in packRGB999E5() local
1349 float e = deFloatPow(2.0f, (float)(exps-eBias-mBits)); in packRGB999E5()
1354 exps++; in packRGB999E5()
1362 DE_ASSERT((exps & ~((1<<5)-1)) == 0); in packRGB999E5()
1367 return rs | (gs << 9) | (bs << 18) | (exps << 27); in packRGB999E5()
/third_party/skia/tests/
DSkVMTest.cpp2035 float exps[] = {-2, -1, 0, 1, 2}; in DEF_TEST() local
2036 constexpr int N = SK_ARRAY_COUNT(exps); in DEF_TEST()
2037 eval(N, exps, [](skvm::Builder* b, skvm::F32 exp) { in DEF_TEST()
2041 compare(N, exps, expected); in DEF_TEST()
/third_party/ffmpeg/libavcodec/
Dac3dec.c524 int8_t *exps = s->dexps[ch_index]; in ac3_decode_transform_coeffs_ch() local
591 coeffs[freq] = mantissa >> exps[freq]; in ac3_decode_transform_coeffs_ch()