Searched refs:LShift (Results 1 – 16 of 16) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | bn_tests.txt | 3830 # LShift tests 3832 # These test vectors satisfy A * 2^N = LShift. 3834 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e0 3838 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c0 3842 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b2780 3846 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f00 3850 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e00 3854 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c00 3858 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b27800 3862 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f000 [all …]
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 94 operator = Add | Sub | Mult | Div | Mod | Pow | LShift
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 106 operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
|
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
D | anf.py | 101 gast.Add, gast.Sub, gast.Mult, gast.Div, gast.Mod, gast.Pow, gast.LShift,
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7, enumerator
|
/external/python/cpython3/Python/ |
D | ast_unparse.c | 134 case LShift: op = " << "; pr = PR_SHIFT; break; in append_ast_binop()
|
D | ast_opt.c | 290 case LShift: in fold_binop()
|
D | ast.c | 907 return LShift; in get_operator() 1110 return LShift; in ast_for_augassign()
|
D | compile.c | 3104 case LShift: in binop() 3141 case LShift: in inplace_binop()
|
D | Python-ast.c | 3602 case LShift: in ast2obj_operator() 7415 *out = LShift; in obj2ast_operator()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 3552 auto LShift = [&](unsigned char Val, unsigned Amount) in writeModuleHash() local 3555 uint32_t SubHash = LShift(Hash[Pos + 0], 24); in writeModuleHash() 3556 SubHash |= LShift(Hash[Pos + 1], 16) | LShift(Hash[Pos + 2], 8) | in writeModuleHash()
|
/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 | 342 return LShift; in get_operator() 505 return LShift; in ast_for_augassign()
|
D | compile.c | 2228 case LShift: in binop() 2295 case LShift: in inplace_binop()
|
D | Python-ast.c | 3055 case LShift: in ast2obj_operator() 6214 *out = LShift; in obj2ast_operator()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 23003 bool LShift = (VT.is128BitVector() && Subtarget.hasSSE2()) || in SupportedVectorShiftWithImm() local 23006 bool AShift = LShift && (Subtarget.hasAVX512() || in SupportedVectorShiftWithImm() 23008 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorShiftWithImm() 23034 bool LShift = VT.is128BitVector() || VT.is256BitVector(); in SupportedVectorVarShift() local 23035 bool AShift = LShift && VT != MVT::v2i64 && VT != MVT::v4i64; in SupportedVectorVarShift() 23036 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorVarShift()
|