/third_party/skia/resources/sksl/intrinsics/ |
D | Pow.sksl | 7 const half4 exponents = half4(2, 3, 1, 1.5); 8 return (pow(testInputs.x, exponents.x) == expected.x && 9 pow(testInputs.xy, exponents.xy) == expected.xy && 10 pow(testInputs.xyz, exponents.xyz) == expected.xyz && 11 pow(testInputs.xyzw, exponents.xyzw) == expected.xyzw && 12 pow(constVal.x, exponents.x) == expected.x && 13 pow(constVal.xy, exponents.xy) == expected.xy && 14 pow(constVal.xyz, exponents.xyz) == expected.xyz && 15 pow(constVal.xyzw, exponents.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/third_party/ffmpeg/libavcodec/ |
D | wmadec.c | 245 wma_lsp_to_curve(s, s->exponents[ch], &s->max_exponent[ch], in decode_exp_lsp() 344 q = (uint32_t *) s->exponents[ch]; in decode_exp_vlc() 639 float *coefs, *exponents, mult, mult1, noise; in wma_decode_block() local 644 exponents = s->exponents[ch]; in wma_decode_block() 654 exponents[i << bsize >> esize] * mult1; in wma_decode_block() 662 exponents = s->exponents[ch] + in wma_decode_block() 672 v = exponents[i << bsize >> esize]; in wma_decode_block() 679 exponents += n << bsize >> esize; in wma_decode_block() 683 exponents = s->exponents[ch] + (s->coefs_start << bsize >> esize); in wma_decode_block() 700 *coefs++ = noise * exponents[i << bsize >> esize] * mult1; in wma_decode_block() [all …]
|
D | wmaenc.c | 146 q = s->exponents[ch]; in init_exp() 168 q = s->exponents[ch]; in encode_exp_vlc() 242 float *coefs, *exponents, mult; in encode_block() local 246 exponents = s->exponents[ch]; in encode_block() 256 double t = *coefs++ / (exponents[i] * mult); in encode_block()
|
D | dolby_e.c | 72 int exponents[MAX_EXPONENTS]; member 659 c->exponents[g->exp_ofs + k] = mstr_exp[i] + bias_exp[k]; in unbias_exponents() 672 memcpy(c->exponents + g->exp_ofs, in parse_exponents() 673 c->exponents + p->exp_ofs, in parse_exponents() 674 g->nb_exponent * sizeof(c->exponents[0])); in parse_exponents() 804 c->exponents + g->exp_ofs, c->bap + g->exp_ofs, in parse_bit_alloc() 860 float exp = exponent_tab[c->exponents[g->exp_ofs + j]]; in parse_mantissas()
|
D | wma.h | 114 DECLARE_ALIGNED(32, float, exponents)[MAX_CHANNELS][BLOCK_MAX_SIZE]; member
|
D | mpegaudiodec_template.c | 684 int16_t *exponents) in exponents_from_scale_factors() argument 690 exp_ptr = exponents; in exponents_from_scale_factors() 752 int16_t *exponents, int end_pos2) in huffman_decode() argument 799 exponent= exponents[s_index]; in huffman_decode() 877 READ_FLIP_SIGN(g->sb_hybrid + pos, RENAME(exp_table)+exponents[pos]) in huffman_decode() 1211 int16_t exponents[576]; //FIXME try INTFLOAT in mp_decode_layer3() local 1443 exponents_from_scale_factors(s, g, exponents); in mp_decode_layer3() 1446 huffman_decode(s, g, exponents, bits_pos + g->part2_3_length); in mp_decode_layer3()
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Pow.asm.frag | 15 OpName %exponents "exponents" 31 OpDecorate %exponents RelaxedPrecision 122 %exponents = OpVariable %_ptr_Function_v4float Function 125 OpStore %exponents %37 166 %81 = OpLoad %v4float %exponents
|
D | Pow.glsl | 8 const vec4 exponents = vec4(2.0, 3.0, 1.0, 1.5); 9 …estInputs.xyz, vec3(2.0, 3.0, 1.0)) == expected.xyz) && pow(testInputs, exponents) == expected) &&…
|
D | Pow.metal | 18 const half4 exponents = half4(2.0h, 3.0h, 1.0h, 1.5h); 19 …3(2.0h, 3.0h, 1.0h)) == expected.xyz)) && all(pow(_uniforms.testInputs, exponents) == expected)) &…
|
/third_party/openssl/doc/internal/man3/ |
D | ossl_rsa_get0_all_params.pod | 21 ossl_rsa_set0_all_params() sets all primes, CRT exponents and CRT coefficients 26 ossl_rsa_get0_all_params() gets all primes, CRT exponents and CRT coefficients 44 the I<exps> stack contains I<dP>, I<dQ>, and then the rest of the exponents 54 The number of primes must always be equal to the number of exponents, and
|
/third_party/python/Modules/_decimal/libmpdec/literature/ |
D | fnt.py | 65 def is_primitive_root(r, p, factors, exponents): argument 67 if p != prod(factors, exponents) + 1:
|
/third_party/openssl/doc/man7/ |
D | EVP_PKEY-RSA.pod | 13 factors, exponents and coefficient for CRT calculations, of which the first 82 RSA CRT (Chinese Remainder Theorem) exponents. The exponents are known 84 Up to eight additional "d_i" exponents are supported. 106 Up to eight additional "t_i" exponents are supported.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_light_max_exponent.txt | 40 Note that extremely high exponents for shininess and/or spot light 44 Paul Deifenbach's thesis suggests that higher exponents are
|
/third_party/openGLES/extensions/NV/ |
D | NV_light_max_exponent.txt | 40 Note that extremely high exponents for shininess and/or spot light 44 Paul Deifenbach's thesis suggests that higher exponents are
|
/third_party/rust/crates/minimal-lexical/ |
D | CHANGELOG | 30 - Remove cached_float and infer exponents rather than store them.
|
/third_party/openssl/doc/man3/ |
D | BN_mod_exp_mont.pod | 36 memory layout to limit data-dependency to a minimum to protect secret exponents.
|
D | OSSL_PARAM_BLD.pod | 141 BIGNUM *dmp1, *dmq1; /* first two CRT exponents */
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_query_matrix.txt | 62 format. exponent[16] contains the unbiased exponents applied to the
|
/third_party/openGLES/extensions/OES/ |
D | OES_query_matrix.txt | 72 format. exponent[16] contains the unbiased exponents applied to the
|
/third_party/icu/vendor/double-conversion/upstream/ |
D | Changelog | 53 Avoid integer overflow when exponents for hex floats were too big.
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.0.7.rst | 157 - aco: fix 64-bit trunc with negative exponents on GFX6
|
/third_party/ffmpeg/libavcodec/x86/ |
D | ac3dsp.asm | 206 ; convert to float and extract exponents
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_texture_shared_exponent.txt | 669 There should be no "off limits" exponents for the shared exponent 675 So the run-of-the-mill BIASED range of exponents for s10e5 is 677 uses the same rule for all exponents from 0 to 31. 709 the case if other components demand higher exponents).
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_texture_shared_exponent.txt | 669 There should be no "off limits" exponents for the shared exponent 675 So the run-of-the-mill BIASED range of exponents for s10e5 is 677 uses the same rule for all exponents from 0 to 31. 709 the case if other components demand higher exponents).
|
/third_party/python/Lib/test/ |
D | test_complex.py | 281 exponents = [-19, -5, -3, -2, -1, 0, 1, 2, 3, 5, 19] 283 for exponent in exponents:
|