HomeSort by: relevance | last modified time | path
    Searched defs:FF (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/usr.sbin/mtree/
specspec.c 48 #define FF(a, b, c, d) \
152 if (FF(n1, n2, F_CKSUM, cksum))
154 if (FF(n1, n2, F_GID, st_gid))
156 if (FF(n1, n2, F_GNAME, st_gid))
158 if (FF(n1, n2, F_MODE, st_mode))
160 if (FF(n1, n2, F_NLINK, st_nlink))
162 if (FF(n1, n2, F_SIZE, st_size))
168 if (FF(n1, n2, F_UID, st_uid))
170 if (FF(n1, n2, F_UNAME, st_uid))
184 if (FF(n1, n2, F_FLAGS, st_flags)
    [all...]
  /src/common/lib/libc/md/
md4c.c 103 * FF, GG and HH are transformations for rounds 1, 2 and 3.
106 #define FF(a, b, c, d, x, s) { \
231 FF (a, b, c, d, x[ 0], S11); /* 1 */
232 FF (d, a, b, c, x[ 1], S12); /* 2 */
233 FF (c, d, a, b, x[ 2], S13); /* 3 */
234 FF (b, c, d, a, x[ 3], S14); /* 4 */
235 FF (a, b, c, d, x[ 4], S11); /* 5 */
236 FF (d, a, b, c, x[ 5], S12); /* 6 */
237 FF (c, d, a, b, x[ 6], S13); /* 7 */
238 FF (b, c, d, a, x[ 7], S14); /* 8 *
    [all...]
md5c.c 147 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
150 #define FF(a, b, c, d, x, s, ac) { \
277 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
278 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
279 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
280 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
281 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
282 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
283 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
284 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 *
    [all...]
  /src/sys/ufs/ext2fs/
ext2fs_hash.c 73 * FF, GG, and HH are transformations for rounds 1, 2, and 3.
76 #define FF(a, b, c, d, x, s) { \
181 FF(a, b, c, d, data[0], 3);
182 FF(d, a, b, c, data[1], 7);
183 FF(c, d, a, b, data[2], 11);
184 FF(b, c, d, a, data[3], 19);
185 FF(a, b, c, d, data[4], 3);
186 FF(d, a, b, c, data[5], 7);
187 FF(c, d, a, b, data[6], 11);
188 FF(b, c, d, a, data[7], 19)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelDAGToDAG.h 99 uint8_t FF;
137 uint8_t FF;
  /src/external/gpl2/xcvs/dist/lib/
md5.c 289 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
290 #define FF(b, c, d) (d ^ (b & (c ^ d)))
291 #define FG(b, c, d) FF (d, b, c)
337 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/bin/pax/
options.h 62 #define FF 0x000000010ULL
115 #define BDCOPY (AF|BF|FF|OF|XF|CAF|CBF|CEF)
  /src/usr.bin/fpr/
fpr.c 55 #define FF '\f'
114 cc = FF;
147 cc = FF;
248 case FF:
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
sha256.c 99 uint32_t AA, BB, CC, DD, EE, FF, GG, HH;
108 FF = F;
121 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i];
125 GG = FF;
126 FF = EE;
139 F += FF;
sha512.c 123 uint64_t AA, BB, CC, DD, EE, FF, GG, HH;
132 FF = F;
145 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i];
149 GG = FF;
150 FF = EE;
163 F += FF;
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
md5c.c 126 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
129 #define FF(a, b, c, d, x, s, ac) { \
248 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
249 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
250 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
251 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
252 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
253 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
254 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
255 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 *
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineSizeEstimatorAnalysis.cpp 160 FunctionFeatures FF;
162 FF.InstructionHistogram.resize(InstrCount);
164 FF.InstructionPairHistogram.resize(ImportantInstructionSuccessions.size());
181 ++FF.InstructionHistogram[ID];
184 ++FF.InstructionPairHistogram[PairIndex];
187 ++FF[NamedFeatureIndex::Calls];
191 FF[NamedFeatureIndex::InitialSize] = getSize(F, FAM);
192 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage();
193 FF[NamedFeatureIndex::IsLinkOnceODR] = F.hasLinkOnceODRLinkage();
194 FF[NamedFeatureIndex::IsLinkOnce] = F.hasLinkOnceLinkage()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCFragment.cpp 417 const auto *FF = cast<MCFillFragment>(this);
418 OS << " Value:" << static_cast<unsigned>(FF->getValue())
419 << " ValueSize:" << static_cast<unsigned>(FF->getValueSize())
420 << " NumValues:" << FF->getNumValues();
  /src/external/bsd/ipf/dist/
md5.c 85 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
87 #define FF(a, b, c, d, x, s, ac) \
226 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */
227 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */
228 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */
229 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */
230 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */
231 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */
232 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */
233 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 *
    [all...]
  /src/external/bsd/iscsi/dist/src/lib/
md5c.c 156 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
159 #define FF(a, b, c, d, x, s, ac) { \
290 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
291 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
292 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
293 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
294 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
295 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
296 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
297 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 *
    [all...]
  /src/external/bsd/ppp/dist/pppd/
ppp-md5.c 177 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
179 #define FF(a, b, c, d, x, s, ac) \
310 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */
311 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */
312 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */
313 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */
314 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */
315 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */
316 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */
317 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 *
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/binutils.old/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/gcc/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/gcc.old/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
info-types.c 51 DD, EE, FF
  /src/external/gpl3/gdb/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
info-types.c 51 DD, EE, FF
  /src/external/gpl3/gdb.old/dist/libiberty/
md5.c 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
272 #define FF(b, c, d) (d ^ (b & (c ^ d)))
273 #define FG(b, c, d) FF (d, b, c)
318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
  /src/external/gpl3/gcc/dist/gcc/config/alpha/
vms.h 137 enum avms_arg_type {I64, FF, FD, FG, FS, FT};

Completed in 46 milliseconds

1 2