/third_party/openssl/crypto/bn/ |
D | rsaz_exp.c | 60 BN_ULONG k0) 85 rsaz_1024_mul_avx2(R2, R2, R2, m, k0); 86 rsaz_1024_mul_avx2(R2, R2, two80, m, k0); 89 rsaz_1024_mul_avx2(result, R2, one, m, k0); 91 rsaz_1024_mul_avx2(a_inv, a_inv, R2, m, k0); 97 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); 102 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); 107 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 110 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 113 rsaz_1024_sqr_avx2(result, result, m, k0, 1); [all …]
|
D | rsaz_exp_x2.c | 59 const BN_ULONG *exp, const BN_ULONG *m, BN_ULONG k0); 62 const BN_ULONG *rr, const BN_ULONG k0[2]); 79 BN_ULONG k0); 82 const BN_ULONG *rr, const BN_ULONG k0[2]); 85 const BN_ULONG k0[2]); 151 BN_ULONG k0[2] = {0}; 214 k0[0] = k0_1; 215 k0[1] = k0_2; 217 exp_x2(rr1_red, base1_red, exp, m1_red, rr1_red, k0); 262 const BN_ULONG k0[2]) [all …]
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
D | rsaz_exp.c | 60 BN_ULONG k0) 85 rsaz_1024_mul_avx2(R2, R2, R2, m, k0); 86 rsaz_1024_mul_avx2(R2, R2, two80, m, k0); 89 rsaz_1024_mul_avx2(result, R2, one, m, k0); 91 rsaz_1024_mul_avx2(a_inv, a_inv, R2, m, k0); 97 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); 102 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); 107 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 110 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 113 rsaz_1024_sqr_avx2(result, result, m, k0, 1); [all …]
|
D | rsaz_exp_x2.c | 59 const BN_ULONG *exp, const BN_ULONG *m, BN_ULONG k0); 62 const BN_ULONG *rr, const BN_ULONG k0[2]); 79 BN_ULONG k0); 82 const BN_ULONG *rr, const BN_ULONG k0[2]); 85 const BN_ULONG k0[2]); 151 BN_ULONG k0[2] = {0}; 214 k0[0] = k0_1; 215 k0[1] = k0_2; 217 exp_x2(rr1_red, base1_red, exp, m1_red, rr1_red, k0); 262 const BN_ULONG k0[2]) [all …]
|
/third_party/ffmpeg/libavutil/ |
D | xtea.c | 63 uint32_t k0 = ctx->key[0]; in xtea_crypt_ecb() local 89 DSTEP(0x8A8043AEU, k0, k1); in xtea_crypt_ecb() 90 DSTEP(0xEC48C9F5U, k1, k0); in xtea_crypt_ecb() 94 DSTEP(0x736AE311U, k0, k0); in xtea_crypt_ecb() 98 DSTEP(0xFA8CFC2DU, k3, k0); in xtea_crypt_ecb() 99 DSTEP(0x5C558274U, k0, k3); in xtea_crypt_ecb() 102 DSTEP(0x81AF1549U, k2, k0); in xtea_crypt_ecb() 104 DSTEP(0x454021D7U, k0, k2); in xtea_crypt_ecb() 106 DSTEP(0x08D12E65U, k1, k0); in xtea_crypt_ecb() 109 DSTEP(0x2E2AC13AU, k0, k1); in xtea_crypt_ecb() [all …]
|
D | tea.c | 57 uint32_t k0, k1, k2, k3; in tea_crypt_ecb() local 58 k0 = ctx->key[0]; in tea_crypt_ecb() 72 v0 -= ((v1 << 4) + k0) ^ (v1 + sum) ^ ((v1 >> 5) + k1); in tea_crypt_ecb() 86 v0 += ((v1 << 4) + k0) ^ (v1 + sum) ^ ((v1 >> 5) + k1); in tea_crypt_ecb()
|
/third_party/ffmpeg/libavcodec/ |
D | opus_rc.c | 211 uint32_t ff_opus_rc_dec_uint_step(OpusRangeCoder *rc, int k0) in ff_opus_rc_dec_uint_step() argument 214 uint32_t k, scale, symbol, total = (k0+1)*3 + k0; in ff_opus_rc_dec_uint_step() 219 k = (symbol < (k0+1)*3) ? symbol/3 : symbol - (k0+1)*2; in ff_opus_rc_dec_uint_step() 221 opus_rc_dec_update(rc, scale, (k <= k0) ? 3*(k+0) : (k-1-k0) + 3*(k0+1), in ff_opus_rc_dec_uint_step() 222 (k <= k0) ? 3*(k+1) : (k-0-k0) + 3*(k0+1), total); in ff_opus_rc_dec_uint_step() 226 void ff_opus_rc_enc_uint_step(OpusRangeCoder *rc, uint32_t val, int k0) in ff_opus_rc_enc_uint_step() argument 228 const uint32_t a = val <= k0, b = 2*a + 1; in ff_opus_rc_enc_uint_step() 229 k0 = (k0 + 1) << 1; in ff_opus_rc_enc_uint_step() 230 val = b*(val + k0) - 3*a*k0; in ff_opus_rc_enc_uint_step() 231 opus_rc_enc_update(rc, val, val + b, (k0 << 1) - 1, 0); in ff_opus_rc_enc_uint_step()
|
D | ttadata.c | 42 void ff_tta_rice_init(TTARice *c, uint32_t k0, uint32_t k1) in ff_tta_rice_init() argument 44 c->k0 = k0; in ff_tta_rice_init() 46 c->sum0 = ff_tta_shift_16[k0]; in ff_tta_rice_init()
|
D | ttaenc.c | 137 k = rice->k0; in tta_encode_frame() 140 if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0]) in tta_encode_frame() 141 rice->k0--; in tta_encode_frame() 142 else if (rice->sum0 > ff_tta_shift_16[rice->k0 + 1]) in tta_encode_frame() 143 rice->k0++; in tta_encode_frame()
|
D | tta.c | 281 k = rice->k0; in tta_decode_frame() 310 value += ff_tta_shift_1[rice->k0]; in tta_decode_frame() 313 if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0]) in tta_decode_frame() 314 rice->k0--; in tta_decode_frame() 315 else if(rice->sum0 > ff_tta_shift_16[rice->k0 + 1]) in tta_decode_frame() 316 rice->k0++; in tta_decode_frame()
|
D | ttadata.h | 35 uint32_t k0, k1, sum0, sum1; member 48 void ff_tta_rice_init(TTARice *c, uint32_t k0, uint32_t k1);
|
/third_party/mesa3d/src/mesa/main/ |
D | mipmap.c | 180 const GLuint k0 = (srcWidth == dstWidth) ? 0 : 1; in do_row() local 195 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 208 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 220 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 231 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 242 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 255 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 267 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 278 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() 289 for (i = j = 0, k = k0; i < (GLuint) dstWidth; in do_row() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | keyofAndIndexedAccess2.js | 2 function f1(obj: { a: number, b: 0 | 1, c: string }, k0: 'a', k1: 'a' | 'b', k2: 'a' | 'b' | 'c') { 3 obj[k0] = 1; 4 obj[k0] = 2; 5 obj[k0] = 'x'; // Error 171 function f1(obj, k0, k1, k2) { 172 obj[k0] = 1; 173 obj[k0] = 2; 174 obj[k0] = 'x'; // Error
|
D | keyofAndIndexedAccess2.types | 2 function f1(obj: { a: number, b: 0 | 1, c: string }, k0: 'a', k1: 'a' | 'b', k2: 'a' | 'b' | 'c') { 3 >f1 : (obj: { a: number; b: 0 | 1; c: string;}, k0: 'a', k1: 'a' | 'b', k2: 'a' | 'b' | 'c… 8 >k0 : "a" 12 obj[k0] = 1; 13 >obj[k0] = 1 : 1 14 >obj[k0] : number 16 >k0 : "a" 19 obj[k0] = 2; 20 >obj[k0] = 2 : 2 21 >obj[k0] : number [all …]
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/function-with-uniform-return/ |
D | 0-opt.spvasm | 16 OpName %k0 "k0" 53 %k0 = OpVariable %_ptr_Function_float Function 71 OpStore %k0 %45 72 %46 = OpLoad %float %k0
|
D | 0-opt.wgsl | 31 var k0 : f32; 44 k0 = (x_43 - x_44); 45 let x_46 : f32 = k0;
|
D | 0-opt.spvasm.expected.hlsl | 28 float k0 = 0.0f; 40 k0 = (x_43 - x_44); 41 B = k0;
|
D | 0-opt.wgsl.expected.hlsl | 28 float k0 = 0.0f; 40 k0 = (x_43 - x_44); 41 B = k0;
|
/third_party/lame/misc/ |
D | mlame_corr.c | 174 korr_t k0; in readfile() local 177 memset ( &k0, 0, sizeof(k0) ); in readfile() 189 analyze_stereo ( s, samples / sizeof (*s), &k0 ); in readfile() 192 report (&k0); in readfile()
|
/third_party/rust/crates/cxx/src/ |
D | sip.rs | 21 k0: u64, field 120 k0: key0, in new_with_keys() 138 self.state.v0 = self.k0 ^ 0x736f6d6570736575; in reset() 140 self.state.v2 = self.k0 ^ 0x6c7967656e657261; in reset()
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofAndIndexedAccess2.ts | 4 function f1(obj: { a: number, b: 0 | 1, c: string }, k0: 'a', k1: 'a' | 'b', k2: 'a' | 'b' | 'c') { 5 obj[k0] = 1; 6 obj[k0] = 2; 7 obj[k0] = 'x'; // Error
|
/third_party/musl/src/crypt/ |
D | crypt_des.c | 695 uint32_t k0, k1, rawkey0, rawkey1; in __des_setkey() local 712 k0 = k1 = 0; in __des_setkey() 715 k0 |= key_perm_maskl[i][(rawkey0 >> ibit) & 0xf] | in __des_setkey() 733 t0 = (k0 << shifts) | (k0 >> (28 - shifts)); in __des_setkey()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | quaternion.inl | 147 T k0, k1; local 150 k0 = static_cast<T>(1) - a; 158 k0 = sin((static_cast<T>(1) - a) * fAngle) * fOneOverSin; 163 k0 * x.w + k1 * y2.w, 164 k0 * x.x + k1 * y2.x, 165 k0 * x.y + k1 * y2.y, 166 k0 * x.z + k1 * y2.z);
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | rsa.rs | 739 let k0 = super::Rsa::generate(512).unwrap(); in test_private_encrypt() localVariable 740 let k0pkey = k0.public_key_to_pem().unwrap(); in test_private_encrypt() 745 let mut emesg = vec![0; k0.size() as usize]; in test_private_encrypt() 746 k0.private_encrypt(&msg, &mut emesg, Padding::PKCS1) in test_private_encrypt() 757 let k0 = super::Rsa::generate(512).unwrap(); in test_public_encrypt() localVariable 758 let k0pkey = k0.private_key_to_pem().unwrap(); in test_public_encrypt() 763 let mut emesg = vec![0; k0.size() as usize]; in test_public_encrypt() 764 k0.public_encrypt(&msg, &mut emesg, Padding::PKCS1).unwrap(); in test_public_encrypt()
|
/third_party/ffmpeg/tests/fate/ |
D | real.mak | 32 FATE_SIPR += fate-sipr-5k0 33 fate-sipr-5k0: CMD = pcm -i $(TARGET_SAMPLES)/sipr/sipr_5k0.rm 34 fate-sipr-5k0: REF = $(SAMPLES)/sipr/sipr_5k0.pcm
|