Searched refs:F1 (Results 1 - 25 of 85) sorted by relevance

1234

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A D15.3.4.3-1.js61 function F1(a) function
112 actual = F1.apply(0, undefined);
113 expect = F1.apply(0);
117 actual = F1.apply("", undefined);
118 expect = F1.apply("");
122 actual = F1.apply(null, undefined);
123 expect = F1.apply(null);
127 actual = F1.apply(undefined, undefined);
128 expect = F1.apply(undefined);
137 actual = F1
[all...]
H A D15.3.4.4-1.js61 function F1(a) function
112 actual = F1.call(0, undefined);
113 expect = F1.call(0);
117 actual = F1.call("", undefined);
118 expect = F1.call("");
122 actual = F1.call(null, undefined);
123 expect = F1.call(null);
127 actual = F1.call(undefined, undefined);
128 expect = F1.call(undefined);
H A Dregress-94506.js42 function F1(arguments) function
78 actual = F1(5);
101 // Let's try calling F1 without providing a parameter -
103 actual = F1();
108 // Let's try calling F1 with too many parameters -
110 actual = F1(3,33,333);
H A Dregress-97921.js53 F1 = function() {innerValue = i;}; // capture value of i in inner function
54 F1();
52 F1 = function() {innerValue = i;}; // capture value of i in inner function function
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
H A Dp3.cpp25 friend struct F1;
27 struct F1 member_func();
29 struct F1 { }; struct in namespace:N
30 F1 f1() { return S1::IS1().member_func(); }
32 N::F1 f1_var = N::f1();
/external/clang/test/CodeGen/
H A D2002-05-23-TypeNameCollision.c10 foo F1; variable
/external/clang/test/FixIt/
H A Dfixit-vexing-parse.cpp29 int F1();
84 int n2, // expected-note {{change this ',' to a ';' to call 'F1'}}
85 F1(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp92 Function *F1 = buildFunction(M); local
95 void *F1_addr = EE->getPointerToFunction(F1);
97 EE->getPointerToFunction(F1); // Should do nothing.
98 EE->freeMachineCodeForFunction(F1);
105 EXPECT_EQ(F1, Listener.EmittedEvents[0].F);
124 F1->eraseFromParent();
133 Function *F1 = buildFunction(M); local
138 void *F1_addr = EE->getPointerToFunction(F1);
144 EE->freeMachineCodeForFunction(F1);
158 EXPECT_EQ(F1, Listener
[all...]
/external/v8/test/mjsunit/compiler/
H A Dinline-arguments.js61 function F1() { } function
62 function F2() { F1.apply(this, arguments); }
70 return F1.apply(this, arguments);
/external/chromium/base/
H A Dmd5.cc45 /* The four core functions - F1 is optimized somewhat */
47 /* #define F1(x, y, z) (x & y | ~x & z) */
48 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
49 #define F2(x, y, z) F1(z, x, y)
70 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
71 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
72 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
73 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
74 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
75 MD5STEP(F1,
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmd5c.c156 /* The four core functions - F1 is optimized somewhat */
158 /* #define F1(x, y, z) (x & y | ~x & z) */
159 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
160 #define F2(x, y, z) F1(z, x, y)
183 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
184 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
185 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
186 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
187 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
188 MD5STEP(F1,
[all...]
/external/libvpx/
H A Dmd5_utils.c150 /* The four core functions - F1 is optimized somewhat */
152 /* #define F1(x, y, z) (x & y | ~x & z) */
153 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
154 #define F2(x, y, z) F1(z, x, y)
177 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
178 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
179 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
180 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
181 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
182 MD5STEP(F1,
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DMD5.cpp113 // F1 is originally defined as (x & y | ~x & z), but optimized somewhat: 4 bit ops -> 3 bit ops.
114 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
115 #define F2(x, y, z) F1(z, x, y)
130 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
131 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
132 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
133 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
134 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
135 MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12);
136 MD5STEP(F1,
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5-internal.c188 /* The four core functions - F1 is optimized somewhat */
190 /* #define F1(x, y, z) (x & y | ~x & z) */
191 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
192 #define F2(x, y, z) F1(z, x, y)
214 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
215 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
216 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
217 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
218 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
219 MD5STEP(F1,
[all...]
H A Dmd4-internal.c178 /* The three core functions - F1 is optimized somewhat */
180 /* #define F1(x, y, z) (x & y | ~x & z) */
181 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
216 MD4STEP(F1, a, b, c, d, in[ 0], 3);
217 MD4STEP(F1, d, a, b, c, in[ 1], 7);
218 MD4STEP(F1, c, d, a, b, in[ 2], 11);
219 MD4STEP(F1, b, c, d, a, in[ 3], 19);
220 MD4STEP(F1, a, b, c, d, in[ 4], 3);
221 MD4STEP(F1, d, a, b, c, in[ 5], 7);
222 MD4STEP(F1,
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dmd5-internal.c188 /* The four core functions - F1 is optimized somewhat */
190 /* #define F1(x, y, z) (x & y | ~x & z) */
191 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
192 #define F2(x, y, z) F1(z, x, y)
214 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
215 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
216 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
217 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
218 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
219 MD5STEP(F1,
[all...]
H A Dmd4-internal.c178 /* The three core functions - F1 is optimized somewhat */
180 /* #define F1(x, y, z) (x & y | ~x & z) */
181 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
216 MD4STEP(F1, a, b, c, d, in[ 0], 3);
217 MD4STEP(F1, d, a, b, c, in[ 1], 7);
218 MD4STEP(F1, c, d, a, b, in[ 2], 11);
219 MD4STEP(F1, b, c, d, a, in[ 3], 19);
220 MD4STEP(F1, a, b, c, d, in[ 4], 3);
221 MD4STEP(F1, d, a, b, c, in[ 5], 7);
222 MD4STEP(F1,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5-internal.c188 /* The four core functions - F1 is optimized somewhat */
190 /* #define F1(x, y, z) (x & y | ~x & z) */
191 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
192 #define F2(x, y, z) F1(z, x, y)
214 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
215 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
216 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
217 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
218 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
219 MD5STEP(F1,
[all...]
H A Dmd4-internal.c178 /* The three core functions - F1 is optimized somewhat */
180 /* #define F1(x, y, z) (x & y | ~x & z) */
181 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
216 MD4STEP(F1, a, b, c, d, in[ 0], 3);
217 MD4STEP(F1, d, a, b, c, in[ 1], 7);
218 MD4STEP(F1, c, d, a, b, in[ 2], 11);
219 MD4STEP(F1, b, c, d, a, in[ 3], 19);
220 MD4STEP(F1, a, b, c, d, in[ 4], 3);
221 MD4STEP(F1, d, a, b, c, in[ 5], 7);
222 MD4STEP(F1,
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dmd4.c186 /* The three core functions - F1 is optimized somewhat */
188 /* #define F1(x, y, z) (x & y | ~x & z) */
189 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
224 MD4STEP(F1, a, b, c, d, in[ 0], 3);
225 MD4STEP(F1, d, a, b, c, in[ 1], 7);
226 MD4STEP(F1, c, d, a, b, in[ 2], 11);
227 MD4STEP(F1, b, c, d, a, in[ 3], 19);
228 MD4STEP(F1, a, b, c, d, in[ 4], 3);
229 MD4STEP(F1, d, a, b, c, in[ 5], 7);
230 MD4STEP(F1,
[all...]
H A Dmd5.c293 /* The four core functions - F1 is optimized somewhat */
295 /* #define F1(x, y, z) (x & y | ~x & z) */
296 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
297 #define F2(x, y, z) F1(z, x, y)
319 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
320 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
321 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
322 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
323 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
324 MD5STEP(F1,
[all...]
/external/llvm/unittests/Support/
H A DCasting.cpp88 foo &F1 = cast<foo>(B1); local
89 EXPECT_NE(&F1, null_foo);
119 const foo *F1 = dyn_cast<foo>(B2); local
120 EXPECT_NE(F1, null_foo);
133 const foo *F1 = dyn_cast_or_null<foo>(B2); local
134 EXPECT_NE(F1, null_foo);
/external/clang/test/Sema/
H A Dwarn-bad-function-cast.c31 (enum f { F1 })ef(); enumerator in enum:f
/external/clang/test/SemaCXX/
H A Dwarn-unique-enum.cpp14 enum F { F1 }; enumerator in enum:F
/external/flac/libFLAC/
H A Dmd5.c40 /* The four core functions - F1 is optimized somewhat */
42 /* #define F1(x, y, z) (x & y | ~x & z) */
43 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
44 #define F2(x, y, z) F1(z, x, y)
66 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
67 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
68 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
69 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
70 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
71 MD5STEP(F1,
[all...]

Completed in 500 milliseconds

1234