OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fPixels
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkMipMap.h
21
void*
fPixels
;
SkBitmap.cpp
32
void*
fPixels
;
116
// leave
fPixels
as it is
120
fPixels
= NULL;
141
SkTSwap(
fPixels
, other.
fPixels
);
351
fPixels
= p;
355
fPixels
= NULL;
502
fPixels
= NULL;
[
all
...]
/external/skia/src/core/
SkMipMap.h
21
void*
fPixels
;
SkBitmap.cpp
32
void*
fPixels
;
116
// leave
fPixels
as it is
120
fPixels
= NULL;
141
SkTSwap(
fPixels
, other.
fPixels
);
351
fPixels
= p;
355
fPixels
= NULL;
502
fPixels
= NULL;
[
all
...]
/external/chromium_org/third_party/skia/include/core/
SkPixelRef.h
70
void* pixels() const { return
fPixels
; }
307
void*
fPixels
;
SkBitmap.h
138
void* getPixels() const { return
fPixels
; }
653
mutable void*
fPixels
;
786
SkASSERT(
fPixels
);
789
return (uint32_t*)((char*)
fPixels
+ y * fRowBytes + (x << 2));
793
SkASSERT(
fPixels
);
796
return (uint16_t*)((char*)
fPixels
+ y * fRowBytes + (x << 1));
800
SkASSERT(
fPixels
);
803
return (uint8_t*)
fPixels
+ y * fRowBytes + x;
807
SkASSERT(
fPixels
);
811
return (*fColorTable)[*((const uint8_t*)
fPixels
+ y * fRowBytes + x)]
[
all
...]
/external/skia/include/core/
SkPixelRef.h
70
void* pixels() const { return
fPixels
; }
307
void*
fPixels
;
SkBitmap.h
138
void* getPixels() const { return
fPixels
; }
653
mutable void*
fPixels
;
786
SkASSERT(
fPixels
);
789
return (uint32_t*)((char*)
fPixels
+ y * fRowBytes + (x << 2));
793
SkASSERT(
fPixels
);
796
return (uint16_t*)((char*)
fPixels
+ y * fRowBytes + (x << 1));
800
SkASSERT(
fPixels
);
803
return (uint8_t*)
fPixels
+ y * fRowBytes + x;
807
SkASSERT(
fPixels
);
811
return (*fColorTable)[*((const uint8_t*)
fPixels
+ y * fRowBytes + x)]
[
all
...]
Completed in 32 milliseconds