Searched refs:xPos (Results 1 - 25 of 25) sorted by relevance

/external/v8/test/mjsunit/regress/
H A Dregress-201590.js43 var xPos = ((xOffset) * gdpRatio) + this.ORIGIN.x * this.scale -
47 xPos = xPos - Math.round(((tileWidth) * gdpRatio)) +
50 x: Math.floor(xPos),
/external/pdfium/fpdfsdk/include/fpdfxfa/
H A Dfpdfxfa_page.h47 int xPos,
/external/pdfium/fpdfsdk/src/fpdfxfa/
H A Dfpdfxfa_page.cpp227 int xPos,
242 rect.Set(xPos, yPos, xSize, ySize);
249 m_pPDFPage->GetDisplayMatrix(matrix, xPos, yPos, xSize, ySize, iRotate);
226 GetDisplayMatrix(CFX_Matrix& matrix, int xPos, int yPos, int xSize, int ySize, int iRotate) const argument
/external/skia/gm/
H A Dpathopsinverse.cpp84 int xPos = 150; variable
89 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
94 xPos += 150;
H A Dmultipicturedraw.cpp65 SkScalar xPos, yPos = 0; local
68 xPos = 0;
72 canvas->translate(xPos, yPos + ((x % 2) ? kRoot3Over2 * kHexSide : 0));
77 xPos += 1.5f * kHexSide;
116 SkScalar xPos = 0.0f, yPos = 0.0f; local
119 xPos = 0;
121 for (int x = 0; xPos < kBig; ++x) {
123 canvas->translate(xPos, yPos + ((x % 2) ? kRoot3Over2 * kHexSide : 0));
131 xPos += 1.5f * kHexSide;
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core_mips.c333 int xPos = (i + x_fft_buf_block_pos) * PART_LEN1; local
337 xPos -= num_partitions * (PART_LEN1);
341 float* aRe = x_fft_buf[0] + xPos;
342 float* aIm = x_fft_buf[1] + xPos;
451 int xPos = (i + x_fft_buf_block_pos)*(PART_LEN1); local
455 xPos -= num_partitions * PART_LEN1;
459 float* aRe = x_fft_buf[0] + xPos;
460 float* aIm = x_fft_buf[1] + xPos;
H A Daec_core_neon.c46 int xPos = (i + x_fft_buf_block_pos) * PART_LEN1; local
50 xPos -= num_partitions * PART_LEN1;
55 const float32x4_t x_fft_buf_re = vld1q_f32(&x_fft_buf[0][xPos + j]);
56 const float32x4_t x_fft_buf_im = vld1q_f32(&x_fft_buf[1][xPos + j]);
72 y_fft[0][j] += MulRe(x_fft_buf[0][xPos + j],
73 x_fft_buf[1][xPos + j],
76 y_fft[1][j] += MulIm(x_fft_buf[0][xPos + j],
77 x_fft_buf[1][xPos + j],
198 int xPos = (i + x_fft_buf_block_pos) * PART_LEN1; local
203 xPos
[all...]
H A Daec_core_sse2.c42 int xPos = (i + x_fft_buf_block_pos) * PART_LEN1; local
46 xPos -= num_partitions * (PART_LEN1);
51 const __m128 x_fft_buf_re = _mm_loadu_ps(&x_fft_buf[0][xPos + j]);
52 const __m128 x_fft_buf_im = _mm_loadu_ps(&x_fft_buf[1][xPos + j]);
70 y_fft[0][j] += MulRe(x_fft_buf[0][xPos + j],
71 x_fft_buf[1][xPos + j],
74 y_fft[1][j] += MulIm(x_fft_buf[0][xPos + j],
75 x_fft_buf[1][xPos + j],
160 int xPos = (i + x_fft_buf_block_pos) * (PART_LEN1); local
164 xPos
[all...]
H A Daec_core.c165 int xPos = (i + x_fft_buf_block_pos) * PART_LEN1; local
169 xPos -= num_partitions * (PART_LEN1);
173 y_fft[0][j] += MulRe(x_fft_buf[0][xPos + j],
174 x_fft_buf[1][xPos + j],
177 y_fft[1][j] += MulIm(x_fft_buf[0][xPos + j],
178 x_fft_buf[1][xPos + j],
223 int xPos = (i + x_fft_buf_block_pos) * (PART_LEN1); local
227 xPos -= num_partitions * PART_LEN1;
234 fft[2 * j] = MulRe(x_fft_buf[0][xPos + j],
235 -x_fft_buf[1][xPos
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp955 int xPos,
968 x0 = xPos;
970 x1 = xPos;
972 x2 = xPos + xSize;
976 x0 = xPos;
978 x1 = xPos + xSize;
980 x2 = xPos;
984 x0 = xPos + xSize;
986 x1 = xPos + xSize;
988 x2 = xPos;
954 GetDisplayMatrix(CFX_Matrix& matrix, int xPos, int yPos, int xSize, int ySize, int iRotate) const argument
[all...]
/external/skia/experimental/GLFWTest/
H A Dglfw_main.cpp102 float xPos = (x / (kGrid - 1.0)) * kWidth; local
107 xPos, yPos, anchorX, anchorY);
/external/skia/samplecode/
H A DSampleShip.cpp67 float xPos = (x / (kGrid - 1.0f)) * kWidth; local
74 xPos, yPos, anchorX, anchorY);
/external/skia/src/core/
H A DSkGlyphCache.h83 void findIntercepts(const SkScalar bounds[2], SkScalar scale, SkScalar xPos,
243 SkScalar xPos, SkScalar* array, int* count);
H A DSkGlyphCache.cpp255 SkScalar xPos, SkScalar* array, int* count) {
259 *array++ = intercept->fInterval[index] * scale + xPos;
331 void SkGlyphCache::findIntercepts(const SkScalar bounds[2], SkScalar scale, SkScalar xPos,
337 OffsetResults(match, scale, xPos, array, count);
398 OffsetResults(intercept, scale, xPos, array, count);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DNat.java830 public static int squareWordAdd(int[] x, int xPos, int[] z) argument
832 long c = 0, xVal = x[xPos] & M;
836 c += xVal * (x[i] & M) + (z[xPos + i] & M);
837 z[xPos + i] = (int)c;
840 while (++i < xPos);
844 public static int squareWordAdd(int[] x, int xOff, int xPos, int[] z, int zOff) argument
846 long c = 0, xVal = x[xOff + xPos] & M;
850 c += xVal * (x[xOff + i] & M) + (z[xPos + zOff] & M);
851 z[xPos + zOff] = (int)c;
855 while (++i < xPos);
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.cpp478 int xPos = xSize - mx; local
479 xPos -= bSizeX;
480 MoveItem(IDCANCEL, xPos, yPos, bSizeX, _buttonSizeY);
481 xPos -= (mx2 + bSizeX);
482 MoveItem(IDB_PAUSE, xPos, yPos, bSizeX, _buttonSizeY);
483 xPos -= (mx2 + bSizeX);
484 MoveItem(IDB_PROGRESS_BACKGROUND, xPos, yPos, bSizeX, _buttonSizeY);
/external/dng_sdk/source/
H A Ddng_resample.cpp403 real64 xPos = xInt - xFract; local
410 real64 dx2 = xPos * xPos;
420 w32 [index] = (real32) kernel.Evaluate (xPos) *
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_page.h114 int xPos,
/external/skia/src/gpu/text/
H A DGrAtlasTextContext.cpp394 int xPos = (random->nextU() % 2) * 2 - 1; local
396 int xInt = (random->nextU() % kMaxTrans) * xPos;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 475 milliseconds