/third_party/openssl/crypto/ec/curve448/ |
D | field.h | 37 } ALIGNED gf_s, gf[1]; typedef 44 static INLINE_UNUSED void gf_copy(gf out, const gf a) in gf_copy() 49 static INLINE_UNUSED void gf_add_RAW(gf out, const gf a, const gf b); 50 static INLINE_UNUSED void gf_sub_RAW(gf out, const gf a, const gf b); 51 static INLINE_UNUSED void gf_bias(gf inout, int amount); 52 static INLINE_UNUSED void gf_weak_reduce(gf inout); 54 void gf_strong_reduce(gf inout); 55 void gf_add(gf out, const gf a, const gf b); 56 void gf_sub(gf out, const gf a, const gf b); 57 void gf_mul(gf_s * RESTRICT out, const gf a, const gf b); [all …]
|
D | f_generic.c | 14 static const gf MODULUS = { 21 void gf_serialize(uint8_t serial[SER_BYTES], const gf x, int with_hibit) in gf_serialize() 26 gf red; in gf_serialize() 46 mask_t gf_hibit(const gf x) in gf_hibit() 48 gf y; in gf_hibit() 56 mask_t gf_lobit(const gf x) in gf_lobit() 58 gf y; in gf_lobit() 66 mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit, in gf_deserialize() 100 void gf_strong_reduce(gf a) in gf_strong_reduce() 142 void gf_sub(gf d, const gf a, const gf b) in gf_sub() [all …]
|
D | curve448.c | 41 static void gf_invert(gf y, const gf x, int assert_nonzero) in gf_invert() 44 gf t1, t2; in gf_invert() 63 gf a, b, c, d; in point_double_internal() 106 gf eu; in pniels_to_pt() 127 gf a, b, c; in add_niels_to_pt() 148 gf a, b, c; in sub_niels_from_pt() 169 gf L0; in add_pniels_to_pt() 179 gf L0; in sub_pniels_from_pt() 190 gf a, b; in curve448_point_eq() 203 gf a, b, c; in curve448_point_valid() [all …]
|
/third_party/boost/libs/multiprecision/test/ |
D | test_cpp_bin_float_round.cpp | 35 good_type gf(f), gf2(f); in main() local 37 fr1 = gf.convert_to<float>(); in main() 41 gf = boost::math::float_next(gf2); in main() 43 BOOST_CHECK_NE(gf, gf2); in main() 45 fr1 = gf.convert_to<float>(); in main() 49 gf = boost::math::float_prior(gf2); in main() 51 BOOST_CHECK_NE(gf, gf2); in main() 53 fr1 = gf.convert_to<float>(); in main() 61 gf = gf2 += extra; in main() 63 fr1 = gf.convert_to<float>(); in main() [all …]
|
D | test_mpfr_conversions.cpp | 86 mpf_float gf(2); in main() local 94 f0 = gf; in main() 100 BOOST_TEST(mpfr_float(gf) == 2); in main() 101 BOOST_TEST(mpfr_float_50(gf) == 2); in main()
|
D | test_mpc_conversions.cpp | 86 mpf_float gf(2); in main() local 94 f0 = gf; in main() 100 BOOST_TEST(mpc_complex(gf) == 2); in main() 101 BOOST_TEST(mpc_complex_50(gf) == 2); in main()
|
/third_party/gettext/gettext-tools/tests/ |
D | format-gfc-internal-1 | 6 cat <<\EOF > f-gf-1.data 74 cat <<EOF > f-gf-1-$n.in 77 ${XGETTEXT} -L GCC-source -o f-gf-1-$n.po f-gf-1-$n.in || Exit 1 78 test -f f-gf-1-$n.po || Exit 1 81 if grep gfc-internal-format f-gf-1-$n.po > /dev/null; then 87 if grep gfc-internal-format f-gf-1-$n.po > /dev/null; then 95 cat f-gf-1-$n.in 1>&2 97 cat f-gf-1-$n.po 1>&2 100 rm -f f-gf-1-$n.in f-gf-1-$n.po 101 done < f-gf-1.data
|
D | format-gfc-internal-2 | 6 cat <<\EOF > f-gf-2.data 150 cat <<EOF > f-gf-2-$n.po 157 if ${MSGFMT} --check-format -o f-gf-2-$n.mo f-gf-2-$n.po; then 163 ${MSGFMT} --check-format -o f-gf-2-$n.mo f-gf-2-$n.po 2> /dev/null 172 cat f-gf-2-$n.po 1>&2 175 rm -f f-gf-2-$n.po f-gf-2-$n.mo 176 done < f-gf-2.data
|
/third_party/node/deps/npm/node_modules/protoduck/ |
D | index.js | 40 var gf 52 gf = arg[fns[i]] 53 if (!gf || 54 (gf.hasMethod 55 ? !gf.hasMethod.apply(gf, args) 56 : typeof gf === 'function')) { 170 const gf = useMetaobject 173 target[name] = gf 176 const gf = useMetaobject 179 target[name] = gf [all …]
|
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/ |
D | Gradient.java | 19 GradientFactory gf) throws IllegalArgumentException { in Gradient() argument 20 super(makeGradient(colors, pos, tm, lm, gf)); in Gradient() 24 GradientFactory gf) throws IllegalArgumentException { in Gradient() argument 25 super(makeGradient(colors, pos, tm, lm, gf)); in Gradient() 29 GradientFactory gf) throws IllegalArgumentException { in makeGradient() argument 43 return gf.make(fcolors, pos, tm.ordinal(), lm != null ? lm.getNativeInstance() : 0); in makeGradient() 47 GradientFactory gf) throws IllegalArgumentException { in makeGradient() argument 56 return gf.make(colors, pos, tm.ordinal(), lm != null ? lm.getNativeInstance() : 0); in makeGradient()
|
/third_party/openssl/crypto/ec/curve448/arch_32/ |
D | f_impl.h | 23 void gf_add_RAW(gf out, const gf a, const gf b) in gf_add_RAW() 31 void gf_sub_RAW(gf out, const gf a, const gf b) in gf_sub_RAW() 39 void gf_bias(gf a, int amt) in gf_bias() 48 void gf_weak_reduce(gf a) in gf_weak_reduce()
|
D | f_impl.c | 15 void gf_mul(gf_s * RESTRICT cs, const gf as, const gf bs) in gf_mul() 64 void gf_mulw_unsigned(gf_s * RESTRICT cs, const gf as, uint32_t b) in gf_mulw_unsigned() 92 void gf_sqr(gf_s * RESTRICT cs, const gf as) in gf_sqr()
|
/third_party/node/deps/npm/node_modules/genfun/lib/ |
D | genfun.js | 13 function gf () { function 14 if (!gf[kMethods].length && gf[kDefaultMethod]) { 15 return gf[kDefaultMethod].func.apply(this, arguments) 17 return gf.applyGenfun(this, arguments) 20 Object.setPrototypeOf(gf, Genfun.prototype) 21 gf[kMethods] = [] 22 gf[kCache] = {key: [], methods: [], state: STATES.UNINITIALIZED} variable 24 gf.add(opts) 26 gf.add(opts.default) 29 Object.defineProperty(gf, 'name', { [all …]
|
/third_party/node/deps/npm/node_modules/tweetnacl/ |
D | nacl.js | 11 var gf = function(init) { function 23 var gf0 = gf(), 24 gf1 = gf([1]), 25 _121665 = gf([0xdb41, 1]), 26 …D = gf([0x78a3, 0x1359, 0x4dca, 0x75eb, 0xd8ab, 0x4141, 0x0a4d, 0x0070, 0xe898, 0x7779, 0x4079, 0x… 27 …D2 = gf([0xf159, 0x26b2, 0x9b94, 0xebd6, 0xb156, 0x8283, 0x149a, 0x00e0, 0xd130, 0xeef3, 0x80f2, 0… 28 …X = gf([0xd51a, 0x8f25, 0x2d60, 0xc956, 0xa7b2, 0x9525, 0xc760, 0x692c, 0xdc5c, 0xfdd6, 0xe231, 0x… 29 …Y = gf([0x6658, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x… 30 …I = gf([0xa0b0, 0x4a0e, 0x1b27, 0xc4ee, 0xe478, 0xad2f, 0x1806, 0x2f43, 0xd7a7, 0x3dfb, 0x0099, 0x… 293 var m = gf(), t = gf(); [all …]
|
D | nacl-fast.js | 10 var gf = function(init) { function 22 var gf0 = gf(), 23 gf1 = gf([1]), 24 _121665 = gf([0xdb41, 1]), 25 …D = gf([0x78a3, 0x1359, 0x4dca, 0x75eb, 0xd8ab, 0x4141, 0x0a4d, 0x0070, 0xe898, 0x7779, 0x4079, 0x… 26 …D2 = gf([0xf159, 0x26b2, 0x9b94, 0xebd6, 0xb156, 0x8283, 0x149a, 0x00e0, 0xd130, 0xeef3, 0x80f2, 0… 27 …X = gf([0xd51a, 0x8f25, 0x2d60, 0xc956, 0xa7b2, 0x9525, 0xc760, 0x692c, 0xdc5c, 0xfdd6, 0xe231, 0x… 28 …Y = gf([0x6658, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x6666, 0x… 29 …I = gf([0xa0b0, 0x4a0e, 0x1b27, 0xc4ee, 0xe478, 0xad2f, 0x1806, 0x2f43, 0xd7a7, 0x3dfb, 0x0099, 0x… 878 var m = gf(), t = gf(); [all …]
|
/third_party/grpc/tools/http2_interop/ |
D | http2interop.go | 241 gf, err := expectGoAway(conn) 246 if gf.Code != 0xC { 247 return fmt.Errorf("Expected an Inadequate security code: %v", gf) 266 gf, err := expectGoAway(conn) 271 if gf.Code != 0xC { 272 return fmt.Errorf("Expected an Inadequate security code: %v", gf) 304 gf, err := expectGoAway(conn) 309 if gf.Code != 0xC { 310 return fmt.Errorf("Expected an Inadequate security code: %v", gf) 320 if gf, ok := f.(*GoAwayFrame); !ok { [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionTypeOverloading.symbols | 18 var gf: G & F; 19 >gf : Symbol(gf, Decl(intersectionTypeOverloading.ts, 7, 3)) 30 var y = gf("abc"); 32 >gf : Symbol(gf, Decl(intersectionTypeOverloading.ts, 7, 3))
|
D | intersectionTypeOverloading.types | 16 var gf: G & F; 17 >gf : G & F 28 var y = gf("abc"); 30 >gf("abc") : any 31 >gf : G & F
|
D | intersectionTypeOverloading.js | 9 var gf: G & F; variable 14 var y = gf("abc"); 22 var gf; variable 25 var y = gf("abc");
|
/third_party/boost/libs/multi_index/test/ |
D | test_key.cpp | 58 int gf(const base& b){return b.x;} in gf() function 128 key<gf>,global_fun<const base&,int,gf> in test_key() 134 key<&base::x,&base::cx,&base::f,&base::cf,gf>, in test_key() 141 global_fun<const base&,int,gf> in test_key() 153 key<gf,gh>, in test_key() 156 global_fun<const base&,int,gf>, in test_key() 161 key<gf,gh,grh>, in test_key() 164 global_fun<const base&,int,gf>, in test_key()
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_gradfun_init.c | 92 av_cold void ff_gradfun_init_x86(GradFunContext *gf) in ff_gradfun_init_x86() argument 98 gf->filter_line = gradfun_filter_line_mmxext; in ff_gradfun_init_x86() 100 gf->filter_line = gradfun_filter_line_ssse3; in ff_gradfun_init_x86() 103 gf->blur_line = gradfun_blur_line_sse2; in ff_gradfun_init_x86()
|
/third_party/ltp/runtest/ |
D | scsi_debug.part1 | 23 …221 -d /test/growfiles/reiser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 -T 10 -t 20480 gf-bld-$$ 24 …22 -d /test/growfiles/reiser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 -T 10 -t 20480 gf-bldf-$$ 25 …t/growfiles/reiser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -r 512-64000:1024 -R 1-384000 -T 4 gf-inf-$$ 26 gf224 growfiles -W gf224 -d /test/growfiles/reiser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 gf-… 27 …ser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -r 1024000-2048000:2048 -R 4095-2048000 -T 1 gf-large-gs-$$ 32 …ser -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -o O_RDWR,O_CREAT,O_SYNC -g 20480 -T 10 -t 20480 gf-sync-$$ 59 …gf321 -d /test/growfiles/ext2 -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 -T 10 -t 20480 gf-bld-$$ 60 …f322 -d /test/growfiles/ext2 -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 -T 10 -t 20480 gf-bldf-$$ 61 …est/growfiles/ext2 -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -r 512-64000:1024 -R 1-384000 -T 4 gf-inf-$$ 62 gf324 growfiles -W gf324 -d /test/growfiles/ext2 -D 0 -b -i 0 -L 60 -u -B 1000b -e 1 -g 20480 gf-jb… [all …]
|
/third_party/node/deps/npm/node_modules/genfun/ |
D | README.md | 22 * [`gf.add()`](#addMethod) 76 New methods may be added to the `genfun` object with [`gf.add()`](#addMethod). 87 var gf = Genfun() 92 gf(1, 2, 3) 93 gf.call(null, 1, 2, 3) 94 gf.apply(null, [1, 2, 3]) 97 #### <a name="addMethod"></a> `gf.add(<selector>, <body>)` 99 Adds a new method to `gf` and returns `gf` to allow chaining multiple `add`s. 195 #### <a name="noApplicableMethod"></a> `Genfun.noApplicableMethod(<gf>, <this>, <args>)`
|
/third_party/typescript/tests/cases/conformance/types/intersection/ |
D | intersectionTypeOverloading.ts | 8 var gf: G & F; variable 13 var y = gf("abc");
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.namespace.frag.out | 38 0:22 'N2::gf' ( global float) 48 0:? 'N2::gf' ( global float) 91 0:22 'N2::gf' ( global float) 101 0:? 'N2::gf' ( global float) 125 Name 45 "N2::gf" 140 45(N2::gf): 44(ptr) Variable Private 178 46: 6(float) Load 45(N2::gf)
|