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

12345

/external/llvm/unittests/ADT/
H A DBitmaskEnumTest.cpp18 F1 = 1, enumerator in enum:__anon13684::Flags
26 Flags f = F1 | F2;
34 Flags f = F1;
40 (f |= F3) = F1;
41 EXPECT_EQ(F1, f);
48 f = (f | F3) & (F1 | F2 | F3);
53 Flags f = F1 | F2 | F3;
54 f &= F1 | F2;
58 (f &= F1) = F3;
63 Flags f = (F1 | F
88 F1 = 1, member in class:__anon13684::FlagsClass
101 enum Flags { F0 = 0, F1 = 1, F2 = 2, F3 = 4, LLVM_MARK_AS_BITMASK_ENUM(F3) }; enumerator in enum:__anon13684::Container::Flags
119 F1 = 1, enumerator in enum:foo::bar::__anon13685::FlagsInNamespace
[all...]
/external/llvm/unittests/IR/
H A DFunctionTest.cpp43 std::unique_ptr<Function> F1(
44 Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
46 Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
47 EXPECT_TRUE(F1->hasLazyArguments());
54 F1->stealArgumentListFrom(*F2);
55 EXPECT_TRUE(F1->hasLazyArguments());
58 // Save arguments from F1 for later assertions. F1 won't have lazy arguments
61 for (Argument &A : F1->args())
64 EXPECT_FALSE(F1
[all...]
/external/clang/test/CodeGen/
H A D2002-05-23-TypeNameCollision.c10 foo F1; variable
/external/clang/test/Modules/
H A Dmacro-reexport.cpp20 #if defined(F1)
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dcoverage-direct-large.cc26 #define F1(Q, x) \ macro
30 F1(Q, x##0) F1(Q, x##1) F1(Q, x##2) F1(Q, x##3) F1(Q, x##4) F1(Q, x##5) \
31 F1(Q, x##6) F1(Q, x##7) F1(
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp5-generic-lambda-1y.cpp14 template <class F1, class F2> struct overload : F1, F2 {
15 using F1::operator();
17 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { }
32 template <class F1, class F2> struct overload : F1, F2 {
33 using F1::operator();
35 overload(F1 f1, F2 f2) : F1(f
[all...]
/external/mksh/src/
H A Dexprtok.h26 #define F1(enum) /* nothing */ macro
30 #define F1(enum) enum, macro
35 #define F1(enum) "" macro
38 #define F1(enum) 0 macro
41 #define F1(enum) P_PRIMARY macro
109 F1(VAR) /*XXX should be F2 */
116 #undef F1 macro
/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/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/fio/crc/
H A Dmd5.h11 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
12 #define F2(x, y, z) F1(z, x, y)
/external/bison/src/
H A Duniqstr.h80 #define UNIQSTR_GEN_FORMAT(F1, F2, F3, F4, F5, \
91 #define UNIQSTR_GEN_FORMAT_(F1, F2, F3, F4, F5, \
95 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 \
/external/swiftshader/third_party/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/autotest/client/deps/glbench/src/
H A Dmd5.cc148 /* The four core functions - F1 is optimized somewhat */
150 /* #define F1(x, y, z) (x & y | ~x & z) */
151 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
152 #define F2(x, y, z) F1(z, x, y)
174 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
175 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
176 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
177 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
178 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
179 MD5STEP(F1,
[all...]
/external/dhcpcd-6.8.2/crypt/
H A Dmd5.c62 /* The four core functions - F1 is optimized somewhat */
64 /* #define F1(x, y, z) (x & y | ~x & z) */
65 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
66 #define F2(x, y, z) F1(z, x, y)
101 MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
102 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
103 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
104 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
105 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
106 MD5STEP(F1,
[all...]
/external/google-breakpad/src/common/
H A Dmd5.cc150 /* 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)
176 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
177 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
178 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
179 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
180 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
181 MD5STEP(F1,
[all...]
/external/libchrome/base/
H A Dmd5.cc50 /* The four core functions - F1 is optimized somewhat */
52 /* #define F1(x, y, z) (x & y | ~x & z) */
53 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
54 #define F2(x, y, z) F1(z, x, y)
75 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
76 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
77 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
78 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
79 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
80 MD5STEP(F1,
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Dmd5.c46 /* The four core functions - F1 is optimized somewhat */
48 /* #define F1(x, y, z) (x & y | ~x & z) */
49 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
50 #define F2(x, y, z) F1(z, x, y)
74 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
75 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
76 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
77 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
78 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
79 MD5STEP(F1,
[all...]
/external/libvpx/libvpx/
H A Dmd5_utils.c136 /* The four core functions - F1 is optimized somewhat */
138 /* #define F1(x, y, z) (x & y | ~x & z) */
139 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
140 #define F2(x, y, z) F1(z, x, y)
173 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
174 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
175 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
176 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
177 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
178 MD5STEP(F1,
[all...]
/external/openssh/openbsd-compat/
H A Dmd5.c139 /* The four core functions - F1 is optimized somewhat */
141 /* #define F1(x, y, z) (x & y | ~x & z) */
142 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
143 #define F2(x, y, z) F1(z, x, y)
178 MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
179 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
180 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
181 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
182 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
183 MD5STEP(F1,
[all...]
/external/webrtc/webrtc/base/
H A Dmd5.cc129 // The four core functions - F1 is optimized somewhat.
130 // #define F1(x, y, z) (x & y | ~x & z)
131 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
132 #define F2(x, y, z) F1(z, x, y)
149 MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
150 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
151 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
152 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
153 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
154 MD5STEP(F1,
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5-internal.c191 /* The four core functions - F1 is optimized somewhat */
193 /* #define F1(x, y, z) (x & y | ~x & z) */
194 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
195 #define F2(x, y, z) F1(z, x, y)
217 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
218 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
219 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
220 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
221 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
222 MD5STEP(F1,
[all...]
H A Dmd4-internal.c181 /* The three core functions - F1 is optimized somewhat */
183 /* #define F1(x, y, z) (x & y | ~x & z) */
184 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
219 MD4STEP(F1, a, b, c, d, in[ 0], 3);
220 MD4STEP(F1, d, a, b, c, in[ 1], 7);
221 MD4STEP(F1, c, d, a, b, in[ 2], 11);
222 MD4STEP(F1, b, c, d, a, in[ 3], 19);
223 MD4STEP(F1, a, b, c, d, in[ 4], 3);
224 MD4STEP(F1, d, a, b, c, in[ 5], 7);
225 MD4STEP(F1,
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dmd5-internal.c191 /* The four core functions - F1 is optimized somewhat */
193 /* #define F1(x, y, z) (x & y | ~x & z) */
194 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
195 #define F2(x, y, z) F1(z, x, y)
217 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
218 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
219 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
220 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
221 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
222 MD5STEP(F1,
[all...]
H A Dmd4-internal.c181 /* The three core functions - F1 is optimized somewhat */
183 /* #define F1(x, y, z) (x & y | ~x & z) */
184 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
219 MD4STEP(F1, a, b, c, d, in[ 0], 3);
220 MD4STEP(F1, d, a, b, c, in[ 1], 7);
221 MD4STEP(F1, c, d, a, b, in[ 2], 11);
222 MD4STEP(F1, b, c, d, a, in[ 3], 19);
223 MD4STEP(F1, a, b, c, d, in[ 4], 3);
224 MD4STEP(F1, d, a, b, c, in[ 5], 7);
225 MD4STEP(F1,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5-internal.c191 /* The four core functions - F1 is optimized somewhat */
193 /* #define F1(x, y, z) (x & y | ~x & z) */
194 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
195 #define F2(x, y, z) F1(z, x, y)
217 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
218 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
219 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
220 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
221 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
222 MD5STEP(F1,
[all...]

Completed in 769 milliseconds

12345