HomeSort by relevance Sort by last modified time
    Searched refs:ROTATE (Results 1 - 25 of 60) sorted by null

1 2 3

  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffect_StyleTest.java 28 assertEquals(Style.ROTATE, Style.valueOf("ROTATE"));
37 Style.ROTATE,
  /frameworks/base/graphics/java/android/graphics/
PathDashPathEffect.java 23 ROTATE(1), //!< rotate the shape about its center
  /external/openssl/crypto/
md32_common.h 141 * Engage compiler specific rotate intrinsic function if available.
143 #undef ROTATE
146 # define ROTATE(a,n) _lrotl(a,n)
149 # define ROTATE(a,n) __rlwinm(a,n,0,31)
152 # define ROTATE(a,n) ( n<24 ? __rol(a,n) : __ror(a,32-n) )
154 # define ROTATE(a,n) __rol(a,n)
164 # define ROTATE(a,n) ({ register unsigned int ret; \
174 # define ROTATE(a,n) ({ register unsigned int ret; \
182 # define ROTATE(a,n) ({ register unsigned int ret; \
192 #ifndef ROTATE
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/des/
internal.h 193 t = ROTATE(t, 4); \
206 #define ROTATE(a, n) (_lrotr(a, n))
208 #define ROTATE(a, n) (_rotr(a, n))
212 #define ROTATE(a, n) \
220 #ifndef ROTATE
221 #define ROTATE(a, n) (((a) >> (n)) + ((a) << (32 - (n))))
des.c 345 *(k++) = ROTATE(t2, 30) & 0xffffffffL;
348 *(k++) = ROTATE(t2, 26) & 0xffffffffL;
360 /* Things have been modified so that the initial rotate is done outside
367 r = ROTATE(r, 29) & 0xffffffffL;
368 l = ROTATE(l, 29) & 0xffffffffL;
409 /* rotate and clear the top bits on machines with 8byte longs */
410 l = ROTATE(l, 3) & 0xffffffffL;
411 r = ROTATE(r, 3) & 0xffffffffL;
425 /* Things have been modified so that the initial rotate is done outside the
431 r = ROTATE(r, 29) & 0xffffffffL
    [all...]
  /external/openssl/crypto/md4/
md4_locl.h 104 a=ROTATE(a,s); };
108 a=ROTATE(a,s); };\
112 a=ROTATE(a,s); };
  /external/openssl/crypto/md5/
md5_locl.h 114 a=ROTATE(a,s); \
119 a=ROTATE(a,s); \
124 a=ROTATE(a,s); \
129 a=ROTATE(a,s); \
  /external/chromium_org/third_party/boringssl/src/crypto/chacha/
chacha_generic.c 26 #define ROTATE(v, n) (((v) << (n)) | ((v) >> (32 - (n))))
45 x[a] = PLUS(x[a],x[b]); x[d] = ROTATE(XOR(x[d],x[a]),16); \
46 x[c] = PLUS(x[c],x[d]); x[b] = ROTATE(XOR(x[b],x[c]),12); \
47 x[a] = PLUS(x[a],x[b]); x[d] = ROTATE(XOR(x[d],x[a]), 8); \
48 x[c] = PLUS(x[c],x[d]); x[b] = ROTATE(XOR(x[b],x[c]), 7);
  /external/openssl/crypto/des/
des_enc.c 77 /* Things have been modified so that the initial rotate is
85 r=ROTATE(r,29)&0xffffffffL;
86 l=ROTATE(l,29)&0xffffffffL;
146 /* rotate and clear the top bits on machines with 8byte longs */
147 l=ROTATE(l,3)&0xffffffffL;
148 r=ROTATE(r,3)&0xffffffffL;
170 /* Things have been modified so that the initial rotate is
177 r=ROTATE(r,29)&0xffffffffL;
178 l=ROTATE(l,29)&0xffffffffL;
237 /* rotate and clear the top bits on machines with 8byte longs *
    [all...]
des_locl.h 164 #define ROTATE(a,n) (_lrotr(a,n))
167 # define ROTATE(a,n) ({ register unsigned int ret; \
176 #ifndef ROTATE
177 #define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n))))
220 t=ROTATE(t,4); \
248 t=ROTATE(t,4); \
272 t=ROTATE(t,4); \
292 t=ROTATE(t,6); \
321 t=ROTATE(t,6); \
350 t=ROTATE(t,4);
    [all...]
fcrypt_b.c 131 l=ROTATE(l,3)&0xffffffffL;
132 r=ROTATE(r,3)&0xffffffffL;
  /external/chromium_org/third_party/boringssl/src/crypto/digest/
md32_common.h 149 * Engage compiler specific rotate intrinsic function if available.
151 #undef ROTATE
153 # define ROTATE(a,n) _lrotl(a,n)
155 # define ROTATE(a,n) _rotl(a,n)
164 # define ROTATE(a,n) ({ register unsigned int ret; \
175 #ifndef ROTATE
176 #define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
  /external/openssl/crypto/sha/
sha_locl.h 100 ix=(a)=ROTATE((a),1); \
104 ix=(a)=ROTATE((a),1) \
160 (f)=xi+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
161 (b)=ROTATE((b),30);
165 (f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
166 (b)=ROTATE((b),30);
170 (f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
171 (b)=ROTATE((b),30);
175 (f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
176 (b)=ROTATE((b),30)
    [all...]
sha256.c 137 * FIPS specification refers to right rotations, while our ROTATE macro
141 #define Sigma0(x) (ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10))
142 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7))
143 #define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3))
144 #define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/sha/
sha256.c 203 /* FIPS specification refers to right rotations, while our ROTATE macro
206 #define Sigma0(x) (ROTATE((x), 30) ^ ROTATE((x), 19) ^ ROTATE((x), 10))
207 #define Sigma1(x) (ROTATE((x), 26) ^ ROTATE((x), 21) ^ ROTATE((x), 7))
208 #define sigma0(x) (ROTATE((x), 25) ^ ROTATE((x), 14) ^ ((x) >> 3))
209 #define sigma1(x) (ROTATE((x), 15) ^ ROTATE((x), 13) ^ ((x) >> 10)
    [all...]
sha1.c 121 ((a) = (ia ^ ib ^ ic ^ id), ix = (a) = ROTATE((a), 1))
146 (f) = xi + (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
147 (b) = ROTATE((b), 30);
151 (f) += (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
152 (b) = ROTATE((b), 30);
156 (f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
157 (b) = ROTATE((b), 30);
161 (f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
162 (b) = ROTATE((b), 30);
166 (f) += (e) + K_40_59 + ROTATE((a), 5) + F_40_59((b), (c), (d));
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/crypt/
chacha_private.h 40 #define ROTATE(v,c) (ROTL32(v,c))
46 a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
47 c = PLUS(c,d); b = ROTATE(XOR(b,c),12); \
48 a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
49 c = PLUS(c,d); b = ROTATE(XOR(b,c), 7);
  /external/openssl/crypto/aes/
aes_x86core.c 91 #undef ROTATE
93 # define ROTATE(a,n) _lrotl(a,n)
96 # define ROTATE(a,n) ({ register unsigned int ret; \
613 #if defined(ROTATE)
614 rk[j] = tpe ^ ROTATE(tpd,16) ^
615 ROTATE(tp9,8) ^ ROTATE(tpb,24);
700 #if defined(ROTATE)
701 t[i] = r2 ^ ROTATE(r2,24) ^ ROTATE(r0,24)
    [all...]
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SgTransform.java 33 ROTATE(2),
SceneGraphRS.java 163 mGroup1.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, 15.0f), TransformType.ROTATE);
166 mRobot1.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, 20.0f), TransformType.ROTATE);
170 mRobot2.setTransform(1, new Float4(0.0f, 1.0f, 0.0f, -20.0f), TransformType.ROTATE);
  /frameworks/native/services/surfaceflinger/
Transform.h 57 ROTATE = 0x2,
  /external/mdnsresponder/mDNSCore/
DNSDigest.c 412 * Engage compiler specific rotate intrinsic function if available.
414 #undef ROTATE
417 # define ROTATE(a,n) _lrotl(a,n)
420 # define ROTATE(a,n) (unsigned MD32_REG_T)__rlwinm((int)a,n,0,31)
423 # define ROTATE(a,n) (n<24 ? __rol(a,n) : __ror(a,32-n))
425 # define ROTATE(a,n) __rol(a,n)
441 # define ROTATE(a,n) ({ register unsigned int ret; \
450 # define ROTATE(a,n) ({ register unsigned int ret; \
496 #ifdef ROTATE
497 /* 5 instructions with rotate instruction, else 9 *
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/md4/
md4.c 107 a = ROTATE(a, s); \
113 a = ROTATE(a, s); \
119 a = ROTATE(a, s); \
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 49 PathDashPathEffect.Style.ROTATE);
  /external/chromium_org/third_party/boringssl/src/crypto/md5/
md5.c 132 a=ROTATE(a,s); \
137 a=ROTATE(a,s); \
142 a=ROTATE(a,s); \
147 a=ROTATE(a,s); \

Completed in 594 milliseconds

1 2 3