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

12

/freebsd-12-stable/contrib/binutils/opcodes/
H A Dia64-opc-f.c89 {"frcpa.s0", f2, OpXbQSf (0, 1, 0, 0), {F1, P2, F2, F3}, EMPTY},
90 {"frcpa", f2, OpXbQSf (0, 1, 0, 0), {F1, P2, F2, F3}, PSEUDO, 0, NULL},
91 {"frcpa.s1", f2, OpXbQSf (0, 1, 0, 1), {F1, P2, F2, F3}, EMPTY},
92 {"frcpa.s2", f2, OpXbQSf (0, 1, 0, 2), {F1, P2, F2, F3}, EMPTY},
93 {"frcpa.s3", f2, OpXbQSf (0, 1, 0, 3), {F1, P2, F2, F3}, EMPTY},
95 {"frsqrta.s0", f2, OpXbQSf (0, 1, 1, 0), {F1, P2, F3}, EMPTY},
96 {"frsqrta", f2, OpXbQSf (0, 1, 1, 0), {F1, P2, F3}, PSEUDO, 0, NULL},
97 {"frsqrta.s1", f2, OpXbQSf (0, 1, 1, 1), {F1, P2, F3}, EMPTY},
98 {"frsqrta.s2", f2, OpXbQSf (0, 1, 1, 2), {F1, P2, F3}, EMPTY},
99 {"frsqrta.s3", f2, OpXbQSf (0, 1, 1, 3), {F1, P
[all...]
H A Dia64-opc-m.c82 {"chk.a.nc", M0, OpX3 (0, 6), {F1, TGT25c}, EMPTY},
83 {"chk.a.clr", M0, OpX3 (0, 7), {F1, TGT25c}, EMPTY},
95 {"invala.e", M0, OpX3X4X2 (0, 0, 3, 1), {F1}, EMPTY},
650 {"ldfs", M, OpMXX6aHint (6, 0, 0, 0x02, 0), {F1, MR3}, EMPTY},
651 {"ldfs.nt1", M, OpMXX6aHint (6, 0, 0, 0x02, 1), {F1, MR3}, EMPTY},
652 {"ldfs.nta", M, OpMXX6aHint (6, 0, 0, 0x02, 3), {F1, MR3}, EMPTY},
653 {"ldfd", M, OpMXX6aHint (6, 0, 0, 0x03, 0), {F1, MR3}, EMPTY},
654 {"ldfd.nt1", M, OpMXX6aHint (6, 0, 0, 0x03, 1), {F1, MR3}, EMPTY},
655 {"ldfd.nta", M, OpMXX6aHint (6, 0, 0, 0x03, 3), {F1, MR3}, EMPTY},
656 {"ldf8", M, OpMXX6aHint (6, 0, 0, 0x01, 0), {F1, MR
[all...]
H A Dia64-opc.h64 #define F1 IA64_OPND_F1 macro
/freebsd-12-stable/usr.bin/join/
H A Djoin.c122 INPUT *F1, *F2; local
128 F1 = &input1;
137 F1->unpair = F2->unpair = 1;
140 if ((F1->joinf = strtol(optarg, &end, 10)) < 1)
144 --F1->joinf;
157 F1->unpair = 1;
173 if ((F1->joinf = F2->joinf =
178 --F1->joinf;
196 F1->unpair = 1;
224 F1
434 joinlines(INPUT *F1, INPUT *F2) argument
488 outtwoline(INPUT *F1, LINE *lp1, INPUT *F2, LINE *lp2) argument
[all...]
/freebsd-12-stable/contrib/wpa/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...]
/freebsd-12-stable/contrib/ntp/lib/isc/
H A Dmd5.c103 /*! The four core functions - F1 is optimized somewhat */
105 /* #define F1(x, y, z) (x & y | ~x & z) */
106 #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);
131 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
132 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
133 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
134 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
135 MD5STEP(F1,
[all...]
/freebsd-12-stable/crypto/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...]
H A Drmd160.c79 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z))) macro
208 R(e, a, b, c, d, F1, K1, 7, 7);
209 R(d, e, a, b, c, F1, K1, 6, 4);
210 R(c, d, e, a, b, F1, K1, 8, 13);
211 R(b, c, d, e, a, F1, K1, 13, 1);
212 R(a, b, c, d, e, F1, K1, 11, 10);
213 R(e, a, b, c, d, F1, K1, 9, 6);
214 R(d, e, a, b, c, F1, K1, 7, 15);
215 R(c, d, e, a, b, F1, K1, 15, 3);
216 R(b, c, d, e, a, F1, K
[all...]
/freebsd-12-stable/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl39 @F1=("add","xor","sub");
96 &E_CAST( 0,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
99 &E_CAST( 3,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
102 &E_CAST( 6,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
105 &E_CAST( 9,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
112 &E_CAST(12,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
115 &E_CAST(15,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
117 &E_CAST(15,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
120 &E_CAST(12,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
124 &E_CAST( 9,$S,$L,$R,$K,@F1,
[all...]
/freebsd-12-stable/sys/opencrypto/
H A Drmd160.c78 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z))) macro
199 R(e, a, b, c, d, F1, K1, 7, 7);
200 R(d, e, a, b, c, F1, K1, 6, 4);
201 R(c, d, e, a, b, F1, K1, 8, 13);
202 R(b, c, d, e, a, F1, K1, 13, 1);
203 R(a, b, c, d, e, F1, K1, 11, 10);
204 R(e, a, b, c, d, F1, K1, 9, 6);
205 R(d, e, a, b, c, F1, K1, 7, 15);
206 R(c, d, e, a, b, F1, K1, 15, 3);
207 R(b, c, d, e, a, F1, K
[all...]
H A Dcast.c26 #define F1(l, r, i) \ macro
52 F1(l, r, 0);
55 F1(r, l, 3);
58 F1(l, r, 6);
61 F1(r, l, 9);
66 F1(l, r, 12);
69 F1(r, l, 15);
99 F1(r, l, 15);
102 F1(l, r, 12);
106 F1(
[all...]
/freebsd-12-stable/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);
/freebsd-12-stable/contrib/binutils/include/opcode/
H A Darm.h185 #define ARM_MERGE_FEATURE_SETS(TARG,F1,F2) \
187 (TARG).core = (F1).core | (F2).core; \
188 (TARG).coproc = (F1).coproc | (F2).coproc; \
191 #define ARM_CLEAR_FEATURE(TARG,F1,F2) \
193 (TARG).core = (F1).core &~ (F2).core; \
194 (TARG).coproc = (F1).coproc &~ (F2).coproc; \
H A Dsparc.h203 #define F1(x) (OP (x)) macro
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h95 FunctionComparator(const Function *F1, const Function *F2, argument
97 : FnL(F1), FnR(F2), GlobalNumbers(GN) {}
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileUtilities.cpp191 MemoryBuffer &F1 = *F1OrErr.get(); local
202 const char *File1Start = F1.getBufferStart();
204 const char *File1End = F1.getBufferEnd();
208 uint64_t A_size = F1.getBufferSize();
/freebsd-12-stable/crypto/openssl/crypto/ripemd/
H A Drmd_local.h50 #define F1(x,y,z) ((x) ^ (y) ^ (z)) macro
65 a+=F1(b,c,d)+X(w); \
/freebsd-12-stable/sys/mips/include/
H A Dregnum.h136 #define F1 (FPBASE+1) macro
/freebsd-12-stable/lib/libmd/
H A Drmd_locl.h178 #define F1(x,y,z) ((x)^(y)^(z)) macro
193 a+=F1(b,c,d)+X[w]; \
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCallingConv.cpp87 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
/freebsd-12-stable/stand/i386/boot0/
H A Dboot0.S31 #ifdef ONLY_F_KEYS /* Only F1..F6, no digits on console */
142 .set KEY_F1,0x3b # F1 key scan code
382 * Otherwise convert F1..F6 (or '1'..'6') to 0..5 and check if the
401 * both F1..F6 and 1..6 (the latter costs 6 bytes of code),
402 * relying on the fact that F1..F6 have higher scancodes than 1..6
408 subb $KEY_F1,%al /* Subtract F1 scan code */
410 cmpb $0x5,%al # F1..F6
417 cmpb $0x5,%al # F1..F6 or 1..6 ?
423 jae beep # Not in F1..F5, beep
454 * F1
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h72 const std::unique_ptr<llvm::pdb::PDBSymbolFunc> &F1,
74 bool compareDataSymbols(const std::unique_ptr<llvm::pdb::PDBSymbolData> &F1,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp348 Function *F1 = cast<Function>(*I); local
350 int Res1 = FunctionComparator(F1, F2, &GlobalNumbers).compare();
351 int Res2 = FunctionComparator(F2, F1, &GlobalNumbers).compare();
353 // If F1 <= F2, then F2 >= F1, otherwise report failure.
357 dbgs() << *F1 << '\n' << *F2 << '\n';
371 int Res3 = FunctionComparator(F1, F3, &GlobalNumbers).compare();
377 // F1 > F2, F2 > F3 => F1 > F3
380 // F1 > F
[all...]
/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h68 template <typename F1, typename F2>
414 template <typename F1, typename F2>
508 // Allows an Action<F2> object to pose as an Action<F1>, as long as F2
509 // and F1 are compatible.
510 template <typename F1, typename F2>
511 class ActionAdaptor : public ActionInterface<F1> {
513 typedef typename internal::Function<F1>::Result Result;
514 typedef typename internal::Function<F1>::ArgumentTuple ArgumentTuple;

Completed in 258 milliseconds

12