/external/skia/src/gpu/effects/ |
D | GrMixerEffect.h | 19 const std::unique_ptr<GrFragmentProcessor>& fp1) { in OptFlags() argument 21 if (fp1) { in OptFlags() 22 flags &= ProcessorOptimizationFlags(fp1.get()); in OptFlags() 40 fp1, in Make() argument 43 new GrMixerEffect(std::move(fp0), std::move(fp1), weight)); in Make() 52 fp1, in GrMixerEffect() 54 : INHERITED(kGrMixerEffect_ClassID, (OptimizationFlags)OptFlags(fp0, fp1)) in GrMixerEffect() 59 if (fp1) { in GrMixerEffect() 61 this->registerChildProcessor(std::move(fp1)); in GrMixerEffect()
|
D | GrMixerEffect.fp | 11 in fragmentProcessor? fp1; 17 const std::unique_ptr<GrFragmentProcessor>& fp1) { 19 if (fp1) { 20 flags &= ProcessorOptimizationFlags(fp1.get()); 39 @optimizationFlags { OptFlags(fp0, fp1) } 43 half4 in1 = (fp1 != null) ? process(fp1, sk_InColor) : sk_InColor;
|
/external/ltp/testcases/misc/math/float/exp_log/ |
D | genfrexp.c | 44 int fp, fp1; in create_Result_file() local 58 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777); in create_Result_file() 59 if (!fp || !fp1) { in create_Result_file() 62 close(fp1); in create_Result_file() 67 write(fp1, &tabRI[i], sizeof(int)); in create_Result_file() 71 close(fp1); in create_Result_file()
|
D | genmodf.c | 52 int fp, fp1; in create_Result_file() local 72 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777); in create_Result_file() 73 if (!fp || !fp1) { in create_Result_file() 76 close(fp1); in create_Result_file() 81 write(fp1, &tabRI[i], sizeof(double)); in create_Result_file() 85 close(fp1); in create_Result_file()
|
/external/ltp/testcases/misc/math/float/power/ |
D | genfmod.c | 96 int fp, fp1; in create_Data_file() local 110 fp1 = open(F_name1, O_RDWR | O_CREAT | O_TRUNC, 0777); in create_Data_file() 111 if (!fp || !fp1) { in create_Data_file() 114 close(fp1); in create_Data_file() 119 write(fp1, &tabD1[i], sizeof(double)); in create_Data_file() 122 close(fp1); in create_Data_file()
|
/external/skia/src/shaders/ |
D | SkColorFilterShader.cpp | 61 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); in asFragmentProcessor() local 62 if (!fp1) { in asFragmentProcessor() 68 return fp1; in asFragmentProcessor() 71 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) }; in asFragmentProcessor()
|
/external/skqp/src/shaders/ |
D | SkColorFilterShader.cpp | 59 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); in asFragmentProcessor() local 60 if (!fp1) { in asFragmentProcessor() 66 return fp1; in asFragmentProcessor() 69 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) }; in asFragmentProcessor()
|
/external/libxaac/decoder/armv7/ |
D | ixheaacd_qmf_dec_armv7.c | 100 WORD16 *fp1, *fp2, *tmp; in ixheaacd_cplx_anal_qmffilt() local 147 fp1 = qmf_bank->anal_filter_states; in ixheaacd_cplx_anal_qmffilt() 153 fp1 = qmf_bank->fp1_anal; in ixheaacd_cplx_anal_qmffilt() 163 ixheaacd_sbr_qmfanal32_winadds(fp1, fp2, filter_1, filter_2, in ixheaacd_cplx_anal_qmffilt() 167 ixheaacd_sbr_qmfanal32_winadds_eld(fp1, fp2, filter_1, filter_2, in ixheaacd_cplx_anal_qmffilt() 179 tmp = fp1; in ixheaacd_cplx_anal_qmffilt() 180 fp1 = fp2; in ixheaacd_cplx_anal_qmffilt() 224 qmf_bank->fp1_anal = fp1; in ixheaacd_cplx_anal_qmffilt()
|
/external/ltp/testcases/kernel/syscalls/copy_file_range/ |
D | copy_file_range01.c | 67 FILE *fp1, *fp2; in check_file_content() local 71 fp1 = SAFE_FOPEN(fname1, "r"); in check_file_content() 72 if (off1 && fseek(fp1, *off1, SEEK_SET)) in check_file_content() 80 ch1 = getc(fp1); in check_file_content() 85 SAFE_FCLOSE(fp1); in check_file_content()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | 2010-05-12-FastAllocKills.ll | 12 ; FP_REG_KILL implicit-def %fp0, implicit-def %fp1, implicit-def %fp2, implicit-def %fp3, implicit-… 20 ; %fp1 = MOV_Fp8080 killed %fp0 21 ; %fp2 = MUL_Fp80m32 %fp1, %rip, 1, %reg0, %const.0, %reg0; mem:LD4[ConstantPool] 24 ; ST_FpP80m %stack.4, 1, %reg0, 0, %reg0, killed %fp1; mem:ST10[FixedStack4](align=4) 26 ; FP_REG_KILL implicit-def %fp0, implicit-def %fp1, implicit-def %fp2, implicit-def %fp3, implicit-…
|
/external/clang/test/CXX/over/over.over/ |
D | p4.cpp | 8 int (*fp1)(int) = &f0; in test_f0() local 19 float (*fp1)(float) = f0; in test_f0_2() local
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p6.cpp | 4 int (*fp1)(int) = [](int x) { return x + 1; }; in test_conversion() local 15 int (*fp1)(int) = [=](int x) { return x + 1; }; // expected-error{{no viable conversion}} in test_no_conversion() local
|
/external/clang/test/CodeGenCXX/ |
D | convert-to-fptr.cpp | 12 typedef int (*fp1)(int); typedef 17 operator fp1() { return f1; } in operator fp1()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | 2006-08-11-RetVector.ll | 4 define <4 x float> @func(<4 x float> %fp0, <4 x float> %fp1) { 5 …%tmp76 = shufflevector <4 x float> %fp0, <4 x float> %fp1, <4 x i32> < i32 0, i32 1, i32 2, i32 7 …
|
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/ |
D | 2006-08-11-RetVector.ll | 4 define <4 x float> @func(<4 x float> %fp0, <4 x float> %fp1) { 5 …%tmp76 = shufflevector <4 x float> %fp0, <4 x float> %fp1, <4 x i32> < i32 0, i32 1, i32 2, i32 7 …
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | vec_shuffle-20.ll | 3 define <4 x float> @func(<4 x float> %fp0, <4 x float> %fp1) nounwind { 5 …shufflevector <4 x float> %fp0, <4 x float> %fp1, <4 x i32> < i32 0, i32 1, i32 2, i32 7 > ; <<4 …
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | 2006-08-11-RetVector.ll | 4 define <4 x float> @func(<4 x float> %fp0, <4 x float> %fp1) { 5 …%tmp76 = shufflevector <4 x float> %fp0, <4 x float> %fp1, <4 x i32> < i32 0, i32 1, i32 2, i32 7 …
|
/external/autotest/client/site_tests/firmware_TouchMTB/geometry/ |
D | two_farthest_clusters.py | 52 fp1, fp2 = get_two_farthest_points(points) 59 (cluster1 if p.distance(fp1) <= p.distance(fp2) else cluster2).append(p)
|
/external/tensorflow/tensorflow/core/platform/ |
D | fingerprint.h | 65 inline uint64 FingerprintCat64(const uint64 fp1, const uint64 fp2) { in FingerprintCat64() argument 67 uint64 result = fp1 ^ kMul; in FingerprintCat64()
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
D | p9-0x.cpp | 33 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_simple() local 42 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_extension() local
|
/external/clang/test/SemaCXX/ |
D | const-cast.cpp | 63 f fp1 = 0; in bad_const_cast_test() local 65 …f fp2 = const_cast<f>(fp1); // expected-error {{const_cast to 'f' (aka 'int (*)(int)'), which is n… in bad_const_cast_test()
|
/external/libxaac/decoder/ |
D | ixheaacd_qmf_dec.c | 700 WORD16 *fp1; in ixheaacd_cplx_synt_qmffilt() local 745 fp1 = &filter_states[0]; in ixheaacd_cplx_synt_qmffilt() 746 fp2 = fp1 + no_synthesis_channels; in ixheaacd_cplx_synt_qmffilt() 750 fp1 = qmf_bank->fp1_syn; in ixheaacd_cplx_synt_qmffilt() 853 sbr_qmf_syn_winadd(fp1, fp2, filter_coeff, &time_out[ch_fac * p1], 2, in ixheaacd_cplx_synt_qmffilt() 861 fptemp = fp1; in ixheaacd_cplx_synt_qmffilt() 862 fp1 = fp2; in ixheaacd_cplx_synt_qmffilt() 937 ixheaacd_sbr_qmfsyn32_winadd(fp1, fp2, filter_coeff, in ixheaacd_cplx_synt_qmffilt() 940 fp1 += thirty2; in ixheaacd_cplx_synt_qmffilt() 954 ixheaacd_sbr_qmfsyn64_winadd(fp1, fp2, filter_coeff, in ixheaacd_cplx_synt_qmffilt() [all …]
|
/external/python/cpython3/Lib/ |
D | genericpath.py | 103 def sameopenfile(fp1, fp2): argument 105 s1 = os.fstat(fp1)
|
/external/lz4/examples/ |
D | blockStreaming_doubleBuffer.c | 115 int compare(FILE* fp0, FILE* fp1) in compare() argument 123 const size_t r1 = read_bin(fp1, b1, sizeof(b1)); in compare()
|
/external/clang/test/FixIt/ |
D | fixit-nullability-declspec.cpp | 8 _Nullable int (*fp1)(int); // expected-error{{nullability specifier '_Nullable' cannot be applied t… variable
|