HomeSort by relevance Sort by last modified time
    Searched defs:fract (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/skia/src/core/
SkScalar.cpp 33 SkScalar fract = (searchKey - leftKey) / (rightKey - leftKey); local
34 return SkScalarInterp(values[right-1], values[right], fract);
  /external/skqp/src/core/
SkScalar.cpp 33 SkScalar fract = (searchKey - leftKey) / (rightKey - leftKey); local
34 return SkScalarInterp(values[right-1], values[right], fract);
  /device/google/contexthub/firmware/external/arm/
arm_sin_cos_f32.c 178 * -# Compute the fractional portion (fract) of the table index.
191 * wa=-(1/6)*fract.^3 + (1/2)*fract.^2 - (1/3)*fract;
192 * wb=(1/2)*fract.^3 - fract.^2 - (1/2)*fract + 1;
193 * wc=-(1/2)*fract.^3+(1/2)*fract.^2+fract;
212 float32_t sinVal, fract, in; \/* Temporary variables for input, output *\/ local
301 float32_t cosVal, fract, in; \/* Temporary variables for input, output *\/ local
    [all...]
  /external/dng_sdk/source/
dng_1d_table.h 92 real32 fract = y - z; local
94 return fTable [index ] * (1.0f - fract) +
95 fTable [index + 1] * ( fract);
dng_1d_table.cpp 168 real64 fract = 0.0; local
173 table16 [j] = (uint16) (base + slope * fract);
175 fract += step;
177 if (fract > 1.0)
181 fract -= 1.0;
dng_render.cpp 407 real32 fract = y - (real32) index; local
409 return kTable [index ] * (1.0f - fract) +
410 kTable [index + 1] * ( fract);
687 real32 fract = y - (real32) index; local
689 return kTable [index ] * (1.0f - fract) +
690 kTable [index + 1] * ( fract);
    [all...]
dng_resample.cpp 221 real64 fract = sample * (1.0 / (real64) kResampleSubsampleCount); local
236 real64 x = (k - fract) * scale;
277 w16 [fRadius - (fract >= 0.5 ? 0 : 1)] += (int16) (16384 - t16);
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 30 unsigned int rate,fract; local
38 power = fract = 0;
41 fract = fract*10+*end-48;
54 while (power && fract)
56 fract /= 10;
60 fract *= 10;
63 rate += fract;
  /external/deqp/framework/delibs/debase/
deMath.c 117 double fract = frexp(x, &tmpExp); local
119 return fract * 2.0;
132 double fract = modf(a, &integer); local
133 if (fabs(fract) == 0.5)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 193 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale)); local
196 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
199 if ((floorBigInt.signum() == -1) && (!(fract.equals(ECConstants.ZERO))))
206 String fractStr = fract.toString(2);
  /external/deqp/framework/common/
tcuVectorUtil.hpp 68 inline float fract (float f) { return f - deFloatFloor(f); } function in namespace:tcu
455 TCU_DECLARE_VECTOR_UNARY_FUNC(fract, deFloatFrac)
  /external/libhevc/common/
ihevc_chroma_intra_pred_filters.c 1140 WORD32 inv_ang, inv_ang_sum, pos, fract; local
1246 WORD32 pos, fract; local
    [all...]
ihevc_intra_pred_filters.c 1283 WORD32 pos, fract; local
1364 WORD32 pos, fract; local
1467 WORD32 inv_ang, inv_ang_sum, pos, fract; local
1563 WORD32 two_nt, pos, fract; local
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_double_ops.c 395 /* If fract(src) == 0.5, then we will have to decide the rounding direction.
415 * If fract(src) != 0.5, then we round as floor(src + 0.5)
417 * If fract(src) == 0.5, then we have to check the modulo:
428 nir_ssa_def *fract = nir_ffract(b, src); local
430 nir_fne(b, fract, nir_imm_double(b, 0.5)),
  /toolchain/binutils/binutils-2.27/gprof/
symtab.h 85 double fract; /* What % of time propagates. */
84 double fract; \/* What % of time propagates. *\/ member in struct:sym::__anon4499::__anon4500
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralSamples.java 212 Integer fract = getDifferentCategory(ints, keyword); local
213 if (fract >= TENS[LIMIT_FRACTION_SAMPLES-1]) { // make sure that we always get the value
214 toAddTo.add(new FixedDecimal(base + "." + fract));
218 // with visible fractions = 3, and fract = 1, then we should get x.10, 0.01
219 // with visible fractions = 3, and fract = 15, then we should get x.15, x.15
220 if (fract >= TENS[i]) {
223 toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralSamples.java 210 Integer fract = getDifferentCategory(ints, keyword); local
211 if (fract >= TENS[LIMIT_FRACTION_SAMPLES-1]) { // make sure that we always get the value
212 toAddTo.add(new FixedDecimal(base + "." + fract));
216 // with visible fractions = 3, and fract = 1, then we should get x.10, 0.01
217 // with visible fractions = 3, and fract = 15, then we should get x.15, x.15
218 if (fract >= TENS[i]) {
221 toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions));
  /packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/dynamicui/
ColorExtractionAlgorithm.java 169 mTmpHSL[0] = fract(h[fitIndex]) * 360.0f;
256 if (candidate.maxHue > 1.0f && h >= 0.0f && h <= fract(candidate.maxHue)) {
261 if (candidate.minHue < 0.0f && h >= fract(candidate.minHue) && h <= 1.0f) {
272 } else if (candidate.maxHue > 1.0f && h >= fract(candidate.maxHue)
273 && h - fract(candidate.maxHue) < error) {
275 error = h - fract(candidate.maxHue);
276 } else if (candidate.minHue < 0.0f && h <= fract(candidate.minHue)
277 && fract(candidate.minHue) - h < error) {
279 error = fract(candidate.minHue) - h;
286 private static float fract(float v) method in class:ColorExtractionAlgorithm
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro

Completed in 607 milliseconds

1 2 3