OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rotl32
(Results
1 - 4
of
4
) sorted by null
/external/llvm/test/CodeGen/PowerPC/
rotl-2.ll
5
define i32 @
rotl32
(i32 %A, i8 %Amt) nounwind {
/external/llvm/test/CodeGen/X86/
rotate.ll
4
define i32 @
rotl32
(i32 %A, i8 %Amt) {
/external/llvm/lib/Target/ARM/
ARMAddressingModes.h
102
///
rotl32
- Rotate a 32-bit unsigned value left by a specified # bits.
104
static inline unsigned
rotl32
(unsigned Val, unsigned Amt) {
function in namespace:llvm::ARM_AM
194
return
rotl32
(Arg, RotAmt) | ((RotAmt>>1) << 8);
/external/chromium/crypto/third_party/nss/
sha512.cc
147
#define
ROTL32
(x,n) _lrotl(x,n)
150
#define
ROTL32
(x,n) ((x << n) | (x >> ((8 * sizeof x) - n)))
[
all
...]
Completed in 172 milliseconds