/third_party/boost/libs/test/test/writing-test-ts/ |
D | fp-comparisons-test.cpp | 40 fp1 = static_cast<FPT>(first); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 44 BOOST_TEST( fp1 == fp2, epsilon% tt::tolerance() ) \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 48 fp1 = static_cast<FPT>(first); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 52 BOOST_TEST( fp1 != fp2, epsilon% tt::tolerance() ) \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 55 FPT fp1, fp2, epsilon; in BOOST_AUTO_TEST_CASE_TEMPLATE() local 88 fp1 = static_cast<FPT>(first); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 92 BOOST_TEST( fp1 == fp2, tt::tolerance(epsilon) ); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 96 fp1 = static_cast<FPT>(first); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 100 BOOST_TEST( fp1 != fp2, tt::tolerance(epsilon) ); \ in BOOST_AUTO_TEST_CASE_TEMPLATE() 104 FPT fp1, fp2, epsilon; in BOOST_AUTO_TEST_CASE_TEMPLATE() local [all …]
|
/third_party/flutter/skia/src/gpu/effects/generated/ |
D | GrMixerEffect.h | 20 const std::unique_ptr<GrFragmentProcessor>& fp1) { in OptFlags() argument 22 if (fp1) { in OptFlags() 23 flags &= ProcessorOptimizationFlags(fp1.get()); in OptFlags() 38 fp1, in Make() argument 41 new GrMixerEffect(std::move(fp0), std::move(fp1), weight)); in Make() 53 fp1, in GrMixerEffect() 55 : INHERITED(kGrMixerEffect_ClassID, (OptimizationFlags)OptFlags(fp0, fp1)) in GrMixerEffect() 60 if (fp1) { in GrMixerEffect() 62 this->registerChildProcessor(std::move(fp1)); in GrMixerEffect()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | FormattedValueFieldPositionIteratorImpl.java | 90 FieldPosition fp1 = attributes.get(i); in addOverlapSpans() local 93 if (fp1.getFieldAttribute() != fp2.getFieldAttribute()) { in addOverlapSpans() 97 s1a = Math.min(s1a, fp1.getBeginIndex()); in addOverlapSpans() 98 s1b = Math.max(s1b, fp1.getEndIndex()); in addOverlapSpans() 123 FieldPosition fp1 = attributes.get(i); in sort() local 126 if (fp1.getBeginIndex() != fp2.getBeginIndex()) { in sort() 128 comparison = fp2.getBeginIndex() - fp1.getBeginIndex(); in sort() 129 } else if (fp1.getEndIndex() != fp2.getEndIndex()) { in sort() 131 comparison = fp1.getEndIndex() - fp2.getEndIndex(); in sort() 132 } else if (fp1.getFieldAttribute() != fp2.getFieldAttribute()) { in sort() [all …]
|
/third_party/flutter/skia/src/gpu/effects/ |
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) ? sample(fp1, sk_InColor) : sk_InColor;
|
/third_party/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()
|
/third_party/boost/libs/stacktrace/test/ |
D | test_void_ptr_cast.cpp | 26 void_f_ptr fp1 = void_ptr_cast<void_f_ptr>(foo1); in test() local 28 BOOST_TEST(fp1); in test() 30 BOOST_TEST(fp1 != fp2); in test() 45 BOOST_TEST(fp1 == fp1_2); in test() 49 BOOST_TEST(void_ptr_cast<void*>(fp1) == vp1); in test() 53 BOOST_TEST(void_ptr_cast<F1>(fp1) == foo1); in test()
|
/third_party/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()
|
/third_party/ffmpeg/libavutil/mips/ |
D | mmiutils.h | 107 #define MMI_LQC1(fp1, fp2, addr, bias) \ argument 108 "ldc1 "#fp1", "#bias"("#addr") \n\t" \ 111 #define MMI_SQC1(fp1, fp2, addr, bias) \ argument 112 "sdc1 "#fp1", "#bias"("#addr") \n\t" \ 196 #define MMI_LQC1(fp1, fp2, addr, bias) \ argument 197 "gslqc1 "#fp1", "#fp2", "#bias"("#addr") \n\t" 199 #define MMI_SQC1(fp1, fp2, addr, bias) \ argument 200 "gssqc1 "#fp1", "#fp2", "#bias"("#addr") \n\t" 338 #define PSRAH_4_MMI(fp1, fp2, fp3, fp4, shift) \ argument 339 "psrah "#fp1", "#fp1", "#shift" \n\t" \ [all …]
|
/third_party/flutter/skia/src/shaders/ |
D | SkColorFilterShader.cpp | 56 auto fp1 = as_SB(fShader)->asFragmentProcessor(args); in asFragmentProcessor() local 57 if (!fp1) { in asFragmentProcessor() 63 return fp1; in asFragmentProcessor() 66 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) }; in asFragmentProcessor()
|
/third_party/openssl/test/ |
D | cms-examples.pl | 327 my ( $fp1, $fp2 ); 331 if ( !open( $fp1, "<$f1" ) ) { 341 binmode $fp1; 347 $n1 = sysread $fp1, $rd1, 4096; 359 close $fp1;
|
/third_party/ltp/testcases/kernel/syscalls/copy_file_range/ |
D | copy_file_range01.c | 39 FILE *fp1, *fp2; in check_file_content() local 43 fp1 = SAFE_FOPEN(fname1, "r"); in check_file_content() 44 if (off1 && fseek(fp1, *off1, SEEK_SET)) in check_file_content() 52 ch1 = getc(fp1); in check_file_content() 57 SAFE_FCLOSE(fp1); in check_file_content()
|
/third_party/boost/libs/math/test/ |
D | test_ellint_d.hpp | 64 value_type(*fp1)(value_type) = ELLINT_D1_FUNCTION_TO_TEST; in do_test_ellint_d1() local 66 value_type (*fp1)(value_type) = boost::math::ellint_d<value_type>; in do_test_ellint_d1() local 68 value_type (*fp1)(value_type) = boost::math::ellint_d; in do_test_ellint_d1() local 72 bind_func<Real>(fp1, 0), in do_test_ellint_d1()
|
D | test_ellint_1.hpp | 65 value_type(*fp1)(value_type) = ELLINT_1C_FUNCTION_TO_TEST; in do_test_ellint_k() local 67 value_type (*fp1)(value_type) = boost::math::ellint_1<value_type>; in do_test_ellint_k() local 69 value_type (*fp1)(value_type) = boost::math::ellint_1; in do_test_ellint_k() local 73 bind_func<Real>(fp1, 0), in do_test_ellint_k()
|
D | test_ellint_2.hpp | 64 value_type(*fp1)(value_type) = ELLINT_2C_FUNCTION_TO_TEST; in do_test_ellint_e1() local 66 value_type (*fp1)(value_type) = boost::math::ellint_2<value_type>; in do_test_ellint_e1() local 68 value_type (*fp1)(value_type) = boost::math::ellint_2; in do_test_ellint_e1() local 72 bind_func<Real>(fp1, 0), in do_test_ellint_e1()
|
D | test_nc_beta.hpp | 75 value_type(*fp1)(value_type, value_type, value_type, value_type) = nc_beta_cdf; in do_test_nc_chi_squared() local 81 bind_func<Real>(fp1, 0, 1, 2, 3), in do_test_nc_chi_squared() 87 fp1 = nc_beta_ccdf; in do_test_nc_chi_squared() 90 bind_func<Real>(fp1, 0, 1, 2, 3), in do_test_nc_chi_squared()
|
D | test_nc_chi_squared.hpp | 297 value_type(*fp1)(value_type, value_type, value_type) = NC_CHI_SQUARED_CDF_FUNCTION_TO_TEST; in do_test_nc_chi_squared() local 299 value_type(*fp1)(value_type, value_type, value_type) = nccs_cdf; in do_test_nc_chi_squared() local 306 bind_func<Real>(fp1, 0, 1, 2), in do_test_nc_chi_squared() 313 fp1 = NC_CHI_SQUARED_CCDF_FUNCTION_TO_TEST; in do_test_nc_chi_squared() 315 fp1 = nccs_ccdf; in do_test_nc_chi_squared() 319 bind_func<Real>(fp1, 0, 1, 2), in do_test_nc_chi_squared()
|
D | test_nc_t.hpp | 327 value_type(*fp1)(value_type, value_type, value_type) = NC_T_CDF_FUNCTION_TO_TEST; in do_test_nc_t() local 329 value_type(*fp1)(value_type, value_type, value_type) = nct_cdf; in do_test_nc_t() local 336 bind_func<Real>(fp1, 0, 1, 2), in do_test_nc_t() 344 fp1 = NC_T_CCDF_FUNCTION_TO_TEST; in do_test_nc_t() 346 fp1 = nct_ccdf; in do_test_nc_t() 350 bind_func<Real>(fp1, 0, 1, 2), in do_test_nc_t()
|
/third_party/libwebsockets/plugins/ |
D | protocol_lws_server_status.c | 111 struct lws_ss_filepath *fp, *fp1, **fp_old; in callback_lws_server_status() local 183 fp1= fp->next; in callback_lws_server_status() 185 fp = fp1; in callback_lws_server_status()
|
/third_party/skia/gm/ |
D | texelsubset.cpp | 153 std::unique_ptr<GrFragmentProcessor> fp1; in onDraw() local 154 fp1 = GrTextureEffect::MakeSubset(view, in onDraw() 160 if (!fp1) { in onDraw() 168 std::move(fp1), in onDraw()
|
/third_party/typescript/tests/baselines/reference/ |
D | incompatibleTypes.js | 75 var fp1: () =>any = a => 0; function 122 var fp1 = function (a) { return 0; };
|
D | incompatibleTypes.symbols | 177 var fp1: () =>any = a => 0; 178 >fp1 : Symbol(fp1, Decl(incompatibleTypes.ts, 73, 3))
|
/third_party/python/Lib/ |
D | genericpath.py | 107 def sameopenfile(fp1, fp2): argument 109 s1 = os.fstat(fp1)
|
/third_party/boost/libs/math/example/ |
D | float_comparison_example.cpp | 306 float fp1 = 0.01000F; in main() 312 bool rs = strong(fp1, fp2); in main() 317 bool rw = weak(fp1, fp2); // in main()
|
/third_party/typescript/tests/cases/compiler/ |
D | incompatibleTypes.ts | 74 var fp1: () =>any = a => 0; variable
|