Searched refs:c4 (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-12-stable/contrib/bearssl/src/kdf/
H A Dshake.c69 uint64_t c0, c1, c2, c3, c4, bnn; local
187 c4 = A[24] ^ kt;
192 A[24] = c4;
203 c4 = A[22] ^ kt;
208 A[22] = c4;
219 c4 = A[20] ^ kt;
224 A[20] = c4;
235 c4 = A[23] ^ kt;
240 A[23] = c4;
251 c4
[all...]
/freebsd-12-stable/secure/lib/libcrypt/
H A Dcrypt-blowfish.c103 u_int8_t c1, c2, c3, c4; local
124 c4 = CHAR64(*(p + 3));
125 if (c4 == 255)
127 *bp++ = ((c3 & 0x03) << 6) | c4;
/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dhash.h136 const uint32_t c4 = 0xa1e38b93; local
159 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
164 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
183 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
189 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
/freebsd-12-stable/contrib/libucl/src/
H A Ducl_hash.c130 unsigned char c1, c2, c3, c4, c5, c6, c7, c8; member in struct:__anon2381::__anon2382
140 u.c.c1 = s[i], u.c.c2 = s[i + 1], u.c.c3 = s[i + 2], u.c.c4 = s[i + 3];
145 u.c.c4 = lc_map[u.c.c4];
165 u.c.c4 = lc_map[(unsigned char)s[i++]];
188 unsigned char c1, c2, c3, c4; local
198 c1 = s[i], c2 = s[i + 1], c3 = s[i + 2], c4 = s[i + 3];
202 cmp1.c[3] = lc_map[c4];
204 c1 = d[i], c2 = d[i + 1], c3 = d[i + 2], c4 = d[i + 3];
208 cmp2.c[3] = lc_map[c4];
551 unsigned char c1, c2, c3, c4; local
[all...]
/freebsd-12-stable/crypto/heimdal/lib/wind/
H A Dutf8.c71 const unsigned c4 = *++p; local
72 if ((c4 & 0xC0) == 0x80) {
76 | (c4 & 0x3F);
/freebsd-12-stable/usr.bin/dtc/
H A Ddtc.cc358 clock_t c4 = clock(); local
373 ((double)(c4-c3))/CLOCKS_PER_SEC);
375 ((double)(c4-c0))/CLOCKS_PER_SEC);
/freebsd-12-stable/contrib/sendmail/src/
H A Dmime.c1100 int c1, c2, c3, c4; local
1125 c4 = sm_io_getc(e->e_dfp, SM_TIME_DEFAULT);
1126 } while (SM_ISSPACE(c4));
1127 if (c4 == SM_IO_EOF)
1166 if (c4 == '=')
1168 c4 = CHAR64(c4);
1169 *fbufp = ((c3 & 0x03) << 6) | c4;
/freebsd-12-stable/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c175 # define LL(c0,c1,c2,c3,c4,c5,c6,c7) c0,c1,c2,c3,c4,c5,c6,c7
186 # define LL(c0,c1,c2,c3,c4,c5,c6,c7) c0,c1,c2,c3,c4,c5,c6,c7, \
187 c7,c0,c1,c2,c3,c4,c5,c6, \
188 c6,c7,c0,c1,c2,c3,c4,c5, \
189 c5,c6,c7,c0,c1,c2,c3,c4, \
190 c4,c5,c6,c7,c0,c1,c2,c3, \
191 c3,c4,c5,c6,c7,c0,c1,c2, \
192 c2,c3,c4,c
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_intrinsics.h304 typedef char c4 __attribute__((ext_vector_type(4))); typedef
305 c4 rv = __nvvm_ldg_c4(reinterpret_cast<const c4 *>(ptr));
/freebsd-12-stable/contrib/apr-util/crypto/
H A Dcrypt_blowfish.c390 unsigned int tmp, c1, c2, c3, c4; local
402 BF_safe_atoi64(c4, *sptr++);
403 *dptr++ = ((c3 & 0x03) << 6) | c4;
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp1956 uint8_t c4 = frm_nxt[3]; local
1972 if ((c3 & 0xC0) != 0x80 || (c4 & 0xC0) != 0x80)
1978 ((c3 & 0x3FUL) << 6) + (c4 & 0x3F)) > Maxcode)
1988 | (c4 & 0x3F));
2077 uint8_t c4 = frm_nxt[3]; local
2093 if ((c3 & 0xC0) != 0x80 || (c4 & 0xC0) != 0x80)
2099 ((c3 & 0x3FUL) << 6) + (c4 & 0x3F)) > Maxcode)
2109 | (c4 & 0x3F));
2188 uint8_t c4 = frm_nxt[3]; local
2204 if ((c3 & 0xC0) != 0x80 || (c4
2355 uint8_t c4 = frm_nxt[3]; local
2457 uint8_t c4 = frm_nxt[3]; local
[all...]
/freebsd-12-stable/sys/arm/include/
H A Dsysreg.h166 #define CP15_PAR(rr) p15, 0, rr, c7, c4, 0 /* Physical Address Register */
/freebsd-12-stable/contrib/sqlite3/
H A Dshell.c1478 u64 c0, c1, c2, c3, c4; local
1526 c4 = a04^a14^a24^a34^a44;
1527 d0 = c4^ROL64(c1, 1);
1530 d3 = c2^ROL64(c4, 1);
1593 c4 = a44^a14^a34^a04^a24;
1594 d0 = c4^ROL64(c1, 1);
1597 d3 = c2^ROL64(c4, 1);
1660 c4 = a24^a14^a04^a44^a34;
1661 d0 = c4^ROL64(c1, 1);
1664 d3 = c2^ROL64(c4,
[all...]
H A Dconfig.guess800 echo c4-convex-bsd
/freebsd-12-stable/contrib/openbsm/config/
H A Dconfig.guess716 echo c4-convex-bsd
1357 c4*)
1358 echo c4-convex-bsd
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c1103 int64_t c4 = 2097151 & (load_4(c + 10) >> 4); local
1165 s4 = c4 + a0 * b4 + a1 * b3 + a2 * b2 + a3 * b1 + a4 * b0;
/freebsd-12-stable/contrib/ncurses/
H A Dconfig.guess768 echo c4-convex-bsd
1506 c4*)
1507 echo c4-convex-bsd
/freebsd-12-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dconfig.guess769 echo c4-convex-bsd
/freebsd-12-stable/contrib/libevent/
H A Dconfig.guess769 echo c4-convex-bsd
/freebsd-12-stable/contrib/binutils/
H A Dconfig.guess728 echo c4-convex-bsd
1464 c4*)
1465 echo c4-convex-bsd
/freebsd-12-stable/contrib/dialog/
H A Dconfig.guess768 echo c4-convex-bsd
1506 c4*)
1507 echo c4-convex-bsd
/freebsd-12-stable/crypto/heimdal/
H A Dconfig.guess747 echo c4-convex-bsd
1449 c4*)
1450 echo c4-convex-bsd
/freebsd-12-stable/contrib/tcpdump/
H A Dconfig.guess800 echo c4-convex-bsd
/freebsd-12-stable/contrib/unbound/
H A Dconfig.guess820 echo c4-convex-bsd
/freebsd-12-stable/contrib/libpcap/
H A Dconfig.guess800 echo c4-convex-bsd

Completed in 301 milliseconds

12