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

1 2 3 4 5 6 7

  /external/compiler-rt/test/asan/TestCases/Linux/
coverage-direct-large.cc 24 #define F1(Q, x) \
28 F1(Q, x##0) F1(Q, x##1) F1(Q, x##2) F1(Q, x##3) F1(Q, x##4) F1(Q, x##5) \
29 F1(Q, x##6) F1(Q, x##7) F1(Q, x##8) F1(Q, x##9
    [all...]
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 10 foo F1;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5-generic-lambda-1y.cpp 14 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()
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-script/
main.cpp 31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
32 first_cool(I1,F1,C1),
34 floating((F1 + F2)/2) {}
  /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/chromium_org/third_party/skia/gm/
selftest.cpp 54 static skiagm::GM* F1(void*) {
61 static skiagm::GMRegistry gR1(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/fio/crc/
md5.h 11 #define F1(x, y, z) (z ^ (x & (y ^ z)))
12 #define F2(x, y, z) F1(z, x, y)
md5.c 17 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
18 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
19 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
20 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
21 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
22 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
23 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
24 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
25 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
26 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12)
    [all...]
  /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 90 Function *F1 = buildFunction(M);
93 void *F1_addr = EE->getPointerToFunction(F1);
95 EE->getPointerToFunction(F1); // Should do nothing.
96 EE->freeMachineCodeForFunction(F1);
103 EXPECT_EQ(F1, Listener.EmittedEvents[0].F);
122 F1->eraseFromParent();
131 Function *F1 = buildFunction(M);
136 void *F1_addr = EE->getPointerToFunction(F1);
142 EE->freeMachineCodeForFunction(F1);
156 EXPECT_EQ(F1, Listener1.EmittedEvents[0].F)
    [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/libaddressinput/src/cpp/src/util/
md5.cc 56 /* The four core functions - F1 is optimized somewhat */
58 /* #define F1(x, y, z) (x & y | ~x & z) */
59 #define F1(x, y, z) (z ^ (x & (y ^ z)))
60 #define F2(x, y, z) F1(z, x, y)
81 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
82 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
83 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
84 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
85 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
86 MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /external/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/webrtc/base/
md5.cc 129 // 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)))
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, 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/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/
ms_bitfield_layout.c 190 typedef struct F1 {
202 } F1;
204 // CHECK: Type: struct F1
261 sizeof(F1) +
warn-bad-function-cast.c 31 (enum f { F1 })ef();
warn-duplicate-enum.c 36 F1,
  /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
main.cpp 59 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
60 first_cool(I1,F1,C1),
62 floating((F1 + F2)/2) {}
  /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/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/lldb/test/functionalities/data-formatter/data-formatter-advanced/
main.cpp 31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) :
32 first_cool(I1,F1,C1),
34 floating((F1 + F2)/2) {}

Completed in 1080 milliseconds

1 2 3 4 5 6 7