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

  /frameworks/base/libs/hwui/
Patch.cpp 74 uint32_t xCount = patch->numXDivs;
77 uint32_t maxVertices = ((xCount + 1) * (yCount + 1) - emptyQuads) * 4;
86 const uint32_t xStretchCount = (xCount + 1) >> 1;
97 for (uint32_t i = 1; i < xCount; i += 2) {
144 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX,
156 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX,
171 void Patch::generateRow(const int32_t* xDivs, uint32_t xCount, TextureVertex*& vertex,
181 for (uint32_t i = 0; i < xCount; i++) {
  /external/chromium_org/third_party/skia/src/core/
SkPicturePlayback.cpp 378 size_t xCount = reader->readInt();
380 const SkScalar* xpos = (const SkScalar*)reader->skip(xCount * sizeof(SkScalar));
387 size_t xCount = reader->readInt();
388 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 291 final int xCount = (int) grid.numColumns;
293 boolean[][] occupied = new boolean[xCount][yCount];
304 for (int x = cellX; 0 <= x && x < cellX + spanX && x < xCount; x++) {
313 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
    [all...]

Completed in 307 milliseconds