Home
last modified time | relevance | path

Searched refs:RShift (Results 1 – 10 of 10) sorted by relevance

/external/libpng/contrib/gregbook/
Drpng-x.c146 static int RShift, GShift, BShift; variable
523 RShift = 15 - rpng_x_msb(RMask); /* these are right-shifts */ in rpng_x_create_window()
529 RShift = rpng_x_msb(RMask) - 7; /* these are left-shifts */ in rpng_x_create_window()
533 RShift = 7 - rpng_x_msb(RMask); /* these are right-shifts, too */ in rpng_x_create_window()
538 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng_x_create_window()
620 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window()
624 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window()
723 pixel = (red << RShift) | in rpng_x_display_image()
733 red = (RShift < 0)? red << (-RShift) : red >> RShift; in rpng_x_display_image()
766 pixel = (red << RShift) | in rpng_x_display_image()
[all …]
Drpng2-x.c294 static int RShift, GShift, BShift; variable
906 RShift = 15 - rpng2_x_msb(RMask); /* these are right-shifts */ in rpng2_x_create_window()
910 RShift = rpng2_x_msb(RMask) - 7; /* these are left-shifts */ in rpng2_x_create_window()
914 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng2_x_create_window()
1041 bg_pixel = (bg_red << RShift) | in rpng2_x_create_window()
1045 bg_pixel = (((bg_red << 8) >> RShift) & RMask) | in rpng2_x_create_window()
1309 pixel = (red << RShift) | in rpng2_x_load_bg_image()
1323 pixel = (red << RShift) | in rpng2_x_load_bg_image()
1346 pixel = ((red >> RShift) & RMask) | in rpng2_x_load_bg_image()
1435 pixel = (red << RShift) | in rpng2_x_display_row()
[all …]
/external/boringssl/src/crypto/fipsmodule/bn/
Dbn_tests.txt4635 # RShift tests
4637 # These test vectors satisfy A / 2^N = RShift, rounding towards zero.
4639 RShift = 6ce746ffa7979ce10b751cd2308402a95d00d596cd97b36380
4643 RShift = 3673a37fd3cbce7085ba8e6918420154ae806acb66cbd9b1c0
4647 RShift = 1b39d1bfe9e5e73842dd47348c2100aa57403565b365ecd8e0
4651 RShift = d9ce8dff4f2f39c216ea39a461080552ba01ab2d9b2f66c70
4655 RShift = 6ce746ffa7979ce10b751cd2308402a95d00d596cd97b3638
4659 RShift = 3673a37fd3cbce7085ba8e6918420154ae806acb66cbd9b1c
4663 RShift = 1b39d1bfe9e5e73842dd47348c2100aa57403565b365ecd8e
4667 RShift = d9ce8dff4f2f39c216ea39a461080552ba01ab2d9b2f66c7
[all …]
/external/python/cpython2/Parser/
DPython.asdl95 | RShift | BitOr | BitXor | BitAnd | FloorDiv
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dutil.py307 _ast.RShift = type(m.body[5].value.op)
D_ast_util.py49 RShift: '>>',
/external/python/cpython2/Include/
DPython-ast.h19 RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 } enumerator
/external/python/cpython2/Python/
Dast.c344 return RShift; in get_operator()
507 return RShift; in ast_for_augassign()
Dcompile.c2228 case RShift: in binop()
2295 case RShift: in inplace_binop()
DPython-ast.c3058 case RShift: in ast2obj_operator()
6222 *out = RShift; in obj2ast_operator()