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

1 2 3 4 5 6 7

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
eval_if.hpp 28 , typename BOOST_MPL_AUX_NA_PARAM(F1)
37 typedef typename if_<C,F1,F2>::type f_;
40 : if_<C,F1,F2>::type
43 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,eval_if,(C,F1,F2))
50 , typename F1
59 typedef typename if_c<C,F1,F2>::type f_;
62 : if_c<C,F1,F2>::type
  /external/pixman/test/
rotate-test.c 31 #define F1 pixman_fixed_1
39 TRANSFORM (0, -F1, F1, 0), /* correct 90 degree rotation */
40 TRANSFORM (0, F1, -F1, 0), /* correct 270 degree rotation */
41 TRANSFORM (F1, 0, 0, F1), /* correct identity */
42 TRANSFORM (-F1, 0, 0, -F1), /* correct 180 degree rotation */
  /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-vexing-parse.cpp 29 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/skia/bench/
MemoryBench.cpp 58 static SkBenchmark* F1(void* p) { return new ChunkAllocBench(p, 8*1024); }
61 static BenchRegistry gR1(F1);
  /external/skia/gm/
selftest.cpp 54 static skiagm::GM* F1(void*) {
61 static skiagm::GMRegistry gR1(F1);
  /external/bison/src/
uniqstr.h 80 #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/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 93 Function *F1 = buildFunction(M);
96 void *F1_addr = EE->getPointerToFunction(F1);
98 EE->getPointerToFunction(F1); // Should do nothing.
99 EE->freeMachineCodeForFunction(F1);
106 EXPECT_EQ(F1, Listener.EmittedEvents[0].F);
125 F1->eraseFromParent();
134 Function *F1 = buildFunction(M);
139 void *F1_addr = EE->getPointerToFunction(F1);
145 EE->freeMachineCodeForFunction(F1);
159 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/chromium_org/base/
md5.cc 49 /* The four core functions - F1 is optimized somewhat */
51 /* #define F1(x, y, z) (x & y | ~x & z) */
52 #define F1(x, y, z) (z ^ (x & (y ^ z)))
53 #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, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
md5.cc 127 // The four core functions - F1 is optimized somewhat.
128 // #define F1(x, y, z) (x & y | ~x & z)
129 #define F1(x, y, z) (z ^ (x & (y ^ z)))
130 #define F2(x, y, z) F1(z, x, y)
147 MD5STEP(F1, a, b, c, d, in[ 0] + 0xd76aa478, 7);
148 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12);
149 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17);
150 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22);
151 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7);
152 MD5STEP(F1, d, a, b, c, in[ 5] + 0x4787c62a, 12)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
md5.c 170 /* The four core functions - F1 is optimized somewhat */
172 /* #define F1(x, y, z) (x & y | ~x & z) */
173 #define F1(x, y, z) (z ^ (x & (y ^ z)))
174 #define F2(x, y, z) F1(z, x, y)
202 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
203 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
204 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
205 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
206 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
207 MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /external/libvpx/libvpx/
md5_utils.c 141 /* The four core functions - F1 is optimized somewhat */
143 /* #define F1(x, y, z) (x & y | ~x & z) */
144 #define F1(x, y, z) (z ^ (x & (y ^ z)))
145 #define F2(x, y, z) F1(z, x, y)
167 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
168 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
169 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
170 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
171 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
172 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
md5-internal.c 188 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
md4-internal.c 178 /* 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)))
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, c, d, a, b, in[ 6], 11)
    [all...]
  /dalvik/tests/091-deep-interface-hierarchy/src/
Main.java 52 interface F1 extends E1, E2, E3, E4, E5 {}
58 interface G1 extends F1, F2, F3, F4, F5 {}
59 interface G2 extends F1, F2, F3, F4, F5 {}
60 interface G3 extends F1, F2, F3, F4, F5 {}
61 interface G4 extends F1, F2, F3, F4, F5 {}
62 interface G5 extends F1, F2, F3, F4, F5 {}
  /external/ceres-solver/examples/
powell.cc 33 // F = 1/2 (f1^2 + f2^2 + f3^2 + f4^2)
35 // f1 = x1 + 10*x2;
58 struct F1 {
62 // f1 = x1 + 10 * x2;
114 problem.AddResidualBlock(new AutoDiffCostFunction<F1, 1, 1, 1>(new F1),
  /external/clang/test/Sema/
warn-bad-function-cast.c 31 (enum f { F1 })ef();
  /external/chromium_org/third_party/skia/src/utils/
SkSHA1.cpp 89 struct F1 { uint32_t operator()(uint32_t B, uint32_t C, uint32_t D) {
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F1(), E, A, B, C, D, W[ 6], K[0]);
158 operation(F1(), D, E, A, B, C, W[ 7], K[0]);
159 operation(F1(), C, D, E, A, B, W[ 8], K[0])
    [all...]
  /external/skia/src/utils/
SkSHA1.cpp 89 struct F1 { uint32_t operator()(uint32_t B, uint32_t C, uint32_t D) {
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F1(), E, A, B, C, D, W[ 6], K[0]);
158 operation(F1(), D, E, A, B, C, W[ 7], K[0]);
159 operation(F1(), C, D, E, A, B, W[ 8], K[0])
    [all...]
  /external/llvm/lib/Support/
FileUtilities.cpp 180 OwningPtr<MemoryBuffer> F1;
181 if (error_code ec = MemoryBuffer::getFile(NameA, F1)) {
194 const char *File1Start = F1->getBufferStart();
196 const char *File1End = F1->getBufferEnd();
200 uint64_t A_size = F1->getBufferSize();
  /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/clang/test/Misc/
diag-template-diffing.cpp     [all...]

Completed in 466 milliseconds

1 2 3 4 5 6 7