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

  /frameworks/base/libs/hwui/
PatchCache.h 70 xCount(0), yCount(0), emptyCount(0), colorKey(0) {
75 const uint32_t xCount, const uint32_t yCount,
79 xCount(xCount), yCount(yCount),
88 LTE_INT(xCount) {
107 uint32_t xCount;
Patch.h 48 Patch(const uint32_t xCount, const uint32_t yCount, const int8_t emptyQuads = 0);
Patch.cpp 34 Patch::Patch(const uint32_t xCount, const uint32_t yCount, const int8_t emptyQuads):
35 mXCount(xCount), mYCount(yCount), mEmptyQuads(emptyQuads) {
38 uint32_t maxVertices = ((xCount + 1) * (yCount + 1) - emptyQuads) * 2 * 3;
49 PATCH_LOGD(" patch: xCount = %d, yCount = %d, emptyQuads = %d, max vertices = %d",
50 xCount, yCount, emptyQuads, maxVertices);
  /libcore/luni/src/test/java/libcore/java/net/
IDNTest.java 23 private static String makePunyString(int xCount) {
26 for (int i = 0; i < xCount; ++i) {
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 226 final int xCount = LauncherModel.getCellCountX();
228 boolean[][] occupied = new boolean[xCount][yCount];
240 for (int x = cellX; 0 <= x && x < cellX + spanX && x < xCount; x++) {
249 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
PagedViewCellLayout.java 290 public void setCellCount(int xCount, int yCount) {
291 mCellCountX = xCount;
CellLayout.java     [all...]
  /external/skia/src/utils/
SkNinePatch.cpp 28 static int fillIndices(uint16_t indices[], int xCount, int yCount) {
33 for (int x = 0; x < xCount; x++) {
35 *indices++ = n + xCount + 2;
39 *indices++ = n + xCount + 1;
40 *indices++ = n + xCount + 2;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 283 private native boolean setShaderTileCounts(int xCount, int yCount);
  /external/skia/src/core/
SkPicturePlayback.cpp 633 size_t xCount = getInt();
635 const SkScalar* xpos = (const SkScalar*)fReader.skip(xCount * sizeof(SkScalar));
642 size_t xCount = getInt();
643 const SkScalar* xpos = (const SkScalar*)fReader.skip((3 + xCount) * sizeof(SkScalar));
    [all...]

Completed in 112 milliseconds