HomeSort by relevance Sort by last modified time
    Searched defs:cx (Results 26 - 50 of 324) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri_tmp.h 119 int cx[NR_PLANES]; local
126 cx[j] = (c[j]
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
222 int cx[NR_PLANES]; local
225 cx[j] = (c[j]
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
315 const int cx = (plane[j].c - 1 local
319 mask &= ~sign_bits4(cstep4[j], cx);
346 const int cx = (plane[j].c local
354 __m128i cstep0 = _mm_setr_epi32(cx, cx + dcdx, cx + dcdx*2, cx + dcdx*3)
    [all...]
  /external/openssh/openbsd-compat/
port-linux.c 182 char *oldctx, *newctx, *cx; local
192 if ((cx = index(oldctx, ':')) == NULL || (cx = index(cx + 1, ':')) ==
202 if (strncmp(cx, SSH_SELINUX_UNCONFINED_TYPE,
208 len = cx - oldctx + 1;
211 if ((cx = index(cx + 1, ':')))
212 strlcat(newctx, cx, newlen);
  /external/skia/fuzz/
FuzzGradients.cpp 218 SkScalar cx, cy; local
220 fuzz->next(&cx, &cy, &useLocalMatrix, &useGlobalMatrix);
234 p.setShader(SkGradientShader::MakeSweep(cx, cy, colors.data(),
237 p.setShader(SkGradientShader::MakeSweep(cx, cy, colors.data(),
  /external/skia/src/pathops/
SkPathOpsConic.cpp 142 double cx, cy, cz; local
144 cx = fPts[2].fX;
148 cx = conic_eval_numerator(&fPts[0].fX, fWeight, t2);
152 cx = fPts[0].fX;
156 double bx = 2 * dx - (ax + cx) / 2;
159 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}
SkReduceOrder.cpp 208 double cx = cubic[index].fX; local
210 double denom = SkTMax(fabs(cx), SkTMax(fabs(cy),
218 if (approximately_equal_half(cx * inv, cubic[minX].fX * inv)) {
  /external/skia/tests/
PathOpsQuadLineIntersectionThreadedTest.cpp 81 int cx = state.fC & 0x03; local
84 {(double) cx, (double) cy}}};
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicYuvToRGB.cpp 153 int cx = (x1 >> 1) * cstep; local
154 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
187 int cx = (x1 >> 1) * cstep; local
188 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
191 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dsquery.h 47 INT cx; member in struct:__anon51294
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 
  /development/ndk/platforms/android-21/arch-x86/include/asm/
sigcontext32.h 80 unsigned int cx; member in struct:sigcontext_ia32
  /development/ndk/platforms/android-21/arch-x86_64/include/asm/
sigcontext32.h 80 unsigned int cx; member in struct:sigcontext_ia32
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 106 int cx = w / 2; local
109 canvas.translate(cx, cy);
SensorTest.java 189 int cx = w / 2; local
192 canvas.translate(cx, cy);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DraggableDot.java 149 final float cx = wf/2; local
154 canvas.drawCircle(cx, cy, rad, mPaint);
158 cx, cy + mLegendPaint.getFontSpacing()/2,
168 canvas.drawCircle(cx, cy, rad, mGlow);
170 canvas.drawCircle(cx, cy, rad, mGlow);
  /external/clang/test/OpenMP/
atomic_capture_codegen.cpp 10 char cv, cx; variable
89 cv = ++cx;
393 {cx = cx >> ucv; cv = cx;}
    [all...]
atomic_read_codegen.c 10 char cv, cx; variable
88 cv = cx;
170 ucv = cx;
atomic_update_codegen.cpp 10 char cv, cx; variable
89 ++cx;
355 cx = cx >> ucv;
    [all...]
atomic_write_codegen.c 10 char cv, cx; variable
88 cx = cv;
187 cx = ucv;
  /external/clang/test/SemaCXX/
warn-unused-filescoped.cpp 83 const unsigned int cx = 0; // expected-warning{{unused}} variable
  /external/icu/icu4c/source/common/
ucnv_ext.cpp 123 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState,
134 if(cx==NULL || cx[UCNV_EXT_TO_U_LENGTH]<=0) {
139 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t);
236 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx,
253 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, UChar)+
278 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx,
289 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv),
299 ucnv_extWriteToU(cnv, cx,
332 ucnv_extSimpleMatchToU(const int32_t *cx,
1034 const int32_t *cx; local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 481 const int cx = 42; local
484 obj(cx);
488 obj(std::move(cx));
495 const int cx = 42; local
498 std::move(obj)(cx);
502 std::move(obj)(std::move(cx));
509 const int cx = 42; local
512 c_obj(cx);
516 c_obj(std::move(cx));
523 const int cx = 42 local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.c 233 GLint cx, cy, cw, ch; local
251 cx = fb->_Xmin;
288 x1 = cx + irb->draw_x;
290 x2 = cx + cw + irb->draw_x;
  /external/mesa3d/src/mesa/math/
m_debug_clip.c 82 const GLfloat cx = from[0]; local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT;
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT;
106 vProj[i][0] = cx * oow;
139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
141 if ( cx > 1.0 ) mask |= CLIP_RIGHT_BIT;
142 else if ( cx < -1.0 ) mask |= CLIP_LEFT_BIT;
177 const GLfloat cx = from[0], cy = from[1]; local
179 if ( cx > 1.0 ) mask |= CLIP_RIGHT_BIT;
180 else if ( cx < -1.0 ) mask |= CLIP_LEFT_BIT
    [all...]
  /external/pdfium/xfa/fde/
cfde_path.cpp 43 FX_FLOAT cx = rect.left + rx; local
63 MoveTo(CFX_PointF(cx + rx * cos_alpha, cy + ry * sin_alpha));
65 BezierTo(CFX_PointF(cx + rx * (cos_alpha - bcp * sin_alpha),
67 CFX_PointF(cx + rx * (cos_beta + bcp * sin_beta),
69 CFX_PointF(cx + rx * cos_beta, cy + ry * sin_beta));
  /external/skia/bench/
DashBench.cpp 326 SkScalar cx = 640 / 2; // center X local
335 matrix.setRotate(90, cx, cy);
338 matrix.setRotate(45, cx, cy);

Completed in 926 milliseconds

12 3 4 5 6 7 8 91011>>