Home
last modified time | relevance | path

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

12345678

/src/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dbitmask_enum_test.cpp23 enum Flags { F0 = 0, F1 = 1, F2 = 2, F3 = 4, F4 = 8 }; enumerator
40 Flags f = F1 | F2; in TEST()
48 Flags f = F1; in TEST()
54 (f |= F3) = F1; in TEST()
55 EXPECT_EQ(F1, f); in TEST()
62 f = (f | F3) & (F1 | F2 | F3); in TEST()
67 Flags f = F1 | F2 | F3; in TEST()
68 f &= F1 | F2; in TEST()
72 (f &= F1) = F3; in TEST()
77 Flags f = (F1 | F2) ^ (F2 | F3); in TEST()
[all …]
/src/usr.bin/join/
H A Djoin.c108 INPUT *F1, *F2; in main() local
114 F1 = &input1; in main()
123 F1->unpair = F2->unpair = 1; in main()
126 if ((F1->joinf = strtol(optarg, &end, 10)) < 1) in main()
130 --F1->joinf; in main()
143 F1->unpair = 1; in main()
159 if ((F1->joinf = F2->joinf = in main()
164 --F1->joinf; in main()
182 F1->unpair = 1; in main()
210 F1->fp = stdin; in main()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSupport.h60 #define BOOL_BIT_1(FAMILY, ENUM, FIELD, F1) \ argument
64 set##F1(); \
68 #define BOOL_BIT_2(FAMILY, ENUM, FIELD, F1, F2) \ argument
72 set##F1(); \
77 #define BOOL_BIT_3(FAMILY, ENUM, FIELD, F1, F2, F3) \ argument
81 set##F1(); \
89 #define PROPERTY_1(ENUM, FIELD, F1) BOOL_BIT_1(Properties, ENUM, FIELD, F1) argument
90 #define PROPERTY_2(ENUM, FIELD, F1, F2) \ argument
91 BOOL_BIT_2(Properties, ENUM, FIELD, F1, F2)
92 #define PROPERTY_3(ENUM, FIELD, F1, F2, F3) \ argument
[all …]
/src/contrib/wpa/src/crypto/
H A 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 …]
H A 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 …]
/src/contrib/ntp/libntp/lib/isc/
H A Dmd5.c106 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
107 #define F2(x, y, z) F1(z, x, y)
130 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in transform()
131 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in transform()
132 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in transform()
133 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in transform()
134 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in transform()
135 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in transform()
136 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in transform()
137 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in transform()
[all …]
/src/crypto/openssh/openbsd-compat/
H A 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 …]
/src/sys/opencrypto/
H A Drmd160.c75 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z))) macro
196 R(e, a, b, c, d, F1, K1, 7, 7); in RMD160Transform()
197 R(d, e, a, b, c, F1, K1, 6, 4); in RMD160Transform()
198 R(c, d, e, a, b, F1, K1, 8, 13); in RMD160Transform()
199 R(b, c, d, e, a, F1, K1, 13, 1); in RMD160Transform()
200 R(a, b, c, d, e, F1, K1, 11, 10); in RMD160Transform()
201 R(e, a, b, c, d, F1, K1, 9, 6); in RMD160Transform()
202 R(d, e, a, b, c, F1, K1, 7, 15); in RMD160Transform()
203 R(c, d, e, a, b, F1, K1, 15, 3); in RMD160Transform()
204 R(b, c, d, e, a, F1, K1, 7, 12); in RMD160Transform()
[all …]
/src/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl38 @F1=("add","xor","sub");
95 &E_CAST( 0,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
98 &E_CAST( 3,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
101 &E_CAST( 6,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
104 &E_CAST( 9,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
111 &E_CAST(12,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
114 &E_CAST(15,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
116 &E_CAST(15,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
119 &E_CAST(12,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
123 &E_CAST( 9,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
[all …]
/src/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected15 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
18 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
35 A3 D1 6F E1 EF 7B 6D 2F 4F 93 48 90 02 0D F1 8A
39 54 94 0B B4 7C 1B 5E BA B2 76 98 F1 9F D9 7F 33
50 03 6F D7 53 30 F0 71 14 F1 24 14 34 52 69 0C 8B
64 FE 7A E7 E7 DF 7F 12 C6 5E 29 F9 A2 55 C0 93 F1
70 FA 1B E1 F3 A1 32 DE F4 C4 F1 67 02 38 85 5C 11
76 14 68 15 F7 6D F1 9E 12 B8 81 39 06 3C 3D F5 44
84 C4 A8 5A EB 0B 20 41 49 4F 8B F1 F8 CD 30 F1 13
87 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
[all …]
/src/sys/contrib/device-tree/src/arm64/qcom/
H A Dmsm8998-lenovo-miix-630.dts74 firmware-name = "qcom/msm8998/LENOVO/81F1/qcadsp8998.mbn";
80 firmware-name = "qcom/msm8998/LENOVO/81F1/qcdsp1v28998.mbn",
81 "qcom/msm8998/LENOVO/81F1/qcdsp28998.mbn";
85 firmware-name = "qcom/msm8998/LENOVO/81F1/qcslpi8998.mbn";
104 firmware-name = "qcom/msm8998/LENOVO/81F1/qcvss8998.mbn";
/src/contrib/netbsd-tests/lib/semaphore/
H A Dsem.c317 #define F1(name, a) int _ksem_##name(a); \ macro
322 F1(close, intptr_t);
323 F1(destroy, intptr_t);
324 F1(post, intptr_t);
325 F1(unlink, const char *);
326 F1(trywait, intptr_t);
327 F1(wait, intptr_t);
/src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMScheduleA57.td101 def A57UnitX : ProcResource<1>; // Type X micro-ops (F1)
723 // fp compare - 3cyc F1 for unconditional, 6cyc "F0/F1, F1" for conditional
764 // FP multiply accumulate, FZ: 9cyc "F0/F1" or 4 cyc for sequenced accumulate
794 // VMOV: 3cyc "F0/F1" for imm/reg
806 // 8cyc "L,F0/F1" for FP transfer, core reg to upper or lower half of vfp D-reg
970 // ASIMD absolute diff, 3cyc F0/F1 for integer VABD
973 // ASIMD absolute diff accum: 4(1) F1 for D-form, 5(2) F1 for Q-form
983 // ASIMD absolute diff accum long: 4(1) F1 for VABAL
988 // ASIMD absolute diff long: 3cyc F0/F1 for VABDL
1097 // 4cyc F1, 1cyc for accumulate sequence (3cyc ReadAdvance)
[all …]
/src/contrib/llvm-project/llvm/lib/Support/
H A DFileUtilities.cpp190 MemoryBuffer &F1 = *F1OrErr.get(); in DiffFilesWithTolerance() local
201 const char *File1Start = F1.getBufferStart(); in DiffFilesWithTolerance()
203 const char *File1End = F1.getBufferEnd(); in DiffFilesWithTolerance()
207 uint64_t A_size = F1.getBufferSize(); in DiffFilesWithTolerance()
/src/contrib/file/magic/Magdir/
H A Defi25 >0 guid 67F8444F-8743-48F1-A328-1EAAB8736080 EFI Signature List, RSA2048 SHA1
30 >0 guid FF3E5307-9FD0-48C9-85F1-8AD56C701E01 EFI Signature List, SHA384
37 >0 guid A46423E3-4617-49F1-B9FF-D1BFA9115839 EFI Signature List, SECURITY PROTOCOL
/src/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCallingConv.td60 CCIfType<[f32], CCAssignToReg<[F1]>>,
61 CCIfType<[f64], CCAssignToReg<[F1]>>,
82 // Floating point types returned as "direct" go into F1 .. F8; note that
85 CCIfType<[f32], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>>,
87 CCIfType<[f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>>,
134 CCIfNotVarArg<CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8, F9, F10,
168 CCIfType<[f32, f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>
185 CCIfType<[f32], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>,
186 CCIfType<[f64], CCAssignToReg<[F1, F2, F3, F4, F5, F6, F7, F8]>>,
229 // FP values are passed in F1 - F8.
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h95 FunctionComparator(const Function *F1, const Function *F2, in FunctionComparator() argument
97 : FnL(F1), FnR(F2), GlobalNumbers(GN) {} in FunctionComparator()
/src/crypto/openssl/crypto/ripemd/
H A Drmd_local.h56 #define F1(x, y, z) ((x) ^ (y) ^ (z)) macro
72 a += F1(b, c, d) + X(w); \
/src/contrib/unifdef/tests/
H A Dif6.h2 #define F1 1 macro
H A Dif6b.expout1 #if F1
H A Dif6.c1 #if F1
H A Dcrlf-b.expout1 #if F1
H A Dcrlf.c1 #if F1
H A Dif6c.expout1 #if F1
/src/secure/caroot/trusted/
H A DComodo_AAA_Services_root.pem49 A0:11:0A:23:3E:96:F1:07:EC:E2:AF:29:EF:82:A5:7F:D0:30:A4:B4
76 SHA1 Fingerprint=D1:EB:23:A4:6D:17:D6:8F:D9:25:64:C2:F1:F1:60:17:64:D8:E3:49

12345678