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

1 2 3 4

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
15.3.4.3-1.js 61 function F1(a)
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.apply(0, null)
    [all...]
15.3.4.4-1.js 61 function F1(a)
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);
regress-94506.js 42 function F1(arguments)
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);
regress-97921.js 53 F1 = function() {innerValue = i;}; // capture value of i in inner function
54 F1();
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 10 foo F1;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 25 friend struct F1;
26 friend void f1(int);
27 struct F1 member_func();
29 struct F1 { };
30 F1 f1() { return S1::IS1().member_func(); } function in namespace:N
32 N::F1 f1_var = N::f1();
  /external/clang/test/FixIt/
fixit.cpp 82 class F1 {
91 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
96 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 92 Function *F1 = buildFunction(M);
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);
138 void *F1_addr = EE->getPointerToFunction(F1);
144 EE->freeMachineCodeForFunction(F1);
158 EXPECT_EQ(F1, Listener1.EmittedEvents[0].F)
    [all...]
  /external/chromium/base/
md5.cc 45 /* 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)))
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, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
md5c.c 156 /* 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)))
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, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /external/libvpx/
md5_utils.c 150 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
MD5.cpp 113 // 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)))
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, c, d, a, b, in[ 6]+0xa8304613, 17)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
md5-internal.c 194 /* The four core functions - F1 is optimized somewhat */
196 /* #define F1(x, y, z) (x & y | ~x & z) */
197 #define F1(x, y, z) (z ^ (x & (y ^ z)))
198 #define F2(x, y, z) F1(z, x, y)
220 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
221 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
222 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
223 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
224 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
225 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
md4-internal.c 184 /* The three core functions - F1 is optimized somewhat */
186 /* #define F1(x, y, z) (x & y | ~x & z) */
187 #define F1(x, y, z) (z ^ (x & (y ^ z)))
222 MD4STEP(F1, a, b, c, d, in[ 0], 3);
223 MD4STEP(F1, d, a, b, c, in[ 1], 7);
224 MD4STEP(F1, c, d, a, b, in[ 2], 11);
225 MD4STEP(F1, b, c, d, a, in[ 3], 19);
226 MD4STEP(F1, a, b, c, d, in[ 4], 3);
227 MD4STEP(F1, d, a, b, c, in[ 5], 7);
228 MD4STEP(F1, c, d, a, b, in[ 6], 11)
    [all...]
  /external/wpa_supplicant/
md4.c 186 /* 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)))
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, c, d, a, b, in[ 6], 11)
    [all...]
md5.c 293 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md4.c 186 /* 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)))
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, c, d, a, b, in[ 6], 11)
    [all...]
md5.c 293 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /external/llvm/unittests/Support/
Casting.cpp 86 foo &F1 = cast<foo>(B1);
87 EXPECT_NE(&F1, null_foo);
116 const foo *F1 = dyn_cast<foo>(B2);
117 EXPECT_NE(F1, null_foo);
129 const foo *F1 = dyn_cast_or_null<foo>(B2);
130 EXPECT_NE(F1, null_foo);
  /external/flac/libFLAC/
md5.c 40 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 158 FunctionComparator(const TargetData *TD, const Function *F1,
160 : F1(F1), F2(F2), TD(TD) {}
191 const Function *F1, *F2;
378 // Check for function @f1 referring to itself and function @f2 referring to
381 if (V1 == F1 && V2 == F2)
383 if (V1 == F2 && V2 == F1)
390 // TODO: constant expressions with GEP or references to F1 or F2.
465 if (F1->getAttributes() != F2->getAttributes())
468 if (F1->hasGC() != F2->hasGC()
    [all...]
  /external/openssl/crypto/ripemd/
rmd_locl.h 102 #define F1(x,y,z) ((x)^(y)^(z))
111 #define F1(x,y,z) ((x) ^ (y) ^ (z))
127 a+=F1(b,c,d)+X(w); \
  /external/v8/test/mjsunit/tools/
profile.js 69 'lib1-f1': 0x11110, 'lib1-f2': 0x11210,
70 'lib2-f1': 0x21110, 'lib2-f2': 0x21210,
71 'T: F1': 0x50110, 'T: F2': 0x50210, 'T: F3': 0x50410 };
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900);
81 this.profile.addCode('T', 'F1', 0x50100, 0x100);
106 this.enter('lib1-f1');
108 this.enter('T: F1');
112 this.enter('lib2-f1');
113 this.enter('lib2-f1');
    [all...]
  /external/clang/test/SemaCXX/
warn-enum-compare.cpp 9 enum Foo {F1, F2, F3};
35 while (a == name1::F1);
50 while ((a) == name1::F1);
60 while ((a) == (name1::F1));
  /external/llvm/lib/Support/
FileUtilities.cpp 204 OwningPtr<MemoryBuffer> F1;
205 if (error_code ec = MemoryBuffer::getFile(FileA.c_str(), F1)) {
218 const char *File1Start = F1->getBufferStart();
220 const char *File1End = F1->getBufferEnd();

Completed in 1936 milliseconds

1 2 3 4