OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Y_SIZE
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/tests/
ReadWriteAlphaTest.cpp
16
static const int
Y_SIZE
= 12;
29
unsigned char textureData[X_SIZE][
Y_SIZE
];
31
memset(textureData, 0, X_SIZE *
Y_SIZE
);
40
desc.fHeight =
Y_SIZE
;
51
for (int y = 0; y <
Y_SIZE
; ++y) {
53
textureData[x][y] = x*
Y_SIZE
+y;
61
unsigned char readback[X_SIZE][
Y_SIZE
];
64
memset(readback, 0x1, X_SIZE *
Y_SIZE
);
73
for (int y = 0; y <
Y_SIZE
; ++y) {
90
const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10,
Y_SIZE
+ 10)
[
all
...]
ClipCacheTest.cpp
16
static const int
Y_SIZE
= 12;
21
unsigned char textureData[X_SIZE][
Y_SIZE
][4];
23
memset(textureData, 0, 4* X_SIZE *
Y_SIZE
);
31
desc.fHeight =
Y_SIZE
;
154
desc.fHeight =
Y_SIZE
;
/external/chromium_org/third_party/libwebp/dec/
vp8i.h
97
#define
Y_SIZE
(BPS * 17)
/external/chromium_org/third_party/libwebp/enc/
vp8enci.h
123
#define
Y_SIZE
(BPS * 16)
125
#define YUV_SIZE (
Y_SIZE
+ UV_SIZE)
128
#define U_OFF (
Y_SIZE
)
Completed in 66 milliseconds