HomeSort by relevance Sort by last modified time
    Searched refs:ipart (Results 1 - 12 of 12) sorted by null

  /frameworks/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 124 int ipart = (int) lutpos; local
125 float weight = lutpos - ipart;
127 int i1 = ipart;
  /frameworks/base/libs/hwui/
Interpolator.cpp 140 float ipart, weight; local
141 weight = modff(lutpos, &ipart);
143 int i1 = (int) ipart;
147 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
148 i1, i2, input, lutpos, mSize, mValues.get(), ipart, weight);
  /prebuilts/go/darwin-x86/src/encoding/gob/
encgen.go 48 ipart := floatBits(float64(imag(x)))
50 state.encodeUint(ipart)`,
57 ipart := floatBits(imag(x))
59 state.encodeUint(ipart)`,
enc_helpers.go 94 ipart := floatBits(float64(imag(x)))
96 state.encodeUint(ipart)
119 ipart := floatBits(imag(x))
121 state.encodeUint(ipart)
encode.go 237 ipart := floatBits(imag(c))
240 state.encodeUint(ipart)
  /prebuilts/go/linux-x86/src/encoding/gob/
encgen.go 48 ipart := floatBits(float64(imag(x)))
50 state.encodeUint(ipart)`,
57 ipart := floatBits(imag(x))
59 state.encodeUint(ipart)`,
enc_helpers.go 94 ipart := floatBits(float64(imag(x)))
96 state.encodeUint(ipart)
119 ipart := floatBits(imag(x))
121 state.encodeUint(ipart)
encode.go 237 ipart := floatBits(imag(c))
240 state.encodeUint(ipart)
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 106 * Let ipart = int(x)
107 * Let fpart = x - ipart;
108 * So, exp2(x) = exp2(ipart) * exp2(fpart)
109 * Compute exp2(ipart) with i << ipart
115 int32_t ipart; local
125 ipart = (int32_t) x;
126 fpart = x - (float) ipart;
129 * epart.f = (float) (1 << ipart)
130 * but faster and without integer overflow for ipart > 3
    [all...]
  /external/skia/samplecode/
SamplePathText.cpp 381 const Sk4i ipart = SkNx_cast<int>(t); local
382 const Sk4f fpart = t - SkNx_cast<float>(ipart);
385 (ipart & (kTablePeriod-1)).store(indices);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 2601 LLVMValueRef ipart; local
3287 LLVMValueRef ipart = NULL; local
3607 LLVMValueRef ipart; local
3637 LLVMValueRef ipart; local
    [all...]
lp_bld_sample.c 634 /* ipart = ifloor(log2(rho)) */
637 /* fpart = rho / 2**ipart */
667 LLVMValueRef ipart; local
675 /* ipart = log2(x) + 0.5 = 0.5*(log2(x^2) + 1.0) */
676 ipart = lp_build_extract_exponent(bld, x, 1);
677 ipart = LLVMBuildAShr(builder, ipart, one, "");
679 return ipart;
    [all...]

Completed in 616 milliseconds