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

1 2

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
nested-class-func-class.cc 21 class F1
37 F1 x;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
nested-class-func-class.cc 21 class F1
37 F1 x;
  /src/external/bsd/ntp/dist/libntp/lib/isc/
md5.c 105 /*! The four core functions - F1 is optimized somewhat */
107 /* #define F1(x, y, z) (x & y | ~x & z) */
108 #define F1(x, y, z) (z ^ (x & (y ^ z)))
109 #define F2(x, y, z) F1(z, x, y)
132 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
133 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
134 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
135 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
136 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
137 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
  /src/sys/crypto/cast128/
cast128.c 31 #define F1(l, r, i) \
58 F1(l, r, 0);
61 F1(r, l, 3);
64 F1(l, r, 6);
67 F1(r, l, 9);
72 F1(l, r, 12);
75 F1(r, l, 15);
106 F1(r, l, 15);
109 F1(l, r, 12);
113 F1(r, l, 9)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
function_call_trie_test.cc 146 // f0@t0 -> f1@t1 -> f2@t2
149 // `f0` @ t4 (i.e. no `f1` exit in between) then we need to handle the case of
150 // accounting local time to `f2` from d = (t3 - t2), then local time to `f1`
170 const auto &F1 = *R[0];
171 ASSERT_EQ(F1.FId, 1);
172 ASSERT_FALSE(F1.Callees.empty());
174 const auto &F2 = *F1.Callees[0].NodePtr;
186 EXPECT_EQ(F1.CallCount, 1u);
189 EXPECT_EQ(F1.CumulativeLocalTime, 100u);
299 const auto &F1 = *R0.Callees[0].NodePtr
    [all...]
  /src/tests/lib/semaphore/
sem.c 317 #define F1(name, a) int _ksem_##name(a); \
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/crypto/external/apache2/openssl/dist/crypto/ripemd/
rmd_local.h 56 #define F1(x, y, z) ((x) ^ (y) ^ (z))
72 a += F1(b, c, d) + X(w); \
  /src/crypto/external/bsd/openssl/dist/crypto/ripemd/
rmd_local.h 50 #define F1(x,y,z) ((x) ^ (y) ^ (z))
65 a+=F1(b,c,d)+X(w); \
  /src/crypto/external/bsd/openssl.old/dist/crypto/ripemd/
rmd_local.h 50 #define F1(x,y,z) ((x) ^ (y) ^ (z))
65 a+=F1(b,c,d)+X(w); \
  /src/external/bsd/openldap/dist/libraries/liblutil/
md5.c 198 /* The four core functions - F1 is optimized somewhat */
200 /* #define F1(x, y, z) (x & y | ~x & z) */
201 #define F1(x, y, z) (z ^ (x & (y ^ z)))
202 #define F2(x, y, z) F1(z, x, y)
230 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
231 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
232 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
233 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
234 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
235 MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12)
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
md5-internal.c 191 /* 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)))
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, d, a, b, c, in[5] + 0x4787c62a, 12)
    [all...]
md4-internal.c 181 /* 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)))
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, c, d, a, b, in[ 6], 11)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FileUtilities.cpp 192 MemoryBuffer &F1 = *F1OrErr.get();
203 const char *File1Start = F1.getBufferStart();
205 const char *File1End = F1.getBufferEnd();
209 uint64_t A_size = F1.getBufferSize();
  /src/common/lib/libc/hash/rmd160/
rmd160.c 96 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z)))
226 R(e, a, b, c, d, F1, K1, 7, 7);
227 R(d, e, a, b, c, F1, K1, 6, 4);
228 R(c, d, e, a, b, F1, K1, 8, 13);
229 R(b, c, d, e, a, F1, K1, 13, 1);
230 R(a, b, c, d, e, F1, K1, 11, 10);
231 R(e, a, b, c, d, F1, K1, 9, 6);
232 R(d, e, a, b, c, F1, K1, 7, 15);
233 R(c, d, e, a, b, F1, K1, 15, 3);
234 R(b, c, d, e, a, F1, K1, 7, 12)
    [all...]
  /src/usr.bin/join/
join.c 124 INPUT *F1, *F2;
128 F1 = &input1;
137 F1->unpair = F2->unpair = 1;
140 if ((F1->joinf = strtol(optarg, &end, 10)) < 1) {
148 --F1->joinf;
165 F1->unpair = 1;
184 if ((F1->joinf = F2->joinf =
193 --F1->joinf;
211 F1->unpair = 1;
242 F1->fp = stdin
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
sha.c 64 #define F1(x,y,z) (x ^ y ^ z)
66 #define F3(x,y,z) F1(x,y,z)
128 DO(20,F1,K1);
129 DO(21,F1,K1);
130 DO(22,F1,K1);
131 DO(23,F1,K1);
132 DO(24,F1,K1);
133 DO(25,F1,K1);
134 DO(26,F1,K1);
135 DO(27,F1,K1)
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
rmd160.c 78 #define F1(x, y, z) (((x) & (y)) | ((~x) & (z)))
204 R(e, a, b, c, d, F1, K1, 7, 7);
205 R(d, e, a, b, c, F1, K1, 6, 4);
206 R(c, d, e, a, b, F1, K1, 8, 13);
207 R(b, c, d, e, a, F1, K1, 13, 1);
208 R(a, b, c, d, e, F1, K1, 11, 10);
209 R(e, a, b, c, d, F1, K1, 9, 6);
210 R(d, e, a, b, c, F1, K1, 7, 15);
211 R(c, d, e, a, b, F1, K1, 15, 3);
212 R(b, c, d, e, a, F1, K1, 7, 12)
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
sha1.c 281 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
332 R( a, b, c, d, e, F1, K1, x[ 0] );
333 R( e, a, b, c, d, F1, K1, x[ 1] );
334 R( d, e, a, b, c, F1, K1, x[ 2] );
335 R( c, d, e, a, b, F1, K1, x[ 3] );
336 R( b, c, d, e, a, F1, K1, x[ 4] );
337 R( a, b, c, d, e, F1, K1, x[ 5] );
338 R( e, a, b, c, d, F1, K1, x[ 6] );
339 R( d, e, a, b, c, F1, K1, x[ 7] );
340 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
sha1.c 281 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
332 R( a, b, c, d, e, F1, K1, x[ 0] );
333 R( e, a, b, c, d, F1, K1, x[ 1] );
334 R( d, e, a, b, c, F1, K1, x[ 2] );
335 R( c, d, e, a, b, F1, K1, x[ 3] );
336 R( b, c, d, e, a, F1, K1, x[ 4] );
337 R( a, b, c, d, e, F1, K1, x[ 5] );
338 R( e, a, b, c, d, F1, K1, x[ 6] );
339 R( d, e, a, b, c, F1, K1, x[ 7] );
340 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
sha1.c 285 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
336 R( a, b, c, d, e, F1, K1, x[ 0] );
337 R( e, a, b, c, d, F1, K1, x[ 1] );
338 R( d, e, a, b, c, F1, K1, x[ 2] );
339 R( c, d, e, a, b, F1, K1, x[ 3] );
340 R( b, c, d, e, a, F1, K1, x[ 4] );
341 R( a, b, c, d, e, F1, K1, x[ 5] );
342 R( e, a, b, c, d, F1, K1, x[ 6] );
343 R( d, e, a, b, c, F1, K1, x[ 7] );
344 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
sha1.c 280 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
331 R( a, b, c, d, e, F1, K1, x[ 0] );
332 R( e, a, b, c, d, F1, K1, x[ 1] );
333 R( d, e, a, b, c, F1, K1, x[ 2] );
334 R( c, d, e, a, b, F1, K1, x[ 3] );
335 R( b, c, d, e, a, F1, K1, x[ 4] );
336 R( a, b, c, d, e, F1, K1, x[ 5] );
337 R( e, a, b, c, d, F1, K1, x[ 6] );
338 R( d, e, a, b, c, F1, K1, x[ 7] );
339 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
sha1.c 281 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
332 R( a, b, c, d, e, F1, K1, x[ 0] );
333 R( e, a, b, c, d, F1, K1, x[ 1] );
334 R( d, e, a, b, c, F1, K1, x[ 2] );
335 R( c, d, e, a, b, F1, K1, x[ 3] );
336 R( b, c, d, e, a, F1, K1, x[ 4] );
337 R( a, b, c, d, e, F1, K1, x[ 5] );
338 R( e, a, b, c, d, F1, K1, x[ 6] );
339 R( d, e, a, b, c, F1, K1, x[ 7] );
340 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
sha1.c 281 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
332 R( a, b, c, d, e, F1, K1, x[ 0] );
333 R( e, a, b, c, d, F1, K1, x[ 1] );
334 R( d, e, a, b, c, F1, K1, x[ 2] );
335 R( c, d, e, a, b, F1, K1, x[ 3] );
336 R( b, c, d, e, a, F1, K1, x[ 4] );
337 R( a, b, c, d, e, F1, K1, x[ 5] );
338 R( e, a, b, c, d, F1, K1, x[ 6] );
339 R( d, e, a, b, c, F1, K1, x[ 7] );
340 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /src/sys/dev/i2c/
sensirion_voc_algorithm.c 774 fix16_t F1;
797 F1 = fix16_exp((fix16_mul(F16(VocAlgorithm_LP_ALPHA), abs_delta)));
800 F1)) +
  /src/libexec/getty/
gettytab.h 109 #define F1 gettynums[10].value

Completed in 135 milliseconds

1 2