Searched defs:F2 (Results 1 - 17 of 17) sorted by relevance

/external/v8/test/cctest/
H A Dtest-assembler-mips.cc43 typedef Object* (*F2)(int x, int y, int p2, int p3, int p4); typedef
87 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
251 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
H A Dtest-assembler-x64.cc69 typedef int (*F2)(int64_t x, int64_t y); typedef
99 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
130 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
151 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
174 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
176 result = FUNCTION_CAST<F2>(buffer)(0x100000000l, 0x100000000l);
178 result = FUNCTION_CAST<F2>(buffer)(-0x100000000l, 0x100000000l);
211 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
239 int result = FUNCTION_CAST<F2>(buffer)(3, 2);
H A Dtest-assembler-arm.cc41 typedef Object* (*F2)(int x, int y, int p2, int p3, int p4); typedef
80 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
H A Dtest-assembler-ia32.cc44 typedef int (*F2)(int x, int y); typedef
80 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A D15.3.4.3-1.js66 function F2() function
162 actual = F2.apply(undefined);
163 expect = F2.apply();
172 actual = F2.apply(null);
173 expect = F2.apply();
H A D15.3.4.4-1.js66 function F2() function
137 actual = F2.call(undefined);
138 expect = F2.call();
147 actual = F2.call(null);
148 expect = F2.call();
H A Dregress-94506.js49 function F2() function
84 actual = F2();
/external/dropbear/libtomcrypt/src/hashes/
H A Dsha1.c41 #define F2(x,y,z) ((x & y) | (z & (x | y))) macro
76 #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
/external/libvpx/
H A Dmd5_utils.c156 #define F2(x, y, z) F1(z, x, y) macro
196 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
197 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
198 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
199 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
200 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
201 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
202 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
203 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
204 MD5STEP(F2,
[all...]
/external/openssl/crypto/ripemd/
H A Drmd_locl.h103 #define F2(x,y,z) (((x)&(y))|((~x)&z))
109 * Transformed F2 and F4 are courtesy of Wei Dai <weidai@eskimo.com>
112 #define F2(x,y,z) ((((y) ^ (z)) & (x)) ^ (z)) macro
132 a+=F2(b,c,d)+X(w)+K; \
/external/chromium/base/
H A Dmd5.cc49 #define F2(x, y, z) F1(z, x, y) macro
87 MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5);
88 MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9);
89 MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14);
90 MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20);
91 MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5);
92 MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9);
93 MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14);
94 MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20);
95 MD5STEP(F2,
[all...]
/external/wpa_supplicant/
H A Dmd4.c190 #define F2(x, y, z) ((x & y) | (x & z) | (y & z)) macro
241 MD4STEP(F2, a, b, c, d, in[ 0] + 0x5a827999, 3);
242 MD4STEP(F2, d, a, b, c, in[ 4] + 0x5a827999, 5);
243 MD4STEP(F2, c, d, a, b, in[ 8] + 0x5a827999, 9);
244 MD4STEP(F2, b, c, d, a, in[12] + 0x5a827999, 13);
245 MD4STEP(F2, a, b, c, d, in[ 1] + 0x5a827999, 3);
246 MD4STEP(F2, d, a, b, c, in[ 5] + 0x5a827999, 5);
247 MD4STEP(F2, c, d, a, b, in[ 9] + 0x5a827999, 9);
248 MD4STEP(F2, b, c, d, a, in[13] + 0x5a827999, 13);
249 MD4STEP(F2,
[all...]
H A Dmd5.c297 #define F2(x, y, z) F1(z, x, y) macro
336 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
337 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
338 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
339 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
340 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
341 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
342 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
343 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
344 MD5STEP(F2,
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dmd4.c190 #define F2(x, y, z) ((x & y) | (x & z) | (y & z)) macro
241 MD4STEP(F2, a, b, c, d, in[ 0] + 0x5a827999, 3);
242 MD4STEP(F2, d, a, b, c, in[ 4] + 0x5a827999, 5);
243 MD4STEP(F2, c, d, a, b, in[ 8] + 0x5a827999, 9);
244 MD4STEP(F2, b, c, d, a, in[12] + 0x5a827999, 13);
245 MD4STEP(F2, a, b, c, d, in[ 1] + 0x5a827999, 3);
246 MD4STEP(F2, d, a, b, c, in[ 5] + 0x5a827999, 5);
247 MD4STEP(F2, c, d, a, b, in[ 9] + 0x5a827999, 9);
248 MD4STEP(F2, b, c, d, a, in[13] + 0x5a827999, 13);
249 MD4STEP(F2,
[all...]
H A Dmd5.c297 #define F2(x, y, z) F1(z, x, y) macro
336 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
337 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
338 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
339 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
340 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
341 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
342 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
343 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
344 MD5STEP(F2,
[all...]
/external/webkit/WebCore/inspector/front-end/
H A DKeyboardShortcut.js62 F2: 113,
/external/svox/pico/lib/
H A Dpicopam.c222 picoos_uint8 f2_overall_word; /* F2 */
314 #define F2 45 macro
1848 outVect[T_F2] = inVect[F2];
3851 case F2:
3858 pam->sSyllFeats[pam->nCurrSyllable].phoneV[F2]
3862 pam->sSyllFeats[pam->nCurrSyllable].phoneV[F2] = 0;
4753 pam->sSyllFeats[pam->nCurrSyllable].phoneV[F2]
4762 = pam->sSyllFeats[pam->nCurrSyllable].phoneV[F2]

Completed in 508 milliseconds