Home
last modified time | relevance | path

Searched refs:F1 (Results 1 – 25 of 694) sorted by relevance

12345678910>>...28

/external/pdfium/testing/resources/pixel/
Dfont_size.in18 /F1 4 0 R
35 0 20 Td /F1 0 Tf (Size 0) Tj
36 0 20 Td /F1 1 Tf (Size 1) Tj
37 0 20 Td /F1 2 Tf (Size 2) Tj
38 0 20 Td /F1 3 Tf (Size 3) Tj
39 0 20 Td /F1 4 Tf (Size 4) Tj
40 0 20 Td /F1 5 Tf (Size 5) Tj
41 0 20 Td /F1 6 Tf (Size 6) Tj
42 0 20 Td /F1 7 Tf (Size 7) Tj
43 0 20 Td /F1 8 Tf (Size 8) Tj
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DBitmaskEnumTest.cpp18 F1 = 1, enumerator
26 Flags f = F1 | F2; in TEST()
34 Flags f = F1; in TEST()
40 (f |= F3) = F1; in TEST()
41 EXPECT_EQ(F1, f); in TEST()
48 f = (f | F3) & (F1 | F2 | F3); in TEST()
53 Flags f = F1 | F2 | F3; in TEST()
54 f &= F1 | F2; in TEST()
58 (f &= F1) = F3; in TEST()
63 Flags f = (F1 | F2) ^ (F2 | F3); in TEST()
[all …]
/external/llvm/unittests/ADT/
DBitmaskEnumTest.cpp18 F1 = 1, enumerator
26 Flags f = F1 | F2; in TEST()
34 Flags f = F1; in TEST()
40 (f |= F3) = F1; in TEST()
41 EXPECT_EQ(F1, f); in TEST()
48 f = (f | F3) & (F1 | F2 | F3); in TEST()
53 Flags f = F1 | F2 | F3; in TEST()
54 f &= F1 | F2; in TEST()
58 (f &= F1) = F3; in TEST()
63 Flags f = (F1 | F2) ^ (F2 | F3); in TEST()
[all …]
/external/llvm/unittests/IR/
DFunctionTest.cpp43 std::unique_ptr<Function> F1( in TEST() local
47 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
54 F1->stealArgumentListFrom(*F2); in TEST()
55 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
61 for (Argument &A : F1->args()) in TEST()
64 EXPECT_FALSE(F1->hasLazyArguments()); in TEST()
69 F2->stealArgumentListFrom(*F1); in TEST()
70 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
82 for (Argument &A : F1->args()) { in TEST()
87 EXPECT_FALSE(F1->hasLazyArguments()); in TEST()
[all …]
/external/llvm/test/CodeGen/X86/
Dglobal-sections-comdat.ll5 $F1 = comdat any
6 define void @F1(i32 %y) comdat {
26 ; LINUX: .section .text.F1,"axG",@progbits,F1,comdat
27 ; LINUX: .size F1,
29 ; LINUX-NEXT: .section .rodata.F1,"aG",@progbits,F1,comdat
31 ; LINUX-SECTIONS: .section .text.F1,"axG",@progbits,F1,comdat
32 ; LINUX-SECTIONS: .size F1,
34 ; LINUX-SECTIONS-NEXT: .section .rodata.F1,"aG",@progbits,F1,comdat
36 ; LINUX-SECTIONS-SHORT: .section .text,"axG",@progbits,F1,comdat
37 ; LINUX-SECTIONS-SHORT: .size F1,
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dglobal-sections-comdat.ll5 $F1 = comdat any
6 define void @F1(i32 %y) comdat {
26 ; LINUX: .section .text.F1,"axG",@progbits,F1,comdat
27 ; LINUX: .size F1,
29 ; LINUX-NEXT: .section .rodata.F1,"aG",@progbits,F1,comdat
31 ; LINUX-SECTIONS: .section .text.F1,"axG",@progbits,F1,comdat
32 ; LINUX-SECTIONS: .size F1,
34 ; LINUX-SECTIONS-NEXT: .section .rodata.F1,"aG",@progbits,F1,comdat
36 ; LINUX-SECTIONS-SHORT: .section .text,"axG",@progbits,F1,comdat
37 ; LINUX-SECTIONS-SHORT: .size F1,
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DFunctionTest.cpp44 std::unique_ptr<Function> F1( in TEST() local
48 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
55 F1->stealArgumentListFrom(*F2); in TEST()
56 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
62 for (Argument &A : F1->args()) in TEST()
65 EXPECT_FALSE(F1->hasLazyArguments()); in TEST()
70 F2->stealArgumentListFrom(*F1); in TEST()
71 EXPECT_TRUE(F1->hasLazyArguments()); in TEST()
83 for (Argument &A : F1->args()) { in TEST()
88 EXPECT_FALSE(F1->hasLazyArguments()); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
DFunctionComparator.cpp48 TestComparator(const Function *F1, const Function *F2, in TestComparator() argument
50 : FunctionComparator(F1, F2, GN) { in TestComparator()
53 bool testFunctionAccess(const Function *F1, const Function *F2) { in testFunctionAccess() argument
55 return F1 == FnL && F2 == FnR; in testFunctionAccess()
112 TestFunction F1(C, M, 27); in TEST() local
116 TestComparator Cmp(F1.F, F2.F, &GN); in TEST()
118 EXPECT_TRUE(Cmp.testFunctionAccess(F1.F, F2.F)); in TEST()
121 EXPECT_EQ(Cmp.testCmpBasicBlocks(F1.BB, F2.BB), -1); in TEST()
122 EXPECT_EQ(Cmp.testCmpConstants(F1.C, F2.C), -1); in TEST()
123 EXPECT_EQ(Cmp.testCmpGlobalValues(F1.F, F2.F), -1); in TEST()
[all …]
/external/compiler-rt/test/asan/TestCases/Posix/
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(Q, x##8) F1(Q, x##9)
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
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) { } in overload()
32 template <class F1, class F2> struct overload : F1, F2 {
33 using F1::operator();
35 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } in overload()
/external/llvm/test/Transforms/JumpThreading/
Dbasic.ll10 br i1 %cond, label %T1, label %F1
16 F1:
21 %A = phi i1 [true, %T1], [false, %F1]
22 %B = phi i32 [%v1, %T1], [%v2, %F1]
38 ;; cond is known false on Entry -> F1 edge!
42 br i1 %cond, label %T1, label %F1
50 F1:
54 %B = phi i32 [47, %T1], [192, %F1]
68 br i1 undef, label %T1, label %F1
73 F1:
[all …]
/external/wpa_supplicant_8/src/crypto/
Dmd4-internal.c184 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
219 MD4STEP(F1, a, b, c, d, in[ 0], 3); in MD4Transform()
220 MD4STEP(F1, d, a, b, c, in[ 1], 7); in MD4Transform()
221 MD4STEP(F1, c, d, a, b, in[ 2], 11); in MD4Transform()
222 MD4STEP(F1, b, c, d, a, in[ 3], 19); in MD4Transform()
223 MD4STEP(F1, a, b, c, d, in[ 4], 3); in MD4Transform()
224 MD4STEP(F1, d, a, b, c, in[ 5], 7); in MD4Transform()
225 MD4STEP(F1, c, d, a, b, in[ 6], 11); in MD4Transform()
226 MD4STEP(F1, b, c, d, a, in[ 7], 19); in MD4Transform()
227 MD4STEP(F1, a, b, c, d, in[ 8], 3); in MD4Transform()
[all …]
Dmd5-internal.c194 #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); in MD5Transform()
218 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
219 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
220 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
221 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
222 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
223 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
224 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/cconv/
Darguments-hard-float.ll62 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 16($sp)
63 ; O32-DAG: sdc1 [[F1]], 24([[R2]])
65 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 24($sp)
66 ; O32-DAG: sdc1 [[F1]], 32([[R2]])
68 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 32($sp)
69 ; O32-DAG: sdc1 [[F1]], 40([[R2]])
71 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 40($sp)
72 ; O32-DAG: sdc1 [[F1]], 48([[R2]])
74 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 48($sp)
75 ; O32-DAG: sdc1 [[F1]], 56([[R2]])
[all …]
/external/llvm/test/CodeGen/Mips/cconv/
Darguments-hard-float.ll62 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 16($sp)
63 ; O32-DAG: sdc1 [[F1]], 24([[R2]])
65 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 24($sp)
66 ; O32-DAG: sdc1 [[F1]], 32([[R2]])
68 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 32($sp)
69 ; O32-DAG: sdc1 [[F1]], 40([[R2]])
71 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 40($sp)
72 ; O32-DAG: sdc1 [[F1]], 48([[R2]])
74 ; O32-DAG: ldc1 [[F1:\$f[0-9]+]], 48($sp)
75 ; O32-DAG: sdc1 [[F1]], 56([[R2]])
[all …]
/external/google-breakpad/src/common/
Dmd5.cc153 #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); in MD5Transform()
177 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
178 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
179 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
180 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
181 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
182 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
183 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/webrtc/webrtc/base/
Dmd5.cc131 #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); in MD5Transform()
150 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12); in MD5Transform()
151 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17); in MD5Transform()
152 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22); in MD5Transform()
153 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7); in MD5Transform()
154 MD5STEP(F1, d, a, b, c, in[ 5] + 0x4787c62a, 12); in MD5Transform()
155 MD5STEP(F1, c, d, a, b, in[ 6] + 0xa8304613, 17); in MD5Transform()
156 MD5STEP(F1, b, c, d, a, in[ 7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/openssh/openbsd-compat/
Dmd5.c142 #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); in MD5Transform()
179 MD5STEP(F1, d, a, b, c, in[ 1] + 0xe8c7b756, 12); in MD5Transform()
180 MD5STEP(F1, c, d, a, b, in[ 2] + 0x242070db, 17); in MD5Transform()
181 MD5STEP(F1, b, c, d, a, in[ 3] + 0xc1bdceee, 22); in MD5Transform()
182 MD5STEP(F1, a, b, c, d, in[ 4] + 0xf57c0faf, 7); in MD5Transform()
183 MD5STEP(F1, d, a, b, c, in[ 5] + 0x4787c62a, 12); in MD5Transform()
184 MD5STEP(F1, c, d, a, b, in[ 6] + 0xa8304613, 17); in MD5Transform()
185 MD5STEP(F1, b, c, d, a, in[ 7] + 0xfd469501, 22); in MD5Transform()
[all …]
Drmd160.c79 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z))) macro
208 R(e, a, b, c, d, F1, K1, 7, 7); in RMD160Transform()
209 R(d, e, a, b, c, F1, K1, 6, 4); in RMD160Transform()
210 R(c, d, e, a, b, F1, K1, 8, 13); in RMD160Transform()
211 R(b, c, d, e, a, F1, K1, 13, 1); in RMD160Transform()
212 R(a, b, c, d, e, F1, K1, 11, 10); in RMD160Transform()
213 R(e, a, b, c, d, F1, K1, 9, 6); in RMD160Transform()
214 R(d, e, a, b, c, F1, K1, 7, 15); in RMD160Transform()
215 R(c, d, e, a, b, F1, K1, 15, 3); in RMD160Transform()
216 R(b, c, d, e, a, F1, K1, 7, 12); in RMD160Transform()
[all …]
/external/libvpx/libvpx/
Dmd5_utils.c140 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
141 #define F2(x, y, z) F1(z, x, y)
163 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
164 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
165 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
166 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
167 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
168 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
169 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
170 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/libaom/libaom/common/
Dmd5_utils.c139 #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); in MD5Transform()
174 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
175 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
176 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
177 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
178 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
179 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
180 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/libjpeg-turbo/md5/
Dmd5.c180 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
181 #define F2(x, y, z) F1(z, x, y)
203 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
204 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
205 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
206 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
207 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
208 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
209 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
210 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/JumpThreading/
Dbasic.ll10 br i1 %cond, label %T1, label %F1
16 F1:
21 %A = phi i1 [true, %T1], [false, %F1]
22 %B = phi i32 [%v1, %T1], [%v2, %F1]
38 ;; cond is known false on Entry -> F1 edge!
42 br i1 %cond, label %T1, label %F1
50 F1:
54 %B = phi i32 [47, %T1], [192, %F1]
68 br i1 undef, label %T1, label %F1
73 F1:
[all …]
/external/dynamic_depth/internal/xmpmeta/
Dmd5.cc115 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
116 #define F2(x, y, z) F1(z, x, y)
145 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
146 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
147 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
148 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
149 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
150 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
151 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
152 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/external/u-boot/lib/
Dmd5.c168 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
169 #define F2(x, y, z) F1(z, x, y)
192 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
193 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
194 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
195 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
196 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
197 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
198 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
199 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]

12345678910>>...28