OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:palette_size
(Results
1 - 12
of
12
) sorted by null
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c
132
#define
PALETTE_SIZE
(1 << PALETTE_BITS)
138
static uint16_t palette[
PALETTE_SIZE
];
151
for (nn = 0; nn <
PALETTE_SIZE
/4; nn++) {
152
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
156
for ( mm = nn; nn <
PALETTE_SIZE
/2; nn++ ) {
157
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
161
for ( mm = nn; nn <
PALETTE_SIZE
*3/4; nn++ ) {
162
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
166
for ( mm = nn; nn <
PALETTE_SIZE
; nn++ ) {
167
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_cpal.c
50
GLuint
palette_size
;
member in struct:cpal_format_info
88
if (info->
palette_size
== 16) {
127
expect_size = info->
palette_size
* info->size;
136
if (info->
palette_size
== 16)
187
indices = (const GLubyte *) palette + info->
palette_size
* info->size;
221
if (info->
palette_size
== 16)
/external/mesa3d/src/mesa/main/
texcompress_cpal.c
50
GLuint
palette_size
;
member in struct:cpal_format_info
88
if (info->
palette_size
== 16) {
127
expect_size = info->
palette_size
* info->size;
136
if (info->
palette_size
== 16)
187
indices = (const GLubyte *) palette + info->
palette_size
* info->size;
221
if (info->
palette_size
== 16)
/development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c
137
#define
PALETTE_SIZE
(1 << PALETTE_BITS)
143
static uint16_t palette[
PALETTE_SIZE
];
156
for (nn = 0; nn <
PALETTE_SIZE
/4; nn++) {
157
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
161
for ( mm = nn; nn <
PALETTE_SIZE
/2; nn++ ) {
162
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
166
for ( mm = nn; nn <
PALETTE_SIZE
*3/4; nn++ ) {
167
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
171
for ( mm = nn; nn <
PALETTE_SIZE
; nn++ ) {
172
int jj = (nn-mm)*4*255/
PALETTE_SIZE
;
[
all
...]
/external/chromium_org/third_party/libwebp/enc/
vp8l.c
50
int* const
palette_size
) {
101
*
palette_size
= num_colors;
818
const uint32_t* palette, int
palette_size
,
822
for (i = 0; i <
palette_size
; ++i) {
831
for (i = 0; i <
palette_size
; ++i) {
852
for (i = 0; i <
palette_size
; ++i) {
882
const int
palette_size
= enc->palette_size_;
local
888
if (
palette_size
<= 4) {
889
xbits = (
palette_size
<= 2) ? 3 : 2;
891
xbits = (
palette_size
<= 16) ? 1 : 0
[
all
...]
/external/webp/src/enc/
vp8l.c
50
int* const
palette_size
) {
101
*
palette_size
= num_colors;
818
const uint32_t* palette, int
palette_size
,
822
for (i = 0; i <
palette_size
; ++i) {
831
for (i = 0; i <
palette_size
; ++i) {
852
for (i = 0; i <
palette_size
; ++i) {
882
const int
palette_size
= enc->palette_size_;
local
888
if (
palette_size
<= 4) {
889
xbits = (
palette_size
<= 2) ? 3 : 2;
891
xbits = (
palette_size
<= 16) ? 1 : 0
[
all
...]
/frameworks/base/core/jni/android/opengl/
util.cpp
676
const size_t
palette_size
= 256*sizeof(SkPMColor);
local
677
const size_t imageSize = size +
palette_size
;
680
void* const pixels = (char*)data +
palette_size
;
/external/chromium_org/third_party/libwebp/webp/
encode.h
199
int
palette_size
; // number of color in palette, if used
member in struct:WebPAuxStats
/external/webp/include/webp/
encode.h
199
int
palette_size
; // number of color in palette, if used
member in struct:WebPAuxStats
/external/chromium_org/third_party/libpng/
pngwutil.c
859
int
palette_size
= entry_size * spalette->nentries;
local
872
(png_uint_32)(name_len + 2 +
palette_size
));
[
all
...]
/external/libpng/
pngwutil.c
859
int
palette_size
= entry_size * spalette->nentries;
local
872
(png_uint_32)(name_len + 2 +
palette_size
));
[
all
...]
/external/qemu/distrib/libpng-1.2.19/
pngwutil.c
811
int
palette_size
= entry_size * spalette->nentries;
local
827
(png_uint_32)(name_len + 2 +
palette_size
));
[
all
...]
Completed in 1673 milliseconds