/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | ITypBitsetTests.cpp | 146 Bitset bits2 = bits & Bitset{1 << 0 | 1 << 3 | 1 << 7}; in TEST_F() local 147 ExpectBits(bits2, {7}); in TEST_F() 159 Bitset bits2 = bits | Bitset{1 << 0 | 1 << 3 | 1 << 7}; in TEST_F() 160 ExpectBits(bits2, {0, 1, 2, 3, 7}); in TEST_F() 172 Bitset bits2 = bits ^ Bitset { 1 << 0 | 1 << 3 | 1 << 7 }; in TEST_F() 173 ExpectBits(bits2, {0, 1, 2, 3}); in TEST_F()
|
/third_party/openssl/crypto/bn/ |
D | bn_exp2.c | 20 int i, j, bits, b, bits1, bits2, ret = in BN_mod_exp2_mont() local 40 bits2 = BN_num_bits(p2); in BN_mod_exp2_mont() 41 if ((bits1 == 0) && (bits2 == 0)) { in BN_mod_exp2_mont() 46 bits = (bits1 > bits2) ? bits1 : bits2; in BN_mod_exp2_mont() 66 window2 = BN_window_bits_for_exponent_size(bits2); in BN_mod_exp2_mont()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
D | bn_exp2.c | 20 int i, j, bits, b, bits1, bits2, ret = in BN_mod_exp2_mont() local 40 bits2 = BN_num_bits(p2); in BN_mod_exp2_mont() 41 if ((bits1 == 0) && (bits2 == 0)) { in BN_mod_exp2_mont() 46 bits = (bits1 > bits2) ? bits1 : bits2; in BN_mod_exp2_mont() 66 window2 = BN_window_bits_for_exponent_size(bits2); in BN_mod_exp2_mont()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | CLBitField.h | 43 bool areMutuallyExclusive(cl_bitfield bits1, cl_bitfield bits2) const in areMutuallyExclusive() argument 45 return (isSet(bits1) ? 1 : 0) + (isSet(bits2) ? 1 : 0) <= 1; in areMutuallyExclusive() 48 bool areMutuallyExclusive(cl_bitfield bits1, cl_bitfield bits2, cl_bitfield bits3) const in areMutuallyExclusive() argument 50 return (isSet(bits1) ? 1 : 0) + (isSet(bits2) ? 1 : 0) + (isSet(bits3) ? 1 : 0) <= 1; in areMutuallyExclusive()
|
/third_party/ffmpeg/libavcodec/ |
D | opus.c | 592 int bits2[CELT_MAX_BANDS]; in ff_celt_bitalloc() local 723 bits2[i] = high >= CELT_VECTORS ? f->caps[i] : in ff_celt_bitalloc() 728 if (bits2[i]) in ff_celt_bitalloc() 729 bits2[i] = FFMAX(bits2[i] + trim_offset[i], 0); in ff_celt_bitalloc() 733 bits2[i] += boost[i]; in ff_celt_bitalloc() 737 bits2[i] = FFMAX(bits2[i] - bits1[i], 0); in ff_celt_bitalloc() 748 bandbits = bits1[j] + (center * bits2[j] >> CELT_ALLOC_STEPS); in ff_celt_bitalloc() 765 bandbits = bits1[i] + (low * bits2[i] >> CELT_ALLOC_STEPS); in ff_celt_bitalloc()
|
D | aacenc_ltp.c | 182 int bits1 = 0, bits2 = 0; in ff_aac_search_for_ltp() local 203 bits2 += bits_tmp2; in ff_aac_search_for_ltp() 205 if (dist2 < dist1 && bits2 < bits1) { in ff_aac_search_for_ltp() 210 saved_bits += bits1 - bits2; in ff_aac_search_for_ltp()
|
D | g723_1dec.c | 617 int num, denom, gain, bits1, bits2; in gain_scale() local 630 bits2 = ff_g723_1_normalize_bits(denom, 31); in gain_scale() 632 denom <<= bits2; in gain_scale() 634 bits2 = 5 + bits1 - bits2; in gain_scale() 635 bits2 = av_clip_uintp2(bits2, 5); in gain_scale() 638 gain = square_root(gain << 16 >> bits2); in gain_scale()
|
D | aactab.c | 159 static const uint8_t bits2[81] = { variable 442 bits1, bits2, bits3, bits4, bits5, bits6, bits7, bits8,
|
/third_party/libsnd/src/ALAC/ |
D | alac_encoder.c | 227 uint32_t bits1, bits2 ; in EncodeStereo() local 319 status = dyn_comp (&agParams, p->mPredictorV, &workBits, numSamples / dilate, chanBits, &bits2) ; in EncodeStereo() 323 if ((bits1 + bits2) < minBits1) in EncodeStereo() 325 minBits1 = bits1 + bits2 ; in EncodeStereo() 383 status = dyn_comp (&agParams, p->mPredictorV, &workBits, numSamples / dilate, chanBits, &bits2) ; in EncodeStereo() 385 if ((bits2 * dilate + 16 * numUV) < minBits2) in EncodeStereo() 387 minBits2 = bits2 * dilate + 16 * numUV ; in EncodeStereo() 470 status = dyn_comp (&agParams, p->mPredictorV, bitstream, numSamples, chanBits, &bits2) ; in EncodeStereo() 508 uint32_t bits1, bits2 ; in EncodeStereoFast() local 632 status = dyn_comp (&agParams, p->mPredictorV, bitstream, numSamples, chanBits, &bits2) ; in EncodeStereoFast() [all …]
|
D | alac_decoder.c | 140 uint32_t bits1, bits2 ; in alac_decode() local 427 status = dyn_decomp (&agParams, bits, p->u.mPredictor, numSamples, chanBits, &bits2) ; in alac_decode() 478 bits2 = chanBits * numSamples ; in alac_decode()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
D | vktApiBufferMemoryRequirementsTestsUtils.hpp | 173 for (const auto& bits2 : flags) in mergeFlags() local 174 bits1.insert(bits2.begin(), bits2.end()); in mergeFlags()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
D | vktApiBufferMemoryRequirementsTestsUtils.hpp | 173 for (const auto& bits2 : flags) in mergeFlags() local 174 bits1.insert(bits2.begin(), bits2.end()); in mergeFlags()
|
/third_party/openssl/crypto/evp/ |
D | dsa_ctrl.c | 95 size_t bits2 = qbits; in EVP_PKEY_CTX_set_dsa_paramgen_q_bits() local 100 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_FFC_QBITS, &bits2); in EVP_PKEY_CTX_set_dsa_paramgen_q_bits()
|
D | dh_ctrl.c | 108 size_t bits2 = qbits; in EVP_PKEY_CTX_set_dh_paramgen_subprime_len() local 113 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_FFC_QBITS, &bits2); in EVP_PKEY_CTX_set_dh_paramgen_subprime_len()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | dsa_ctrl.c | 95 size_t bits2 = qbits; in EVP_PKEY_CTX_set_dsa_paramgen_q_bits() local 100 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_FFC_QBITS, &bits2); in EVP_PKEY_CTX_set_dsa_paramgen_q_bits()
|
D | dh_ctrl.c | 108 size_t bits2 = qbits; in EVP_PKEY_CTX_set_dh_paramgen_subprime_len() local 113 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_FFC_QBITS, &bits2); in EVP_PKEY_CTX_set_dh_paramgen_subprime_len()
|
/third_party/ltp/testcases/kernel/device-drivers/include/ |
D | includeTest.c | 285 int bits = 0, bits2 = 0; in test_sunrpc_svc() local 298 hash_mem(name, bits, bits2); in test_sunrpc_svc()
|
/third_party/mesa3d/src/mesa/main/ |
D | texcompress_s3tc_tmp.h | 389 GLuint bits = 0, bits2 = 0; in storedxtencodedblock() local 473 bits2 |= (uint32_t)enc << (2 * (j * 4 + i)); in storedxtencodedblock() 486 *blkaddr++ = bits2 & 0xff; in storedxtencodedblock() 487 *blkaddr++ = ( bits2 >> 8) & 0xff; in storedxtencodedblock() 488 *blkaddr++ = ( bits2 >> 16) & 0xff; in storedxtencodedblock() 489 *blkaddr = bits2 >> 24; in storedxtencodedblock()
|
/third_party/node/deps/v8/src/compiler/ |
D | types.h | 264 static bool Is(bitset bits1, bitset bits2) { in Is() argument 265 return (bits1 | bits2) == bits2; in Is()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_pbo_compute.c | 135 nir_ssa_def *bits2; member 171 uint8_t bits2 : 6; member 242 STRUCT_MEMBER(104, bits2, 2, 6, val, 32); in init_pbo_shader_data() 253 sd->bits = nir_vec4(b, sd->bits1, sd->bits2, sd->bits3, sd->bits4); in init_pbo_shader_data() 318 pd->bits2 = bits[1]; in fill_pbo_data()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | bitset_utils_unittest.cpp | 511 std::set<std::size_t> bits2 = {5, 45, 50, 63}; in TYPED_TEST() local 523 for (std::size_t bit : bits2) in TYPED_TEST()
|
/third_party/lame/frontend/ |
D | gtkanal.c | 533 int bits, bits2; in plot_frame() local 575 bits2 = pplot1->sfbits[gr][ch]; in plot_frame() 579 bits2 = pplot->LAMEsfbits[gr][ch]; in plot_frame() 581 sprintf(title2, "MDCT%1i(%s) bits=%i/%i ", gr, label, bits, bits2); in plot_frame()
|
/third_party/openssl/crypto/rsa/ |
D | rsa_lib.c | 1204 size_t bits2 = bits; in EVP_PKEY_CTX_set_rsa_keygen_bits() local 1217 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_RSA_BITS, &bits2); in EVP_PKEY_CTX_set_rsa_keygen_bits()
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
D | rsa_lib.c | 1226 size_t bits2 = bits; in EVP_PKEY_CTX_set_rsa_keygen_bits() local 1239 *p++ = OSSL_PARAM_construct_size_t(OSSL_PKEY_PARAM_RSA_BITS, &bits2); in EVP_PKEY_CTX_set_rsa_keygen_bits()
|