Home
last modified time | relevance | path

Searched refs:LShift (Results 1 – 12 of 12) sorted by relevance

/third_party/openssl/test/recipes/10-test_bn_data/
Dbnshift.txt1216 # These test vectors satisfy A * 2^N = LShift.
1218 Title = LShift tests
1220 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e0
1224 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c0
1228 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b2780
1232 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f00
1236 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e00
1240 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c00
1244 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b27800
1248 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f000
[all …]
/third_party/mindspore/mindspore/_extends/parse/
Dresources.py48 ast.LShift: (trope_ns, 'lshift'),
/third_party/python/Parser/
DPython.asdl99 operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
Dparser.c2787 _res = _PyPegen_augoperator ( p , LShift ); in augassign_rule()
13471 _res = _PyAST_BinOp ( a , LShift , b , EXTRA ); in shift_expr_raw()
/third_party/python/Python/
Dast_unparse.c157 case LShift: op = " << "; pr = PR_SHIFT; break; in append_ast_binop()
Dast_opt.c263 case LShift: in fold_binop()
Dcompile.c3622 case LShift: in binop()
3659 case LShift: in inplace_binop()
DPython-ast.c4699 case LShift: in ast2obj_operator()
9724 *out = LShift; in obj2ast_operator()
/third_party/python/Include/internal/
Dpycore_ast.h26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
/third_party/python/Grammar/
Dpython.gram119 | '<<=' { _PyPegen_augoperator(p, LShift) }
643 | a=shift_expr '<<' b=sum { _PyAST_BinOp(a, LShift, b, EXTRA) }
/third_party/python/Doc/library/
Dast.rst414 LShift
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp26309 bool LShift = (VT.is128BitVector() && Subtarget.hasSSE2()) || in SupportedVectorShiftWithImm() local
26312 bool AShift = LShift && (Subtarget.hasAVX512() || in SupportedVectorShiftWithImm()
26314 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorShiftWithImm()
26340 bool LShift = VT.is128BitVector() || VT.is256BitVector(); in SupportedVectorVarShift() local
26341 bool AShift = LShift && VT != MVT::v2i64 && VT != MVT::v4i64; in SupportedVectorVarShift()
26342 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorVarShift()