Searched refs:fA (Results 1 - 25 of 92) sorted by relevance

1234

/external/syslinux/gpxe/src/util/
H A Dsortobjdump.pl14 if ( /^\s+(\d+)\s+([\.\*]\S+)\s+[0-9a-fA-F]+\s+[0-9a-fA-F]/ ) {
20 } elsif ( /^([0-9a-fA-F]+)\s.*?\s([\.\*]\S+)\s+([0-9a-fA-F]+)\s+(\S+)/ ) {
/external/skia/tests/
H A DSkColor4fTest.cpp54 REPORTER_ASSERT(reporter, pm4.a() == c4.fA);
55 REPORTER_ASSERT(reporter, pm4.r() == c4.fA * c4.fR);
56 REPORTER_ASSERT(reporter, pm4.g() == c4.fA * c4.fG);
57 REPORTER_ASSERT(reporter, pm4.b() == c4.fA * c4.fB);
61 c4.fA = rand.nextUScalar1();
63 REPORTER_ASSERT(reporter, pm4.fVec[SK_A_INDEX] == c4.fA);
64 REPORTER_ASSERT(reporter, nearly_equal(pm4.r(), c4.fA * c4.fR));
65 REPORTER_ASSERT(reporter, nearly_equal(pm4.g(), c4.fA * c4.fG));
66 REPORTER_ASSERT(reporter, nearly_equal(pm4.b(), c4.fA * c4.fB));
H A DPathOpsThreadedCommon.h26 unsigned char fA; member in struct:PathOpsThreadState
57 fState.fA = a;
76 fState.fA = dirNo;
H A DFlattenableCustomFactory.cpp16 : fA(a)
23 buffer.writeUInt(fA);
31 uint32_t a() const { return fA; }
39 uint32_t fA; member in class:IntFlattenable
H A DPathOpsOpCubicThreadedTest.cpp28 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
35 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar(state.fC));
45 pathStr.appendf(" path.moveTo(%d,%d);\n", state.fA, state.fB);
54 state.fB, state.fA, state.fD, state.fC);
H A DPathOpsOpLoopThreadedTest.cpp42 SkPoint midA = { SkIntToScalar(a * state.fA + c * (6 - state.fA)) / 6,
43 SkIntToScalar(b * state.fA + d * (6 - state.fA)) / 6 };
H A DPathOpsOpRectThreadedTest.cpp33 pathA.addRect(SkIntToScalar(state.fA), SkIntToScalar(state.fA), SkIntToScalar(state.fB),
54 " SkPath::kCW_Direction);\n", state.fA, state.fA, state.fB, state.fB);
H A DPathOpsOpCircleThreadedTest.cpp25 pathA.addCircle(SkIntToScalar(state.fA), SkIntToScalar(state.fB), SkIntToScalar(state.fC),
38 pathStr.appendf(" path.addCircle(%d, %d, %d, %s);\n", state.fA, state.fB,
H A DPathOpsQuadLineIntersectionThreadedTest.cpp77 int ax = state.fA & 0x03;
78 int ay = state.fA >> 2;
H A DPathOpsSimplifyDegenerateThreadedTest.cpp14 int ax = state.fA & 0x03;
15 int ay = state.fA >> 2;
H A DPathOpsSimplifyQuadThreadedTest.cpp18 int ax = state.fA & 0x03;
19 int ay = state.fA >> 2;
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp18 int ax = state.fA & 0x03;
19 int ay = state.fA >> 2;
H A DPathOpsSimplifyTrianglesThreadedTest.cpp15 int ax = state.fA & 0x03;
16 int ay = state.fA >> 2;
/external/skia/src/pathops/
H A DSkLineParameters.h49 // FIXME: after switching to round sort, remove bumping fA
57 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a)
66 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a)
72 fA = pts[s].fY - pts[e].fY;
86 fA = pts[0].fY - pts[1].fY;
105 fA = DBL_EPSILON;
111 fA = pts[s].fY - pts[e].fY;
122 return fA * fA + fB * fB;
128 fA
176 double fA; member in class:SkLineParameters
[all...]
/external/clang/test/CodeGen/
H A Dinline2.c39 // CHECK-GNU89-LABEL: define i32 @fA()
40 inline int fA(void) { return 0; } function
60 // CHECK-C99-LABEL: define available_externally i32 @fA()
66 + fA() + fB();
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
H A DBracketFinder.java127 double fA = eval(func, xA);
130 fA < fB :
131 fA > fB) {
136 tmp = fA;
137 fA = fB;
150 double tmp2 = (xB - xC) * (fB - fA);
166 fA = fB;
201 fA = fB;
209 fLo = fA;
/external/skia/bench/
H A DRegionContainBench.cpp21 SkRegion fA, fB; member in class:RegionContainBench
42 fA.op(randrect(rand, i), SkRegion::kXOR_Op);
59 proc(fA, fB);
H A DRegionBench.cpp73 SkRegion fA, fB; member in class:RegionBench
96 fA.op(randrect(rand), SkRegion::kXOR_Op);
111 proc(fA, fB);
/external/skia/src/core/
H A DSkColorSpacePriv.h74 if (SkScalarIsNaN(coeffs.fA) || SkScalarIsNaN(coeffs.fB) ||
88 if (0.0f == coeffs.fA || 0.0f == coeffs.fG) {
104 if ((0.0f == coeffs.fA || 0.0f == coeffs.fG) && 0.0f == coeffs.fC) {
115 if (coeffs.fA < 0.0f || coeffs.fG < 0.0f) {
124 return transfer_fn_almost_equal(1.0f / 1.055f, coeffs.fA) &&
134 return transfer_fn_almost_equal(1.0f, coeffs.fA) &&
144 transfer_fn_almost_equal(1.0f, coeffs.fA) &&
160 coeffs->fA = 1.0f;
173 coeffs->fA = 1.0f / 1.055f;
185 coeffs->fA
[all...]
H A DSkGeometry.h276 : fA(A)
287 fA = P2 - times_2(P1) + fC;
296 return (fA * tt + fB) * tt + fC;
299 Sk2s fA; member in struct:__anon16949::SkQuadCoeff
313 fNumer.fA = p2 - times_2(p1w) + p0;
318 fDenom.fA = Sk2s(0) - fDenom.fB;
339 fA = P3 + three * (P1 - P2) - P0;
351 return ((fA * t + fB) * t + fC) * t + fD;
354 Sk2s fA; member in struct:__anon16949::SkCubicCoeff
/external/ipsec-tools/src/racoon/
H A Dprsa_tok.l52 hex [0-9a-fA-F]
63 0x[0-9a-fA-F]+ {
/external/valgrind/none/tests/ppc32/
H A Dround.c399 double qtr, half, fA, fB, fD; local
408 : "=f"(fD) : "f"(fA) , "f"(fB));
412 : "=f"(fD) : "f"(fA));
432 fA = s*whole;
436 fA = s*2*whole;
440 fA = 0.5;
444 fA = s*(4+q)*half;
517 round_mode_name[mode], result, flt_op_names[op], fA);
545 double fA, fB, fC, fD; local
582 : "=f"(fD) : "f"(fA) , "
857 double fA, fB, fC, fD; local
[all...]
/external/valgrind/none/tests/ppc64/
H A Dround.c399 double qtr, half, fA, fB, fD; local
408 : "=f"(fD) : "f"(fA) , "f"(fB));
412 : "=f"(fD) : "f"(fA));
432 fA = s*whole;
436 fA = s*2*whole;
440 fA = 0.5;
444 fA = s*(4+q)*half;
517 round_mode_name[mode], result, flt_op_names[op], fA);
545 double fA, fB, fC, fD; local
582 : "=f"(fD) : "f"(fA) , "
857 double fA, fB, fC, fD; local
[all...]
/external/skia/include/core/
H A DSkColor.h173 float fA; member in struct:SkColor4f
176 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB;
193 return Pin(fR, fG, fB, fA);
H A DSkColorSpace.h45 float fA; member in struct:SkColorSpaceTransferFn

Completed in 347 milliseconds

1234