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

  /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) {
  /frameworks/base/libs/hwui/
PatchCache.h 69 xCount(0), yCount(0), emptyCount(0), colorKey(0) {
74 const uint32_t xCount, const uint32_t yCount,
78 xCount(xCount), yCount(yCount),
107 uint32_t xCount;
Patch.h 47 Patch(const uint32_t xCount, const uint32_t yCount, const int8_t emptyQuads);
PatchCache.cpp 59 deltaInt = lhs.xCount - rhs.xCount;
115 "xCount=%d yCount=%d, w=%.2f h=%.2f, bw=%.2f bh=%.2f",
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);
  /external/skia/legacy/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;
  /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;
  /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);
PagedViewCellLayout.java 279 public void setCellCount(int xCount, int yCount) {
280 mCellCountX = xCount;
CellLayout.java     [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 283 private native boolean setShaderTileCounts(int xCount, int yCount);
  /external/skia/legacy/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...]
  /external/skia/src/core/
SkPicturePlayback.cpp 848 size_t xCount = reader.readInt();
850 const SkScalar* xpos = (const SkScalar*)reader.skip(xCount * sizeof(SkScalar));
857 size_t xCount = reader.readInt();
858 const SkScalar* xpos = (const SkScalar*)reader.skip((3 + xCount) * sizeof(SkScalar));
    [all...]

Completed in 337 milliseconds