HomeSort by relevance Sort by last modified time
    Searched refs:ROR (Results 1 - 17 of 17) sorted by null

  /external/v8/test/cctest/
test-disasm-arm.cc 161 COMPARE(sbc(r7, r1, Operand(ip, ROR, 1), LeaveCC, hi),
162 "80c170ec sbchi r7, r1, ip, ror #1");
163 COMPARE(sbc(r7, r9, Operand(ip, ROR, 4)),
164 "e0c9726c sbc r7, r9, ip, ror #4");
167 COMPARE(sbc(r7, ip, Operand(ip, ROR, 31), SetCC, hi),
168 "80dc7fec sbchis r7, ip, ip, ror #31");
188 COMPARE(teq(r7, Operand(r5, ROR, r0), lt),
189 "b1370075 teqlt r7, r5, ror r0");
190 COMPARE(teq(r7, Operand(r6, ROR, lr)),
191 "e1370e76 teq r7, r6, ror lr")
    [all...]
  /external/openssl/crypto/0.9.9-dev/sha/
sha1-armv4-large.s 15 mov r5,r5,ror#30
16 mov r6,r6,ror#30
17 mov r7,r7,ror#30 @ [6]
22 add r7,r8,r7,ror#2 @ E+=K_00_19
26 add r7,r7,r3,ror#27 @ E+=ROR(A,27)
31 and r11,r4,r11,ror#2
32 eor r11,r11,r6,ror#2 @ F_00_19(B,C,D)
37 add r6,r8,r6,ror#2 @ E+=K_00_19
41 add r6,r6,r7,ror#27 @ E+=ROR(A,27
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
rc5.c 202 B = ROR(B - K[3], A) ^ A;
203 A = ROR(A - K[2], B) ^ B;
204 B = ROR(B - K[1], A) ^ A;
205 A = ROR(A - K[0], B) ^ B;
210 B = ROR(B - K[1], A) ^ A;
211 A = ROR(A - K[0], B) ^ B;
rc6.c 196 c = ROR(c - K[1], t) ^ u; \
197 a = ROR(a - K[0], u) ^ t; K -= 2;
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h 240 #define ROR(x,n) _lrotr(x,n)
255 static inline unsigned ROR(unsigned word, int i)
284 #define RORc ROR
298 static inline unsigned ROR(unsigned word, int i)
327 #define RORc ROR
336 #define ROR(x, y) ( ((((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)((y)&31)) | ((unsigned long)(x)<<(unsigned long)(32-((y)&31)))) & 0xFFFFFFFFUL)
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 41 MOV(AL, 0, s.reg, reg_imm(s.reg, ROR, 8));
43 MOV(AL, 0, s.reg, reg_imm(s.reg, ROR, 8));
46 MOV(AL, 0, s.reg, reg_imm(s.reg, ROR, 16));
ARMAssemblerInterface.cpp 95 return (ROR<<5) | (Rm&0xF);
ARMAssemblerInterface.h 43 LSL, LSR, ASR, ROR
GGLAssembler.cpp 208 reg_imm(parts.count.reg, ROR, GGL_DITHER_ORDER_SHIFT));
212 reg_imm(parts.count.reg, ROR, 32 - GGL_DITHER_ORDER_SHIFT));
    [all...]
  /external/v8/src/arm/
constants-arm.h 170 ROR = 3, // Rotate right
disasm-arm.cc 196 "lsl", "lsr", "asr", "ror"
215 if ((shift == ROR) && (shift_amount == 0)) {
    [all...]
simulator-arm.cc 941 if ((shift == ROR) && (shift_amount == 0)) {
990 case ROR: {
1062 case ROR: {
    [all...]
assembler-arm.h 322 ROR = 3 << 5,
    [all...]
assembler-thumb2.h 322 ROR = 3 << 5,
    [all...]
assembler-arm.cc 246 ASSERT(shift_op != ROR || shift_imm != 0); // use RRX if you mean it
252 // encoded as ROR with shift_imm == 0
254 shift_op_ = ROR;
    [all...]
assembler-thumb2.cc 226 ASSERT(shift_op != ROR || shift_imm != 0); // use RRX if you mean it
232 // encoded as ROR with shift_imm == 0
234 shift_op_ = ROR;
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 297 \index{ROL} \index{ROR} \index{ROL64} \index{ROR64} \index{ROLc} \index{RORc} \index{ROL64c} \index{ROR64c}
304 \hline ROR(x, y) & {\bf unsigned long} x, {\bf unsigned long} y & $x >> y, 0 \le y \le 31$ \\
    [all...]

Completed in 321 milliseconds