Home
last modified time | relevance | path

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

/third_party/openssl/test/recipes/10-test_bn_data/
Dbnshift.txt2021 # These test vectors satisfy A / 2^N = RShift, rounding towards zero.
2023 Title = RShift tests
2029 RShift = 6ce746ffa7979ce10b751cd2308402a95d00d596cd97b36380
2033 RShift = 3673a37fd3cbce7085ba8e6918420154ae806acb66cbd9b1c0
2037 RShift = 1b39d1bfe9e5e73842dd47348c2100aa57403565b365ecd8e0
2041 RShift = d9ce8dff4f2f39c216ea39a461080552ba01ab2d9b2f66c70
2045 RShift = 6ce746ffa7979ce10b751cd2308402a95d00d596cd97b3638
2049 RShift = 3673a37fd3cbce7085ba8e6918420154ae806acb66cbd9b1c
2053 RShift = 1b39d1bfe9e5e73842dd47348c2100aa57403565b365ecd8e
2057 RShift = d9ce8dff4f2f39c216ea39a461080552ba01ab2d9b2f66c7
[all …]
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng-x.c147 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 …]
Drpng2-x.c296 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 …]
/third_party/libpng/contrib/gregbook/
Drpng-x.c147 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 …]
Drpng2-x.c296 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 …]
/third_party/mindspore/mindspore/_extends/parse/
Dresources.py49 ast.RShift: (trope_ns, 'rshift'),
/third_party/python/Parser/
DPython.asdl100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
Dparser.c2811 _res = _PyPegen_augoperator ( p , RShift ); in augassign_rule()
13510 _res = _PyAST_BinOp ( a , RShift , b , EXTRA ); in shift_expr_raw()
/third_party/python/Include/internal/
Dpycore_ast.h26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
/third_party/python/Python/
Dast_unparse.c158 case RShift: op = " >> "; pr = PR_SHIFT; break; in append_ast_binop()
Dast_opt.c266 case RShift: in fold_binop()
Dcompile.c3624 case RShift: in binop()
3661 case RShift: in inplace_binop()
DPython-ast.c4702 case RShift: in ast2obj_operator()
9732 *out = RShift; in obj2ast_operator()
/third_party/python/Grammar/
Dpython.gram120 | '>>=' { _PyPegen_augoperator(p, RShift) }
644 | a=shift_expr '>>' b=sum { _PyAST_BinOp(a, RShift, b, EXTRA) }
/third_party/python/Doc/library/
Dast.rst415 RShift