/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
StructPadTest.java | 27 Float4 F4 = new Float4(1.0f, 2.0f, 3.0f, 4.0f); 30 S.set_f4(0, F4, true);
|
/libcore/luni/src/main/java/java/security/spec/ |
RSAKeyGenParameterSpec.java | 33 * The value of the public exponent {@code F4} = 65537. 35 public static final BigInteger F4 = BigInteger.valueOf(65537L);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
md5c.c | 162 #define F4(x, y, z) (y ^ (x | ~z)) 234 MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); 235 MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); 236 MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); 237 MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); 238 MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); 239 MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); 240 MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); 241 MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); 242 MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6) [all...] |
/external/libvpx/ |
md5_utils.c | 156 #define F4(x, y, z) (y ^ (x | ~z)) 228 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); 229 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); 230 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); 231 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); 232 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); 233 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); 234 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); 235 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); 236 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
regress-94506.js | 65 function F4() 96 actual = typeof F4();
|
/external/webkit/Source/JavaScriptCore/wtf/ |
MD5.cpp | 117 #define F4(x, y, z) (y ^ (x | ~z)) 181 MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); 182 MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); 183 MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); 184 MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); 185 MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); 186 MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); 187 MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); 188 MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); 189 MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6) [all...] |
/external/openssl/crypto/ripemd/ |
rmd_locl.h | 105 #define F4(x,y,z) (((x)&(z))|((y)&(~(z)))) 109 * Transformed F2 and F4 are courtesy of Wei Dai <weidai@eskimo.com> 114 #define F4(x,y,z) ((((x) ^ (y)) & (z)) ^ (y)) 142 a+=F4(b,c,d)+X(w)+K; \
|
/external/valgrind/main/memcheck/tests/ |
sh-mem.c | 17 typedef float F4; 211 DO(4, F4, U4, /*isF4*/1);
|
sh-mem-random.c | 18 typedef float F4; 163 case 4: { // F4 166 *(F4*)(arr+dst) = *(F4*)(arr+src); 209 printf("counts 1/2/4/8/F4/F8: %d %d %d %d %d %d\n",
|
/external/wpa_supplicant_8/src/crypto/ |
md5-internal.c | 200 #define F4(x, y, z) (y ^ (x | ~z)) 271 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); 272 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); 273 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); 274 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); 275 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); 276 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); 277 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); 278 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); 279 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6) [all...] |
/external/chromium/base/ |
md5.cc | 51 #define F4(x, y, z) (y ^ (x | ~z)) 121 MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); 122 MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); 123 MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); 124 MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); 125 MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); 126 MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); 127 MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); 128 MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); 129 MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6) [all...] |
/external/flac/libFLAC/ |
md5.c | 46 #define F4(x, y, z) (y ^ (x | ~z)) 117 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); 118 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); 119 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); 120 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); 121 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); 122 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); 123 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); 124 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); 125 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6) [all...] |
/external/llvm/unittests/Support/ |
Casting.cpp | 90 const foo *F4 = cast<foo>(B2); 91 EXPECT_NE(F4, null_foo); 122 // foo *F4 = dyn_cast<foo>(fub()); // not permittible 123 // EXPECT_EQ(F4, null_foo); 135 foo *F4 = dyn_cast_or_null<foo>(fub()); 136 EXPECT_EQ(F4, null_foo);
|
/external/v8/test/cctest/ |
test-assembler-arm.cc | 43 typedef Object* (*F4)(void* p0, void* p1, int p2, int p3, int p4); 680 F4 fn = FUNCTION_CAST<F4>(Code::cast(code)->entry()); 795 F4 fn = FUNCTION_CAST<F4>(Code::cast(code)->entry()); 906 F4 fn = FUNCTION_CAST<F4>(Code::cast(code)->entry());
|
test-assembler-ia32.cc | 202 typedef int (*F4)(double x); 229 F4 f = FUNCTION_CAST<F4>(code->entry());
|
/external/wpa_supplicant/ |
md5.c | 299 #define F4(x, y, z) (y ^ (x | ~z)) 370 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); 371 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); 372 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); 373 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); 374 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); 375 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); 376 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); 377 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); 378 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
md5.c | 299 #define F4(x, y, z) (y ^ (x | ~z)) 370 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6); 371 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10); 372 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15); 373 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21); 374 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6); 375 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); 376 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15); 377 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21); 378 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6) [all...] |
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
UT_vector.java | 49 Float4 F4 = s.get_f4(); 50 if (F4.x != 1.0f || F4.y != 2.0f || F4.z != 3.0f || F4.w != 4.0f) { 53 F4.x = 2.99f; 54 F4.y = 3.99f; 55 F4.z = 4.99f; 56 F4.w = 5.99f; 57 s.set_f4(F4); [all...] |
/prebuilt/darwin-x86/swt/ |
swt.jar | |
/prebuilt/darwin-x86_64/swt/ |
swt.jar | |
/prebuilt/linux-x86/swt/ |
swt.jar | |
/prebuilt/linux-x86_64/swt/ |
swt.jar | |
/prebuilt/windows/swt/ |
swt.jar | |
/prebuilt/windows-x86_64/swt/ |
swt.jar | |
/prebuilt/sdk/10/ |
android.jar | |