/external/skia/gm/ |
H A D | pathopsinverse.cpp | 85 int xPos = 150; variable 90 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); 95 xPos += 150;
|
H A D | lightingshader2.cpp | 160 SkScalar xPos = (gridNum % GRID_COLUMN_NUM) * GRID_CELL_WIDTH; variable 165 canvas->translate(xPos, yPos); 206 SkScalar xPos = (gridNum % GRID_COLUMN_NUM) * GRID_CELL_WIDTH; variable 210 canvas->translate(xPos, yPos); 219 SkScalar xPos = (gridNum % GRID_COLUMN_NUM) * GRID_CELL_WIDTH; variable 223 canvas->translate(xPos, yPos); 232 SkScalar xPos = (gridNum % GRID_COLUMN_NUM) * GRID_CELL_WIDTH; variable 236 canvas->translate(xPos, yPos); 245 SkScalar xPos = (gridNum % GRID_COLUMN_NUM) * GRID_CELL_WIDTH; variable 249 canvas->translate(xPos, yPo [all...] |
H A D | multipicturedraw.cpp | 66 SkScalar xPos, yPos = 0; local 69 xPos = 0; 73 canvas->translate(xPos, yPos + ((x % 2) ? kRoot3Over2 * kHexSide : 0)); 78 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/pdfium/core/fpdfapi/page/ |
H A D | cpdf_page.cpp | 123 CFX_Matrix CPDF_Page::GetDisplayMatrix(int xPos, argument 140 x0 = xPos; 142 x1 = xPos; 144 x2 = xPos + xSize; 148 x0 = xPos; 150 x1 = xPos + xSize; 152 x2 = xPos; 156 x0 = xPos + xSize; 158 x1 = xPos + xSize; 160 x2 = xPos; [all...] |
/external/pdfium/fpdfsdk/fpdfxfa/ |
H A D | cpdfxfa_page.cpp | 190 CFX_Matrix CPDFXFA_Page::GetDisplayMatrix(int xPos, argument 203 CFX_Rect(xPos, yPos, xSize, ySize), iRotate); 210 return m_pPDFPage->GetDisplayMatrix(xPos, yPos, xSize, ySize, iRotate);
|
/external/skia/samplecode/ |
H A D | SampleShadowColor.cpp | 197 SkScalar xPos = 75; variable 202 canvas->translate(xPos, yPos); 208 xPos += 120;
|
H A D | SampleShadowReference.cpp | 128 SkScalar xPos = 230; variable 136 canvas->translate(xPos, yPos); 142 xPos += 320; 147 canvas->translate(xPos, yPos); 153 xPos += 320; 158 canvas->translate(xPos, yPos); 164 xPos += 320; 169 canvas->translate(xPos, yPos); 175 xPos += 320; 180 canvas->translate(xPos, yPo [all...] |
H A D | SampleShip.cpp | 67 float xPos = (x / (kGrid - 1.0f)) * kWidth; local 74 xPos, yPos, anchorX, anchorY);
|
/external/skia/experimental/GLFWTest/ |
H A D | glfw_main.cpp | 102 float xPos = (x / (kGrid - 1.0)) * kWidth; local 107 xPos, yPos, anchorX, anchorY);
|
/external/skia/src/gpu/text/ |
H A D | GrAtlasTextContext.cpp | 374 int xPos = (random->nextU() % 2) * 2 - 1; local 376 int xInt = (random->nextU() % kMaxTrans) * xPos;
|
/external/skia/tools/viewer/sk_app/win/ |
H A D | Window_win.cpp | 262 int xPos = GET_X_LPARAM(lParam); local 269 // xPos -= rc.left; 276 eventHandled = window->onMouse(xPos, yPos, istate, 281 int xPos = GET_X_LPARAM(lParam); local 288 // xPos -= rc.left; 292 eventHandled = window->onMouse(xPos, yPos, Window::kMove_InputState,
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/ |
H A D | Nat.java | 830 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/swiftshader/third_party/PowerVR_SDK/Tools/ |
H A D | PVRTDecompress.cpp | 361 @Input xPos The x Position within the current word. 367 static PVRTint32 getModulationValues(PVRTint32 i32ModulationValues[16][8],PVRTint32 i32ModulationModes[16][8],PVRTuint32 xPos,PVRTuint32 yPos,PVRTuint8 ui8Bpp) argument 374 if(i32ModulationModes[xPos][yPos]==0) 376 return RepVals0[i32ModulationValues[xPos][yPos]]; 381 if(((xPos^yPos)&1)==0) 383 return RepVals0[i32ModulationValues[xPos][yPos]]; 388 else if(i32ModulationModes[xPos][yPos] == 1) 390 return (RepVals0[i32ModulationValues[xPos][yPos-1]] + 391 RepVals0[i32ModulationValues[xPos][yPos+1]] + 392 RepVals0[i32ModulationValues[xPos [all...] |
/external/dng_sdk/source/ |
H A D | dng_resample.cpp | 403 real64 xPos = xInt - xFract; local 410 real64 dx2 = xPos * xPos; 420 w32 [index] = (real32) kernel.Evaluate (xPos) *
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
H A D | aec_core_mips.c | 333 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 D | aec_core.c | 165 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...] |
H A D | aec_core_neon.c | 46 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 D | aec_core_sse2.c | 42 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...] |
/external/skia/src/core/ |
H A D | SkGlyphCache.cpp | 237 SkScalar xPos, SkScalar* array, int* count) { 241 *array++ = intercept->fInterval[index] * scale + xPos; 313 void SkGlyphCache::findIntercepts(const SkScalar bounds[2], SkScalar scale, SkScalar xPos, argument 319 OffsetResults(match, scale, xPos, array, count); 379 OffsetResults(intercept, scale, xPos, array, count); 236 OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale, SkScalar xPos, SkScalar* array, int* count) argument
|
/external/lzma/CPP/7zip/UI/FileManager/ |
H A D | ProgressDialog2.cpp | 499 int xPos = xSize - mx;
local 500 xPos -= bSizeX;
501 MoveItem(IDCANCEL, xPos, yPos, bSizeX, _buttonSizeY);
502 xPos -= (mx2 + bSizeX);
503 MoveItem(IDB_PAUSE, xPos, yPos, bSizeX, _buttonSizeY);
504 xPos -= (mx2 + bSizeX);
505 MoveItem(IDB_PROGRESS_BACKGROUND, xPos, yPos, bSizeX, _buttonSizeY);
|
/external/robolectric/v3/runtime/ |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |