Searched refs:LShift (Results 1 – 10 of 10) 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/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | util.py | 308 _ast.LShift = type(m.body[5].value.left.op)
|
D | _ast_util.py | 48 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/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/cpython2/Python/ |
D | ast.c | 342 return LShift; in get_operator() 505 return LShift; in ast_for_augassign()
|
D | compile.c | 2226 case LShift: in binop() 2293 case LShift: in inplace_binop()
|
D | Python-ast.c | 3055 case LShift: in ast2obj_operator() 6214 *out = LShift; in obj2ast_operator()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 19718 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()
|