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

123

/freebsd-10-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-10-stable/usr.bin/join/
H A Djoin.c120 INPUT *F1, *F2; local
126 F1 = &input1;
135 F1->unpair = F2->unpair = 1;
138 if ((F1->joinf = strtol(optarg, &end, 10)) < 1)
142 --F1->joinf;
155 F1->unpair = 1;
171 if ((F1->joinf = F2->joinf =
176 --F1->joinf;
194 F1->unpair = 1;
222 F1
432 joinlines(INPUT *F1, INPUT *F2) argument
480 outtwoline(INPUT *F1, LINE *lp1, INPUT *F2, LINE *lp2) argument
[all...]
/freebsd-10-stable/contrib/wpa/src/crypto/
H A Dmd5-internal.c188 /* 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))) macro
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,
[all...]
H A Dmd4-internal.c178 /* 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))) macro
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,
[all...]
/freebsd-10-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-10-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-10-stable/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl26 @F1=("add","xor","sub");
81 &E_CAST( 0,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
84 &E_CAST( 3,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
87 &E_CAST( 6,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
90 &E_CAST( 9,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
97 &E_CAST(12,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
100 &E_CAST(15,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
102 &E_CAST(15,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
105 &E_CAST(12,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
109 &E_CAST( 9,$S,$L,$R,$K,@F1,
[all...]
/freebsd-10-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-10-stable/contrib/llvm/lib/Support/
H A DFileUtilities.cpp180 OwningPtr<MemoryBuffer> F1; local
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();
/freebsd-10-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-10-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-10-stable/contrib/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp167 FunctionComparator(const DataLayout *TD, const Function *F1, argument
169 : F1(F1), F2(F2), TD(TD) {}
200 const Function *F1, *F2; member in class:__anon2725::FunctionComparator
395 if (V1 == F1 && V2 == F2)
397 if (V1 == F2 && V2 == F1)
404 // TODO: constant expressions with GEP or references to F1 or F2.
479 if (F1->getAttributes() != F2->getAttributes())
482 if (F1->hasGC() != F2->hasGC())
485 if (F1
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ripemd/
H A Drmd_locl.h102 # define F1(x,y,z) ((x)^(y)^(z))
111 # define F1(x,y,z) ((x) ^ (y) ^ (z)) macro
127 a+=F1(b,c,d)+X(w); \
/freebsd-10-stable/sys/mips/include/
H A Dregnum.h131 #define F1 (FPBASE+1) macro
/freebsd-10-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-10-stable/sys/boot/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...]
H A Dboot0ext.S36 .set KEY_F1,0x3b # F1 key scan code
251 subb $KEY_F1,%al # Less F1 scan code
252 cmpb $0x4,%al # F1..F5?
/freebsd-10-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3573 /* The four core functions - F1 is optimized somewhat */
3575 /* #define F1(x, y, z) (x & y | ~x & z) */
3576 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
3577 #define F2(x, y, z) F1(z, x, y)
3598 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
3599 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
3600 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
3601 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
3602 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
3603 MD5STEP(F1,
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp87 SP::F0, SP::F1, SP::F2, SP::F3,
/freebsd-10-stable/libexec/getty/
H A Dgettytab.h106 #define F1 gettynums[10].value macro

Completed in 242 milliseconds

123