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

12 3 4 5 6

  /external/e2fsprogs/contrib/
e2croncheck 35 nice logsave -as $TMPFILE e2fsck -fy $OPTS "/dev/${VG}/${VOLUME}-snap" ; then
  /external/e2fsprogs/tests/f_boundscheck/
script 3 FSCK_OPT=-fy
  /external/e2fsprogs/tests/f_itable_collision/
script 7 FSCK_OPT=-fy
  /external/e2fsprogs/tests/f_super_bad_csum/
script 3 FSCK_OPT=-fy
  /external/e2fsprogs/tests/j_recover_csum2_32bit/
script 3 FSCK_OPT=-fy
  /external/e2fsprogs/tests/j_recover_csum2_64bit/
script 3 FSCK_OPT=-fy
  /external/skia/src/core/
SkScan_Antihair.cpp 99 virtual SkFixed drawCap(int x, SkFixed fy, SkFixed slope, int mod64) = 0;
100 virtual SkFixed drawLine(int x, int stopx, SkFixed fy, SkFixed slope) = 0;
108 SkFixed drawCap(int x, SkFixed fy, SkFixed slope, int mod64) override {
109 fy += SK_Fixed1/2;
111 int y = fy >> 16;
112 uint8_t a = (uint8_t)(fy >> 8);
126 return fy - SK_Fixed1/2;
129 virtual SkFixed drawLine(int x, int stopx, SkFixed fy,
133 fy += SK_Fixed1/2;
135 int y = fy >> 16
    [all...]
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 140 float fy = centerY - eyeY; local
144 float rlf = 1.0f / (float) sqrt(fx * fx + fy * fy + fz * fz);
146 fy *= rlf;
150 float sx = fy * upZ - fz * upY;
152 float sz = fx * upY - fy * upX;
161 float ux = sy * fz - sz * fy;
163 float uz = sx * fy - sy * fx;
173 d[6] = -fy;
  /external/skia/tests/
PathOpsSimplifyQuadThreadedTest.cpp 31 int fy = f >> 2; local
46 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
59 pathStr.appendf(" path.lineTo(%d, %d);\n", fx, fy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 31 int fy = f >> 2; local
46 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
60 pathStr.appendf(" path.lineTo(%d, %d);\n", fx, fy);
  /external/e2fsprogs/tests/f_uninit_cat/
script 4 FSCK_OPT=-fy
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 57 const float fy = (float) iy; local
60 const float z0 = quads[0]->posCoef->a0[2] + dzdx * fx + dzdy * fy;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 116 FILE* fy; local
130 fy = fopen("bit_rate.dat", "w");
131 fclose(fy);
132 fy = fopen("bytes_frames.dat", "w");
133 fclose(fy);
597 fy = fopen("bit_rate.dat", "a");
598 fprintf(fy, "Frame %i = %0.14f\n", framecnt, kbps);
599 fclose(fy);
  /external/skia/src/jumper/
SkJumper.h 70 float fy[SkJumper_kMaxStride]; member in struct:SkJumper_SamplerCtx
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 278 float fy = -1.0f + 2.0f * ((float)row + 0.5f) / (float)numRows; local
281 m_positions.push_back(fy);
314 float fy = centerY + 0.9f * deFloatSin((float)i*2.0f*DE_PI / (float)numVertices) / (float)numRows; local
317 m_positions.push_back(fy);
345 float fy = -0.9f + 1.8f * ((float)stripNdx + (i%2 == 0 ? 0.0f : 0.8f)) / numStrips; local
348 m_positions.push_back(fy);
386 float fy = centerY + 0.9f * deFloatSin((float)i*2.0f*DE_PI / (float)numArcVertices) / (float)numRows; local
389 m_positions.push_back(fy);
417 float fy = -0.9f + 1.8f * ((float)rowNdx + (i%3 == 0 ? 0.0f : 0.8f)) / numRows; local
420 m_positions.push_back(fy);
    [all...]
  /external/freetype/src/autofit/
afhints.c 354 point->fy,
850 point->fy = (FT_Short)vec->y;
855 end->fy = (FT_Short)outline->points[endpoint].y;
870 out_y = point->fy - prev->fy;
943 out_y = point->fy - prev->fy;
992 out_y += next->fy - point->fy;
1051 in_y = point->fy - prev_v->fy
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 53 float fx = intrinsic_matrix[0], fy = intrinsic_matrix[4]; local
54 float ifx = 1.f/fx, ify = 1.f/fy;
70 float _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
106 float fx, float fy, float cx, float cy, float k1, float k2, uchar *pBuffer );
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
231 fx = a[0]; fy = a[4];
232 ifx = 1.f/fx; ify = 1.f/fy;
249 double _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
277 double fx, fy, u0, v0, k1, k2, k3, p1, p2; local
341 fx = a[0]; fy = a[4]
379 double A[3][3], RR[3][3], k[5]={0,0,0,0,0}, fx, fy, ifx, ify, cx, cy; local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 342 cmsFloat32Number fx, fy, local
352 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
370 dxy = LERP(fy, dx0, dx1);
392 cmsS15Fixed16Number fx, fy; local
407 fy = _cmsToFixedDomain((int) Input[1] * p -> Domain[1]);
408 y0 = FIXED_TO_INT(fy);
409 ry = FIXED_REST_TO_INT(fy);
454 cmsFloat32Number fx, fy, fz, local
468 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
498 dxy0 = LERP(fy, dx00, dx10)
523 cmsS15Fixed16Number fx, fy, fz; local
698 cmsS15Fixed16Number fx, fy, fz; local
835 cmsS15Fixed16Number fx, fy, fz; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_texgen.c 109 GLfloat u[3], two_nu, fx, fy, fz; local
114 fy = f[i][1] = u[1] - norm[1] * two_nu;
116 m[i] = fx * fx + fy * fy + (fz + 1.0F) * (fz + 1.0F);
137 GLfloat u[3], two_nu, fx, fy, fz; local
143 fy = f[i][1] = u[1] - norm[1] * two_nu;
145 m[i] = fx * fx + fy * fy + (fz + 1.0F) * (fz + 1.0F);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 77 FILE* fy; local
107 fy = fopen("bit_rate.dat", "w");
108 fclose(fy);
109 fy = fopen("bytes_frames.dat", "w");
110 fclose(fy);
891 fy = fopen("bit_rate.dat", "a");
892 fprintf(fy, "Frame %i = %0.14f\n", framecnt, kbps);
893 fclose(fy);
  /external/clang/test/SemaTemplate/
instantiate-static-var.cpp 26 Y<float> fy; // expected-note{{in instantiation of template class 'Y<float>' requested here}} variable
  /external/skia/experimental/docs/
interpolatorFunctions.js 35 var fy = interp_cubic_coords(y1, y2, y3, y4, (t1+t2*2)/3);
41 var ny = fy * 27 - ay - dy * 8;
  /external/pdfium/fpdfsdk/pdfwindow/
PWL_Icon.cpp 33 FX_FLOAT fy = 0.0f; local
34 GetImageOffset(fx, fy);
43 << " " << rcPlate.bottom + fy << " cm\n";
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator.c 52 static __inline void Intrp1DQ8(int32_t *x, int32_t *fx, int32_t *y, int32_t *fy) {
79 /* The following code calculates fy in three steps */
80 /* fy = 0.5 * t * (t-1) * fx[0] + (1-t*t) * fx[1] + 0.5 * t * (t+1) * fx[2]; */
87 *fy = WEBRTC_SPL_MUL_16_32_RSFT15(tmp16, fx[0]); /* (Q14 * Q8 >>15)/2 = Q8 */
91 *fy += WEBRTC_SPL_MUL_16_32_RSFT14(tmp16, fx[1]);/* Q14 * Q8 >> 14 = Q8 */
95 *fy += WEBRTC_SPL_MUL_16_32_RSFT15(tmp16, fx[2]);/* (Q14 * Q8 >>15)/2 = Q8 */
98 *fy= fx[1];
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_tritmp.h 135 GLfloat fy = VERT_Y(v[1]) - VERT_Y(v[2]); local
136 GLfloat cc = ex*fy - ey*fx;
234 GLfloat a = ey*fz - ez*fy;
360 GLfloat fy = VERT_Y(v[3]) - VERT_Y(v[1]); local
361 GLfloat cc = ex*fy - ey*fx;
466 GLfloat a = ey*fz - ez*fy;

Completed in 1141 milliseconds

12 3 4 5 6