Searched refs:F1 (Results 1 - 25 of 49) sorted by last modified time

12

/freebsd-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/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
H A Dsparc-opc.c1046 { "call", F1(0x1), F1(~0x1), "L", F_JSR|F_DELAYED, v6 },
1047 { "call", F1(0x1), F1(~0x1), "L,#", F_JSR|F_DELAYED, v6 },
/freebsd-9.3-release/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-9.3-release/contrib/wpa/src/crypto/
H A Dmd4-internal.c184 /* The three core functions - F1 is optimized somewhat */
186 /* #define F1(x, y, z) (x & y | ~x & z) */
187 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
222 MD4STEP(F1, a, b, c, d, in[ 0], 3);
223 MD4STEP(F1, d, a, b, c, in[ 1], 7);
224 MD4STEP(F1, c, d, a, b, in[ 2], 11);
225 MD4STEP(F1, b, c, d, a, in[ 3], 19);
226 MD4STEP(F1, a, b, c, d, in[ 4], 3);
227 MD4STEP(F1, d, a, b, c, in[ 5], 7);
228 MD4STEP(F1,
[all...]
H A Dmd5-internal.c194 /* The four core functions - F1 is optimized somewhat */
196 /* #define F1(x, y, z) (x & y | ~x & z) */
197 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
198 #define F2(x, y, z) F1(z, x, y)
220 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
221 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
222 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
223 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
224 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
225 MD5STEP(F1,
[all...]
/freebsd-9.3-release/contrib/ncurses/include/
H A DCaps390 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
544 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
975 #key_f11 kf11 str F1 - - ----- F11 function key
1217 capalias KB F1 Tek key_f11
H A DCaps.aix4390 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
564 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
1077 #key_f11 kf11 str F1 - - ----- F11 function key
1208 capalias KB F1 Tek key_f11
H A DCaps.hpux11392 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
483 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
989 #key_f11 kf11 str F1 - - ----- F11 function key
1231 capalias KB F1 Tek key_f11
H A DCaps.keys392 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
546 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
1065 #key_f11 kf11 str F1 - - ----- F11 function key
1307 capalias KB F1 Tek key_f11
H A DCaps.osf1r5374 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
534 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
985 #key_f11 kf11 str F1 - - ----- F11 function key
1227 capalias KB F1 Tek key_f11
H A DCaps.uwin358 key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key
512 key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key
801 #key_f11 kf11 str F1 - - ----- F11 function key
1043 capalias KB F1 Tek key_f11
/freebsd-9.3-release/contrib/ncurses/misc/
H A Dterminfo.src612 # keys F1-F10 (%p1 values outside this range will yield unpredictable results).
924 # F13-F24 are shifted F1-F12
925 # F25-F36 are control F1-F12
926 # F37-F48 are shift+control F1-F12
1089 # applications can now use the F1-F8 keys.
1179 # F1-F12 generate different codes when shift or control modifiers are used.
1181 # F1 \E[001q
1182 # shift F1 \E[013q
1183 # control-F1 \E[025q
1674 # F13-F24 are shifted F1
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dsparc-stub.c115 F0, F1, F2, F3, F4, F5, F6, F7, enumerator in enum:regnames
/freebsd-9.3-release/contrib/cvs/lib/
H A Dmd5.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)
225 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
226 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
227 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
228 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
229 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
230 MD5STEP(F1,
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dsanity.sh3387 ### XXX maybe should use 'cvs imprt -b1 -m new-module first-dir F F1' in an
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp78 PPC::F0, PPC::F1, PPC::F2, PPC::F3,
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp1224 unsigned NextFPR = PPC::F1;
H A DPPCISelLowering.cpp1889 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1914 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2105 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp401 InductionMap::iterator F1 = IndMap.find(CmpReg1); local
402 if (F1 != IndMapEnd)
403 F = F1;

Completed in 363 milliseconds

12