HomeSort by relevance Sort by last modified time
    Searched refs:fx (Results 26 - 50 of 212) sorted by null

12 3 4 5 6 7 8 9

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
nodyn4.d 14 LOAD [0-9a-fx ]+ R E 0x2000
15 LOAD [0-9a-fx ]+ RW 0x2000
  /external/skia/tests/
ClampRangeTest.cpp 35 const SkGradFixed fx, SkGradFixed dx, int count) {
38 // If dx is large, fx will overflow if updated naively. So we use more bits.
39 int64_t bigfx = fx;
58 static void test_range(SkFixed fx, SkFixed dx, int count) {
59 const SkGradFixed gfx = SkFixedToGradFixed(fx);
91 SkFixed fx = rand.nextS() >> 1; local
94 SkFixed dx = (sx - fx) / count;
95 test_range(fx, dx, count);
102 SkFixed fx = rand.nextS();
105 test_range(fx, dx, count)
    [all...]
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 28 SkFixed fx; local
46 // now initialize fx
47 fx = mapper.fixedX();
55 unsigned subX = EXTRACT_LOW_BITS(fx, maxX);
56 unsigned x0 = TILEX_PROCF(fx, maxX);
57 unsigned x1 = TILEX_PROCF((fx + oneX), maxX);
67 fx += dx;
SkBitmapProcState_matrix.h 56 SkFractionalInt fx; local
64 // now initialize fx
65 fx = mapper.fractionalIntX();
69 const SkFixed fixedFx = SkFractionalIntToFixed(fx);
77 SkFixed fixedFx = SkFractionalIntToFixed(fx);
79 fx += dx;
96 SkFixed fx = mapper.fixedX(); local
106 *xy++ = PACK_FILTER_X_NAME(fx, maxX, oneX PREAMBLE_ARG_X);
107 fx += dx;
SkBitmapProcState.cpp 454 if (SkScalarAbs(pt.fX) > too_big || SkScalarAbs(pt.fY) > too_big) {
641 SkFractionalInt fx;
647 fx = mapper.fractionalIntX();
655 if ((uint64_t)SkFractionalIntToInt(fx) <= maxX &&
656 (uint64_t)SkFractionalIntToInt(fx + dx * (count - 1)) <= maxX)
660 SkPMColor src0 = src[SkFractionalIntToInt(fx)]; fx += dx;
661 SkPMColor src1 = src[SkFractionalIntToInt(fx)]; fx += dx;
662 SkPMColor src2 = src[SkFractionalIntToInt(fx)]; fx += dx
    [all...]
  /external/skia/src/shaders/gradients/
SkClampRange.h 32 * Iteration fixed fx by dx, clamping as you go to [0..kFracMax_SkGradFixed], this class
36 * range1: iterate as usual fx += dx
43 SkGradFixed fFx1; // initial fx value for the fCount1 range.
47 void init(SkGradFixed fx, SkGradFixed dx, int count, int v0, int v1);
59 void initFor1(SkGradFixed fx);
SkLinearGradient.cpp 33 matrix.setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
34 matrix.postTranslate(-pts[0].fX, -pts[0].fY);
178 unsigned fi = SkGradFixedToFixed(fx) >> SkGradientShaderBase::kCache32Shift; \
180 fx += dx; \
187 typedef void (*LinearShadeProc)(TileProc proc, SkGradFixed dx, SkGradFixed fx,
194 void shadeSpan_linear_vertical_lerp(TileProc proc, SkGradFixed dx, SkGradFixed fx,
201 unsigned fullIndex = proc(SkGradFixedToFixed(fx));
217 void shadeSpan_linear_clamp(TileProc proc, SkGradFixed dx, SkGradFixed fx,
222 range.init(fx, dx, count, 0, SkGradientShaderBase::kCache32Count - 1)
301 SkGradFixed fx = SkScalarPinToGradFixed(srcPt.fX), local
739 float fx = srcPt.x(); local
    [all...]
Sk4fLinearGradient.cpp 51 SkScalar pinFx<SkShader::kClamp_TileMode>(SkScalar fx) {
52 return fx;
56 SkScalar pinFx<SkShader::kRepeat_TileMode>(SkScalar fx) {
57 SkScalar f = SkScalarFraction(fx);
67 SkScalar pinFx<SkShader::kMirror_TileMode>(SkScalar fx) {
68 SkScalar f = SkScalarMod(fx, 2.0f);
103 SkLinearGradient::LinearGradient4fContext::findInterval(SkScalar fx) const {
104 SkASSERT(in_range(fx, fIntervals->front().fT0, fIntervals->back().fT1));
111 while (!in_range(fx, fCachedInterval->fT0, fCachedInterval->fT1)) {
127 SkASSERT(in_range(fx, i0->fT0, i1->fT1))
180 const SkScalar fx = pinFx<tileMode>(pt.x()); local
    [all...]
Sk4fLinearGradient.h 33 const Sk4fGradientInterval* findInterval(SkScalar fx) const;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterFxRepresentation.java 75 FilterFxRepresentation fx = (FilterFxRepresentation) representation; local
76 if (fx.mNameResource == mNameResource
77 && fx.mBitmapResource == mBitmapResource) {
  /external/eigen/Eigen/src/Core/arch/ZVector/
MathFunctions.h 49 Packet2d tmp, fx; local
55 fx = pmadd(p2d_cephes_LOG2EF, x, p2d_half);
57 fx = vec_floor(fx);
59 tmp = pmul(fx, p2d_cephes_exp_C1);
60 Packet2d z = pmul(fx, p2d_cephes_exp_C2);
80 emm0 = vec_ctsl(fx, 0);
  /external/libedit/src/
refresh.c 452 * the line. fx and sx is the number of characters inserted or deleted
457 re_clear_eol(EditLine *el, int fx, int sx, int diff)
460 ELRE_DEBUG(1, (__F, "re_clear_eol sx %d, fx %d, diff %d\n",
461 sx, fx, diff));
463 if (fx < 0)
464 fx = -fx;
467 if (fx > diff)
468 diff = fx;
506 int fx, sx local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-or1k.c 301 tc_gen_reloc (asection *sec, fixS *fx)
303 bfd_reloc_code_real_type code = fx->fx_r_type;
305 if (fx->fx_addsy != NULL
306 && strcmp (S_GET_NAME (fx->fx_addsy), GOT_NAME) == 0
314 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fx->fx_addsy);
315 reloc->address = fx->fx_frag->fr_address + fx->fx_where;
316 reloc->howto = bfd_reloc_type_lookup (stdoutput, fx->fx_r_type);
317 reloc->addend = fx->fx_offset;
321 return gas_cgen_tc_gen_reloc (sec, fx);
    [all...]
tc-d10v.c 608 write_long (unsigned long insn, Fixups *fx)
617 for (i = 0; i < fx->fc; i++)
619 if (fx->fix[i].reloc)
622 if (fx->fix[i].size == 2)
625 if (fx->fix[i].reloc == BFD_RELOC_D10V_18)
626 fx->fix[i].operand |= 4096;
630 fx->fix[i].size,
631 &(fx->fix[i].exp),
632 fx->fix[i].pcrel,
633 fx->fix[i].operand|2048)
    [all...]
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 31 float fx = centerX - eyeX; local
36 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
37 fx *= rlf;
50 float sy = fz * upX - fx * upZ;
51 float sz = fx * upY - fy * upX;
55 float uy = sz * fx - sx * fz;
56 float uz = sx * fy - sy * fx;
61 m[2] = -fx;
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 42 float fx = centerX - eyeX; local
47 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
48 fx *= rlf;
61 float sy = fz * upX - fx * upZ;
62 float sz = fx * upY - fy * upX;
66 float uy = sz * fx - sx * fz;
67 float uz = sx * fy - sy * fx;
72 m[2] = -fx;
  /external/pdfium/core/fpdfdoc/
csection.h 43 CPVT_WordPlace SearchWordPlace(FX_FLOAT fx,
45 CPVT_WordPlace SearchWordPlace(FX_FLOAT fx,
  /external/eigen/Eigen/src/Core/arch/AltiVec/
MathFunctions.h 160 Packet4f tmp, fx; local
167 fx = pmadd(x, p4f_cephes_LOG2EF, p4f_half);
169 fx = pfloor(fx);
171 tmp = pmul(fx, p4f_cephes_exp_C1);
172 Packet4f z = pmul(fx, p4f_cephes_exp_C2);
188 emm0 = vec_cts(fx, 0);
252 Packet2d tmp, fx; local
259 fx = pmadd(x, p2d_cephes_LOG2EF, p2d_half);
261 fx = pfloor(fx)
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 129 Packet4f tmp, fx; local
136 fx = pmadd(x, p4f_cephes_LOG2EF, p4f_half);
139 fx = _mm_floor_ps(fx);
141 emm0 = _mm_cvttps_epi32(fx);
144 Packet4f mask = _mm_cmpgt_ps(tmp, fx);
146 fx = psub(tmp, mask);
149 tmp = pmul(fx, p4f_cephes_exp_C1);
150 Packet4f z = pmul(fx, p4f_cephes_exp_C2);
166 emm0 = _mm_cvttps_epi32(fx);
198 Packet2d tmp, fx; local
    [all...]
  /frameworks/av/media/libstagefright/
XINGSeeker.cpp 52 float fx; local
54 fx = 0.0f;
56 fx = 256.0f;
70 fx = fa + (fb-fa)*(percent-a);
73 *pos = (int)((1.0f/256.0f)*fx*mSizeBytes) + mFirstFramePos;
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 40 const GLfloat fx = (GLfloat) ix; local
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane);
62 line->span.array->rgba[i][RCOMP] = solve_plane_chan(fx, fy, line->rPlane);
63 line->span.array->rgba[i][GCOMP] = solve_plane_chan(fx, fy, line->gPlane);
64 line->span.array->rgba[i][BCOMP] = solve_plane_chan(fx, fy, line->bPlane);
65 line->span.array->rgba[i][ACOMP] = solve_plane_chan(fx, fy, line->aPlane);
73 const GLfloat invQ = solve_plane_recip(fx, fy, line->attrPlane[attr][3]);
76 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invQ;
85 const GLfloat invW = solve_plane_recip(fx, fy, line->wPlane);
88 attribArray[i][c] = solve_plane(fx, fy, line->attrPlane[attr][c]) * invW
    [all...]
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 45 float fx = centerX - eyeX; local
50 float rlf = 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
51 fx *= rlf;
64 float sy = fz * upX - fx * upZ;
65 float sz = fx * upY - fy * upX;
69 float uy = sz * fx - sx * fz;
70 float uz = sx * fy - sy * fx;
75 m[2] = -fx;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtl.c 40 float ft, fx; local
92 fx = x;
93 GET_FLOAT_WORD(hx, fx);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapMesh.java 65 float fx = w * x / WIDTH; local
66 setXY(mVerts, index, fx, fy);
67 setXY(mOrig, index, fx, fy);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 364 float fx = viewport->scale[0] * -1.0f + viewport->translate[0]; local
378 "\ninitial %f,%f %fx%f\n",
379 fx,
407 fx = viewport->scale[0] * 1.0f + viewport->translate[0];
425 if (fx < 0) {
426 prescale.translate[0] += fx;
427 prescale.scale[0] *= fw / (fw + fx);
428 fw += fx;
429 fx = 0.0f;
444 if (fx + fw > fb_width)
    [all...]

Completed in 561 milliseconds

12 3 4 5 6 7 8 9