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

1 2

  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 10 foo F1;
2002-07-14-MiscTests3.c 51 int F1(struct Quad *Q, int i) { /* Pass Q by address */
  /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/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/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/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/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 150 Function *F1 = EE1->FindFunctionNamed("foo1");
151 void *foo1 = EE1->getPointerToFunction(F1);
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/v8/test/cctest/
test-assembler-x64.cc 74 typedef int (*F1)(int64_t x);
test-assembler-arm.cc 40 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4);
114 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
160 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
383 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
418 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
494 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry())
    [all...]
test-assembler-ia32.cc 43 typedef int (*F1)(int x);
118 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
160 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
  /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/dropbear/libtomcrypt/src/hashes/
sha1.c 40 #define F1(x,y,z) (x ^ y ^ z)
75 #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  /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();
  /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/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...]
  /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/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/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/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/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/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...]

Completed in 565 milliseconds

1 2