Home
last modified time | relevance | path

Searched defs:rol (Results 1 – 18 of 18) sorted by relevance

/third_party/ffmpeg/libavformat/
Dredspark.c29 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/mesa3d/src/intel/compiler/
Dtest_fs_scoreboard.cpp734 fs_inst *rol = instruction(else_body, 0); in TEST_F() local
779 fs_inst *rol = instruction(else_body, 4); in TEST_F() local
824 fs_inst *rol = instruction(else_body, 0); in TEST_F() local
870 fs_inst *rol = instruction(else_body, 0); in TEST_F() local
/third_party/selinux/libselinux/src/
Dsha1.c43 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/mesa3d/src/util/sha1/
Dsha1.c22 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/toybox/toys/lsb/
Dmd5sum.c169 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dsha1-internal.c130 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dsha1-internal.c130 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSHA1.cpp30 static inline uint32_t rol(uint32_t Number, int Bits) { in rol() function
/third_party/musl/src/crypt/
Dcrypt_md5.c20 static uint32_t rol(uint32_t n, int k) { return (n << k) | (n >> (32-k)); } in rol() function
/third_party/ffmpeg/libavutil/
Dsha.c50 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
Dripemd.c89 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeARM_32.c1623 sljit_u32 rol; in get_imm() local
1664 sljit_uw rol; in generate_int() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DBitTracker.cpp253 BT::RegisterCell &BT::RegisterCell::rol(uint16_t Sh) { in rol() function in BT::RegisterCell
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceAssemblerX8632.cpp2547 void AssemblerX8632::rol(Type Ty, GPRRegister reg, const Immediate &imm) { in rol() function in Ice::X8632::AssemblerX8632
2551 void AssemblerX8632::rol(Type Ty, GPRRegister operand, GPRRegister shifter) { in rol() function in Ice::X8632::AssemblerX8632
2555 void AssemblerX8632::rol(Type Ty, const AsmAddress &operand, in rol() function in Ice::X8632::AssemblerX8632
DIceAssemblerX8664.cpp2686 void AssemblerX8664::rol(Type Ty, GPRRegister reg, const Immediate &imm) { in rol() function in Ice::X8664::AssemblerX8664
2690 void AssemblerX8664::rol(Type Ty, GPRRegister operand, GPRRegister shifter) { in rol() function in Ice::X8664::AssemblerX8664
2694 void AssemblerX8664::rol(Type Ty, const AsmAddress &operand, in rol() function in Ice::X8664::AssemblerX8664
/third_party/node/deps/v8/src/codegen/ia32/
Dassembler-ia32.h654 void rol(Register dst, uint8_t imm8) { rol(Operand(dst), imm8); } in rol() function
Dassembler-ia32.cc1163 void Assembler::rol(Operand dst, uint8_t imm8) { in rol() function in v8::internal::Assembler
/third_party/node/deps/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc1240 __ rol(i.OutputOperand(), i.InputInt5(1)); in AssembleArchInstruction() local