Searched refs:RShift (Results 1 – 16 of 16) sorted by relevance
/external/libpng/contrib/gregbook/ |
D | rpng-x.c | 147 static int RShift, GShift, BShift; variable 524 RShift = 15 - rpng_x_msb(RMask); /* these are right-shifts */ in rpng_x_create_window() 530 RShift = rpng_x_msb(RMask) - 7; /* these are left-shifts */ in rpng_x_create_window() 534 RShift = 7 - rpng_x_msb(RMask); /* these are right-shifts, too */ in rpng_x_create_window() 539 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng_x_create_window() 621 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window() 625 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window() 724 pixel = (red << RShift) | in rpng_x_display_image() 734 red = (RShift < 0)? red << (-RShift) : red >> RShift; in rpng_x_display_image() 767 pixel = (red << RShift) | in rpng_x_display_image() [all …]
|
D | rpng2-x.c | 296 static int RShift, GShift, BShift; variable 915 RShift = 15 - rpng2_x_msb(RMask); /* these are right-shifts */ in rpng2_x_create_window() 919 RShift = rpng2_x_msb(RMask) - 7; /* these are left-shifts */ in rpng2_x_create_window() 923 if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) { in rpng2_x_create_window() 1050 bg_pixel = (bg_red << RShift) | in rpng2_x_create_window() 1054 bg_pixel = (((bg_red << 8) >> RShift) & RMask) | in rpng2_x_create_window() 1318 pixel = (red << RShift) | in rpng2_x_load_bg_image() 1332 pixel = (red << RShift) | in rpng2_x_load_bg_image() 1355 pixel = ((red >> RShift) & RMask) | in rpng2_x_load_bg_image() 1444 pixel = (red << RShift) | in rpng2_x_display_row() [all …]
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | bn_tests.txt | 4635 # 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/ |
D | Python.asdl | 95 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 107 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
D | anf.py | 102 gast.RShift, gast.BitOr, gast.BitXor, gast.BitAnd, gast.FloorDiv,
|
/external/python/cpython3/Python/ |
D | ast_unparse.c | 135 case RShift: op = " >> "; pr = PR_SHIFT; break; in append_ast_binop()
|
D | ast_opt.c | 293 case RShift: in fold_binop()
|
D | ast.c | 909 return RShift; in get_operator() 1112 return RShift; in ast_for_augassign()
|
D | compile.c | 3106 case RShift: in binop() 3143 case RShift: in inplace_binop()
|
D | Python-ast.c | 3605 case RShift: in ast2obj_operator() 7423 *out = RShift; in obj2ast_operator()
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 19 RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 } enumerator
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 19 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
|
/external/python/cpython2/Python/ |
D | ast.c | 344 return RShift; in get_operator() 507 return RShift; in ast_for_augassign()
|
D | compile.c | 2230 case RShift: in binop() 2297 case RShift: in inplace_binop()
|
D | Python-ast.c | 3058 case RShift: in ast2obj_operator() 6222 *out = RShift; in obj2ast_operator()
|