Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/fipsmodule/bn/
Dbn_tests.txt3830 # 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/
DPython.asdl94 operator = Add | Sub | Mult | Div | Mod | Pow | LShift
/external/python/cpython3/Parser/
DPython.asdl106 operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf.py101 gast.Add, gast.Sub, gast.Mult, gast.Div, gast.Mod, gast.Pow, gast.LShift,
/external/python/cpython3/Python/
Dast_unparse.c134 case LShift: op = " << "; pr = PR_SHIFT; break; in append_ast_binop()
Dast_opt.c290 case LShift: in fold_binop()
Dast.c907 return LShift; in get_operator()
1110 return LShift; in ast_for_augassign()
Dcompile.c3104 case LShift: in binop()
3141 case LShift: in inplace_binop()
DPython-ast.c3602 case LShift: in ast2obj_operator()
7415 *out = LShift; in obj2ast_operator()
/external/python/cpython2/Include/
DPython-ast.h18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7, enumerator
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3552 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/
DPython-ast.h19 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
/external/python/cpython2/Python/
Dast.c342 return LShift; in get_operator()
505 return LShift; in ast_for_augassign()
Dcompile.c2228 case LShift: in binop()
2295 case LShift: in inplace_binop()
DPython-ast.c3055 case LShift: in ast2obj_operator()
6214 *out = LShift; in obj2ast_operator()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp19718 bool LShift = VT.is128BitVector() || in SupportedVectorShiftWithImm() local
19721 bool AShift = LShift && (Subtarget.hasVLX() || in SupportedVectorShiftWithImm()
19723 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorShiftWithImm()
19749 bool LShift = VT.is128BitVector() || VT.is256BitVector(); in SupportedVectorVarShift() local
19750 bool AShift = LShift && VT != MVT::v2i64 && VT != MVT::v4i64; in SupportedVectorVarShift()
19751 return (Opcode == ISD::SRA) ? AShift : LShift; in SupportedVectorVarShift()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp23003 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()