/src/games/sail/ |
dr_5.c | 74 int c1, c2, c3; local in function:mensent 90 c3 = men/10 ? crew[2] : 0; 91 c3 = *captured == 0 ? crew[2] : *pc; 93 c1 = c2 = c3 = 0; 94 return(c1 + c2 + c3);
|
dr_5.c | 74 int c1, c2, c3; local in function:mensent 90 c3 = men/10 ? crew[2] : 0; 91 c3 = *captured == 0 ? crew[2] : *pc; 93 c1 = c2 = c3 = 0; 94 return(c1 + c2 + c3);
|
dr_5.c | 74 int c1, c2, c3; local in function:mensent 90 c3 = men/10 ? crew[2] : 0; 91 c3 = *captured == 0 ? crew[2] : *pc; 93 c1 = c2 = c3 = 0; 94 return(c1 + c2 + c3);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/volt/ |
gk20a.h | 32 int c3; member in struct:cvb_coef
|
gk20a.h | 32 int c3; member in struct:cvb_coef
|
gk20a.h | 32 int c3; member in struct:cvb_coef
|
/src/usr.bin/make/unit-tests/ |
varname-dot-make-mode.mk | 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT 35 a1 a2 a3 b1 b2 b3 c1 c2 c3: target
|
varname-dot-make-mode.mk | 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT 35 a1 a2 a3 b1 b2 b3 c1 c2 c3: target
|
varname-dot-make-mode.mk | 34 randomize-targets: .WAIT a1 a2 a3 .WAIT b1 b2 b3 .WAIT c1 c2 c3 .WAIT 35 a1 a2 a3 b1 b2 b3 c1 c2 c3: target
|
/src/sys/external/isc/libsodium/dist/test/default/ |
secretstream.c | 13 unsigned char *c1, *c2, *c3, *csave; local in function:main 38 c3 = (unsigned char *) 79 (state, c3, NULL, m3, m3_len, ad, ad_len, 106 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0); 111 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 120 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 300 sodium_free(c3);
|
secretstream.c | 13 unsigned char *c1, *c2, *c3, *csave; local in function:main 38 c3 = (unsigned char *) 79 (state, c3, NULL, m3, m3_len, ad, ad_len, 106 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0); 111 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 120 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 300 sodium_free(c3);
|
secretstream.c | 13 unsigned char *c1, *c2, *c3, *csave; local in function:main 38 c3 = (unsigned char *) 79 (state, c3, NULL, m3, m3_len, ad, ad_len, 106 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0); 111 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 120 c3, m3_len + crypto_secretstream_xchacha20poly1305_ABYTES, ad, ad_len); 300 sodium_free(c3);
|
/src/lib/libcrypt/ |
bcrypt.c | 109 u_int8_t c1, c2, c3, c4; local in function:decode_base64 122 c3 = CHAR64(*(p + 2)); 123 if (c3 == 255) 126 *bp++ = (((u_int32_t)c2 & 0x0f) << 4) | (((uint32_t)c3 & 0x3c) >> 2); 133 *bp++ = ((c3 & 0x03) << 6) | c4;
|
bcrypt.c | 109 u_int8_t c1, c2, c3, c4; local in function:decode_base64 122 c3 = CHAR64(*(p + 2)); 123 if (c3 == 255) 126 *bp++ = (((u_int32_t)c2 & 0x0f) << 4) | (((uint32_t)c3 & 0x3c) >> 2); 133 *bp++ = ((c3 & 0x03) << 6) | c4;
|
bcrypt.c | 109 u_int8_t c1, c2, c3, c4; local in function:decode_base64 122 c3 = CHAR64(*(p + 2)); 123 if (c3 == 255) 126 *bp++ = (((u_int32_t)c2 & 0x0f) << 4) | (((uint32_t)c3 & 0x3c) >> 2); 133 *bp++ = ((c3 & 0x03) << 6) | c4;
|
/src/sys/crypto/aes/arch/x86/ |
aes_sse2_subr.c | 562 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_enc1 577 c3 = be32dec(authctr + 16 + 4*3); 587 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 604 be32enc(authctr + 16 + 4*3, c3); 619 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_dec1 631 c3 = be32dec(authctr + 16 + 4*3); 634 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 666 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 690 be32enc(authctr + 16 + 4*3, c3);
|
aes_sse2_subr.c | 562 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_enc1 577 c3 = be32dec(authctr + 16 + 4*3); 587 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 604 be32enc(authctr + 16 + 4*3, c3); 619 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_dec1 631 c3 = be32dec(authctr + 16 + 4*3); 634 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 666 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 690 be32enc(authctr + 16 + 4*3, c3);
|
aes_sse2_subr.c | 562 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_enc1 577 c3 = be32dec(authctr + 16 + 4*3); 587 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 604 be32enc(authctr + 16 + 4*3, c3); 619 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_dec1 631 c3 = be32dec(authctr + 16 + 4*3); 634 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 666 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0); 690 be32enc(authctr + 16 + 4*3, c3);
|
/src/sys/dev/rasops/ |
rasops24.c | 139 uint32_t c1, uint32_t c2, uint32_t c3, uint32_t c4) 143 xstamp[1] = (c2 << 16) | (c3 >> 8); 144 xstamp[2] = (c3 << 24) | c4; 166 uint32_t bg, fg, c1, c2, c3, c4; local in function:rasops24_makestamp 178 c3 = i & 8 ? fg : bg; 183 c3 = i & 16 ? fg : bg; 186 rasops24_makestamp1(ri, &stamp[i], c1, c2, c3, c4);
|
rasops24.c | 139 uint32_t c1, uint32_t c2, uint32_t c3, uint32_t c4) 143 xstamp[1] = (c2 << 16) | (c3 >> 8); 144 xstamp[2] = (c3 << 24) | c4; 166 uint32_t bg, fg, c1, c2, c3, c4; local in function:rasops24_makestamp 178 c3 = i & 8 ? fg : bg; 183 c3 = i & 16 ? fg : bg; 186 rasops24_makestamp1(ri, &stamp[i], c1, c2, c3, c4);
|
rasops24.c | 139 uint32_t c1, uint32_t c2, uint32_t c3, uint32_t c4) 143 xstamp[1] = (c2 << 16) | (c3 >> 8); 144 xstamp[2] = (c3 << 24) | c4; 166 uint32_t bg, fg, c1, c2, c3, c4; local in function:rasops24_makestamp 178 c3 = i & 8 ? fg : bg; 183 c3 = i & 16 ? fg : bg; 186 rasops24_makestamp1(ri, &stamp[i], c1, c2, c3, c4);
|
/src/sys/crypto/chacha/arch/arm/ |
chacha_neon.c | 116 uint32x4_t c0, c1, c2, c3; 132 c3 = vextq_u32(r3, r3, 3); 134 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol16(c3); 135 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol12(c1); 136 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol8(c3); 137 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol7(c1) 114 uint32x4_t c0, c1, c2, c3; local in function:chacha_permute [all...] |
chacha_neon.c | 116 uint32x4_t c0, c1, c2, c3; 132 c3 = vextq_u32(r3, r3, 3); 134 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol16(c3); 135 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol12(c1); 136 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol8(c3); 137 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol7(c1) 114 uint32x4_t c0, c1, c2, c3; local in function:chacha_permute [all...] |
chacha_neon.c | 116 uint32x4_t c0, c1, c2, c3; 132 c3 = vextq_u32(r3, r3, 3); 134 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol16(c3); 135 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol12(c1); 136 c0 = vaddq_u32(c0, c1); c3 ^= c0; c3 = rol8(c3); 137 c2 = vaddq_u32(c2, c3); c1 ^= c2; c1 = rol7(c1) 114 uint32x4_t c0, c1, c2, c3; local in function:chacha_permute [all...] |
/src/sys/crypto/aes/ |
aes_bear.c | 652 uint32_t c0, c1, c2, c3; local in function:aesbear_ccm_enc1 670 c3 = be32dec(authctr + 16 + 4*3); 683 q[2*3 + 1] = bswap32(++c3); 704 be32enc(authctr + 16 + 4*3, c3); 717 uint32_t c0, c1, c2, c3; local in function:aesbear_ccm_dec1 730 c3 = be32dec(authctr + 16 + 4*3); 736 q[2*3] = bswap32(++c3); 782 q[2*3] = bswap32(++c3); 807 be32enc(authctr + 16 + 4*3, c3);
|