OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:depthMaskL
(Results
1 - 2
of
2
) sorted by null
/external/neven/Embedded/common/src/b_ImageEm/
UInt16BytePyrImage.c
183
uint32
depthMaskL
= ( ( int32 )1 << ( depthA - 1 ) ) - 1;
190
if( ( ( widthA &
depthMaskL
) > 0 ) || ( ( heightA &
depthMaskL
) > 0 ) )
193
"widthA and heightA must be divisible by %i",
depthMaskL
+ 1 );
223
uint32
depthMaskL
= ( 1 << ( depthA - 1 ) ) - 1;
231
if( ( ( widthA &
depthMaskL
) > 0 ) || ( ( heightA &
depthMaskL
) > 0 ) )
234
"widthA and heightA must be divisible by %i",
depthMaskL
+ 1 );
UInt8PyramidalImage.c
188
uint32
depthMaskL
= ( 1 << ( depthA - 1 ) ) - 1;
195
if( ( ( widthA &
depthMaskL
) > 0 ) || ( ( heightA &
depthMaskL
) > 0 ) )
198
"widthA and heightA must be divisible by %i",
depthMaskL
+ 1 );
224
uint32
depthMaskL
= ( 1 << ( depthA - 1 ) ) - 1;
232
if( ( ( widthA &
depthMaskL
) > 0 ) || ( ( heightA &
depthMaskL
) > 0 ) )
235
"widthA and heightA must be divisible by %i",
depthMaskL
+ 1 );
Completed in 464 milliseconds