/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | FormattedValueFieldPositionIteratorImpl.java | 90 FieldPosition fp2 = attributes.get(j); in addOverlapSpans() local 91 if (fp1.getFieldAttribute() != fp2.getFieldAttribute()) { in addOverlapSpans() 97 s2a = Math.min(s2a, fp2.getBeginIndex()); in addOverlapSpans() 98 s2b = Math.max(s2b, fp2.getEndIndex()); in addOverlapSpans() 122 FieldPosition fp2 = attributes.get(i + 1); in sort() local 124 if (fp1.getBeginIndex() != fp2.getBeginIndex()) { in sort() 126 comparison = fp2.getBeginIndex() - fp1.getBeginIndex(); in sort() 127 } else if (fp1.getEndIndex() != fp2.getEndIndex()) { in sort() 129 comparison = fp1.getEndIndex() - fp2.getEndIndex(); in sort() 130 } else if (fp1.getFieldAttribute() != fp2.getFieldAttribute()) { in sort() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | FormattedValueFieldPositionIteratorImpl.java | 92 FieldPosition fp2 = attributes.get(j); in addOverlapSpans() local 93 if (fp1.getFieldAttribute() != fp2.getFieldAttribute()) { in addOverlapSpans() 99 s2a = Math.min(s2a, fp2.getBeginIndex()); in addOverlapSpans() 100 s2b = Math.max(s2b, fp2.getEndIndex()); in addOverlapSpans() 124 FieldPosition fp2 = attributes.get(i + 1); 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 …]
|
/external/ltp/testcases/misc/math/float/power/ |
D | genpow.c | 87 int fp, fp2; in create_Data_file() local 102 fp2 = open(F_name_pow, O_RDWR | O_CREAT | O_TRUNC, 0777); in create_Data_file() 103 if (!fp || !fp2) { in create_Data_file() 106 close(fp2); in create_Data_file() 111 write(fp2, &tabD_pow[i], sizeof(double)); in create_Data_file() 114 close(fp2); in create_Data_file()
|
/external/skia/tests/sksl/dslfp/ |
D | GrDSLFPTest_Sample.h | 17 …ocessor> Make(std::unique_ptr<GrFragmentProcessor> fp1, std::unique_ptr<GrFragmentProcessor> fp2) { in Make() argument 18 …eturn std::unique_ptr<GrFragmentProcessor>(new GrDSLFPTest_Sample(std::move(fp1), std::move(fp2))); in Make() 24 …SLFPTest_Sample(std::unique_ptr<GrFragmentProcessor> fp1, std::unique_ptr<GrFragmentProcessor> fp2) in GrDSLFPTest_Sample() argument 27 this->registerChild(std::move(fp2), SkSL::SampleUsage::Explicit()); in GrDSLFPTest_Sample()
|
/external/skia/resources/sksl/dslfp/ |
D | GrDSLFPTest_Sample.fp | 1 in fragmentProcessor fp1, fp2; 8 sample(fp2, coords) * 10 sample(fp2, coords, inColor);
|
/external/llvm-project/lld/test/COFF/ |
D | gfids-corrupt.s | 54 .section .data,"dw",one_only,fp2 55 .globl fp2 symbol 56 fp2: label 63 .section .gfids$y,"dr",associative,fp2 72 callq *fp2(%rip)
|
D | gfids-icf.s | 10 # int (*fp2)() = &icf2; 13 # return fp2(); 73 .globl fp2 symbol 74 fp2: label 86 callq *fp2(%rip)
|
D | gfids-gc.s | 15 # int (*fp2)() = &g; 44 # Expect 2 entries: main and f. fp2 was discarded, so g was only used as a 115 .section .data,"dw",one_only,fp2 116 .globl fp2 symbol 117 fp2: label 120 .section .gfids$y,"dr",associative,fp2
|
/external/llvm-project/clang/test/CodeGen/ |
D | ppc64le-f128Aggregates.c | 7 struct fp2 { __float128 f[2]; }; struct 25 struct fp2 func_f2(struct fp2 x) { return x; } in func_f2() 66 struct fp2 global_f2;
|
D | exprs.c | 57 void f0(void (*fp)(void), void (*fp2)(void)) { in f0() 58 int x = fp - fp2; in f0()
|
/external/libxaac/decoder/armv7/ |
D | ixheaacd_qmf_dec_armv7.c | 100 WORD16 *fp1, *fp2, *tmp; in ixheaacd_cplx_anal_qmffilt() local 148 fp2 = qmf_bank->anal_filter_states + NO_ANALYSIS_CHANNELS; in ixheaacd_cplx_anal_qmffilt() 154 fp2 = qmf_bank->fp2_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() 180 fp1 = fp2; in ixheaacd_cplx_anal_qmffilt() 181 fp2 = tmp; in ixheaacd_cplx_anal_qmffilt() 225 qmf_bank->fp2_anal = fp2; in ixheaacd_cplx_anal_qmffilt()
|
/external/ltp/testcases/kernel/syscalls/copy_file_range/ |
D | copy_file_range01.c | 39 FILE *fp1, *fp2; in check_file_content() local 47 fp2 = SAFE_FOPEN(fname2, "r"); in check_file_content() 48 if (off2 && fseek(fp2, *off2, SEEK_SET)) in check_file_content() 53 ch2 = getc(fp2); in check_file_content() 58 SAFE_FCLOSE(fp2); in check_file_content()
|
/external/llvm-project/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-… 21 ; %fp2 = MUL_Fp80m32 %fp1, %rip, 1, %reg0, %const.0, %reg0; mem:LD4[ConstantPool] 22 ; %fp0 = MOV_Fp8080 %fp2 25 ; ST_FpP80m %stack.5, 1, %reg0, 0, %reg0, killed %fp2; mem:ST10[FixedStack5](align=4) 26 ; FP_REG_KILL implicit-def %fp0, implicit-def %fp1, implicit-def %fp2, implicit-def %fp3, implicit-…
|
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/ |
D | p2.cpp | 39 typedef S (*fp2)(); typedef 44 typedef fp2 fp2_alias; 48 fp2 two; in f()
|
/external/skqp/src/shaders/ |
D | SkColorFilterShader.cpp | 64 auto fp2 = fFilter->asFragmentProcessor(args.fContext, *args.fDstColorSpaceInfo); in asFragmentProcessor() local 65 if (!fp2) { in asFragmentProcessor() 69 std::unique_ptr<GrFragmentProcessor> fpSeries[] = { std::move(fp1), std::move(fp2) }; in asFragmentProcessor()
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p6.cpp | 5 void (*fp2)(int) = [](int x) { }; in test_conversion() local 16 void (*fp2)(int) = [&](int x) { }; // expected-error{{no viable conversion}} in test_no_conversion() local
|
/external/clang/test/CodeGenCXX/ |
D | convert-to-fptr.cpp | 14 typedef int (*fp2)(float); typedef 18 operator fp2() { return f2; } in operator fp2()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | convert-to-fptr.cpp | 14 typedef int (*fp2)(float); typedef 18 operator fp2() { return f2; } in operator fp2()
|
D | lambda-conversion-op-cc.cpp | 14 double (*__attribute__((thiscall)) fp2)(int, float, double) = lambda; in usage() local 21 fp2(0, 1.1, 2.2); in usage()
|
/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p6.cpp | 8 void (*fp2)(int) = [](int x) { }; in test_conversion() local 28 void (*fp2)(int) = [&](int x) { }; // expected-error{{no viable conversion}} in test_no_conversion() local
|
/external/tensorflow/tensorflow/core/platform/ |
D | numbers_test.cc | 34 uint64 fp2; in TEST() local 35 EXPECT_TRUE(StringToFp(s, &fp2)); in TEST() 36 EXPECT_EQ(fp, fp2); in TEST() 51 uint64 fp2; in TEST() local 52 EXPECT_TRUE(HexStringToUint64(s, &fp2)); in TEST() 53 EXPECT_EQ(fp, fp2) << s; in TEST()
|
D | fingerprint.h | 68 inline uint64 FingerprintCat64(const uint64 fp1, const uint64 fp2) { in FingerprintCat64() argument 71 result ^= internal::ShiftMix(fp2 * kMul) * kMul; in FingerprintCat64()
|
/external/clang/test/SemaCXX/ |
D | cxx1y-generic-lambdas.cpp | 181 int (*fp2)(int) = [](auto b) -> int { return b; }; in test() local 188 fp2(3); in test() 202 int (*fp2)(int, char, double) = [](auto ... a) { vfun(a...); return 4; }; in variadic_test() local 213 int (&fp2)(int) = [](auto a) { return a; }; // expected-error{{non-const lvalue}} in test() local 617 void (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...); in fooV() local 639 decltype(L(L, ts...)(L, ts...)) (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...); in fooV() local 640 fp2 = fp(L, ts...); in fooV() 641 void (*fp3)(char) = fp2(L, ts...); in fooV()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | cxx1y-generic-lambdas.cpp | 185 int (*fp2)(int) = [](auto b) -> int { return b; }; in test() local 192 fp2(3); in test() 206 int (*fp2)(int, char, double) = [](auto ... a) { vfun(a...); return 4; }; in variadic_test() local 217 int (&fp2)(int) = [](auto a) { return a; }; // expected-error{{non-const lvalue}} in test() local 631 void (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...); in fooV() local 653 decltype(L(L, ts...)(L, ts...)) (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...); in fooV() local 654 fp2 = fp(L, ts...); in fooV() 655 void (*fp3)(char) = fp2(L, ts...); in fooV()
|
/external/clang/test/CodeGen/ |
D | exprs.c | 57 void f0(void (*fp)(void), void (*fp2)(void)) { in f0() 58 int x = fp - fp2; in f0()
|