OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PALETTE_BITS
(Results
1 - 2
of
2
) sorted by null
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c
131
#define
PALETTE_BITS
8
132
#define PALETTE_SIZE (1 <<
PALETTE_BITS
)
134
#if
PALETTE_BITS
> FIXED_BITS
135
# error
PALETTE_BITS
must be smaller than FIXED_BITS
176
int idx = FIXED_FRAC(x) >> (FIXED_BITS -
PALETTE_BITS
);
/development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c
136
#define
PALETTE_BITS
8
137
#define PALETTE_SIZE (1 <<
PALETTE_BITS
)
139
#if
PALETTE_BITS
> FIXED_BITS
140
# error
PALETTE_BITS
must be smaller than FIXED_BITS
181
int idx = FIXED_FRAC(x) >> (FIXED_BITS -
PALETTE_BITS
);
Completed in 126 milliseconds