HomeSort by relevance Sort by last modified time
    Searched defs:xCount (Results 1 - 6 of 6) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
rsAllocationCopyTest.java 268 int xCount = random.nextInt(width - xOff);
288 s.set_xCount(xCount);
299 xOff <= j && j < xOff + xCount) {
322 int xCount = random.nextInt(width - xOff);
344 s.set_xCount(xCount);
355 xOff <= j && j < xOff + xCount) {
378 int xCount = random.nextInt(width - xOff);
400 s.set_xCount(xCount);
411 xOff <= j && j < xOff + xCount) {
434 int xCount = random.nextInt(width - xOff)
    [all...]
  /frameworks/base/libs/hwui/
Patch.cpp 54 uint32_t xCount = patch->numXDivs;
57 uint32_t maxVertices = ((xCount + 1) * (yCount + 1) - emptyQuads) * 4;
66 const uint32_t xStretchCount = (xCount + 1) >> 1;
77 for (uint32_t i = 1; i < xCount; i += 2) {
124 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX,
136 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX,
147 void Patch::generateRow(const int32_t* xDivs, uint32_t xCount, TextureVertex*& vertex,
157 for (uint32_t i = 0; i < xCount; i++) {
  /external/skia/src/core/
SkPicturePlayback.cpp 360 size_t xCount = reader->readInt();
362 const SkScalar* xpos = (const SkScalar*)reader->skip(xCount * sizeof(SkScalar));
369 size_t xCount = reader->readInt();
370 const SkScalar* xpos = (const SkScalar*)reader->skip((3 + xCount) * sizeof(SkScalar));
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 338 final int xCount = LauncherModel.getCellCountX();
340 boolean[][] occupied = new boolean[xCount][yCount];
352 for (int x = cellX; 0 <= x && x < cellX + spanX && x < xCount; x++) {
361 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StretchesViewer.java 223 int xCount = size.x / backgroundLayerWidth
228 for (int x = 0; x < xCount; x++) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java 407 final int xCount = (int) profile.numColumns;
409 boolean[][] occupied = new boolean[xCount][yCount];
414 for (int x = r.cellX; 0 <= x && x < right && x < xCount; x++) {
421 return Utilities.findVacantCell(xy, spanX, spanY, xCount, yCount, occupied);
    [all...]

Completed in 140 milliseconds