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

1 2 3

  /src/common/lib/libc/string/
consttime_memequal.c 21 const unsigned char *c1 = b1, *c2 = b2; local in function:__weak_alias
25 res |= *c1++ ^ *c2++;
bcmp.c 89 const unsigned char *c1, *c2; local in function:bcmp
108 c1 = (const unsigned char *)b1;
111 c1 = (const unsigned char *)s1;
117 if (*c1++ != *c2++)
memcmp.c 89 const unsigned char *c1, *c2; local in function:memcmp
110 c1 = (const unsigned char *)b1;
113 c1 = (const unsigned char *)s1;
119 if (*c1++ != *c2++)
120 return *--c1 - *--c2;
  /src/distrib/utils/libhack/
strcasecmp.c 16 unsigned char c1, c2; local in function:strcasecmp
19 c1 = *s1++;
21 if (c1 >= 'A' && c1 <= 'Z')
22 c1 += 'a' - 'A';
25 } while (c1 == c2 && c1 != 0 && c2 != 0);
27 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
  /src/games/sail/
dr_5.c 74 int c1, c2, c3; local in function:mensent
88 c1 = men/100 ? crew[0] : 0;
93 c1 = c2 = c3 = 0;
94 return(c1 + c2 + c3);
  /src/games/mille/
misc.c 76 int c, c1; local in function:getcard
105 while ((c1=readch()) != '\r' && c1 != '\n' && c1 != ' ')
106 if (c1 == killchar())
108 else if (c1 == erasechar()) {
  /src/lib/libc/citrus/
citrus_bcs.c 54 int c1 = 1, c2 = 1; local in function:_citrus_bcs_strcasecmp
56 while (c1 && c2 && c1 == c2) {
57 c1 = _bcs_toupper(*str1++);
61 return ((c1 == c2) ? 0 : ((c1 > c2) ? 1 : -1));
71 int c1 = 1, c2 = 1; local in function:_citrus_bcs_strncasecmp
73 while (c1 && c2 && c1 == c2 && sz != 0) {
74 c1 = _bcs_toupper(*str1++)
    [all...]
  /src/lib/libtelnet/
genget.c 56 char c1, c2; local in function:isprefix
61 c1 = *s1;
63 while (LOWER(c1) == LOWER(c2)) {
64 if (c1 == '\0')
66 c1 = *++s1;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/volt/
gk20a.h 30 int c1; 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
  /src/usr.sbin/rpc.pcnfsd/
pcnfsd_cache.c 58 int c1, c2; local in function:check_cache
62 c1 = strlen(pw);
64 if ((!c1 && !c2) ||
pcnfsd_v1.c 77 int c1, c2; local in function:pcnfsd_auth_1_svc
102 c1 = strlen(pw);
104 if ((c1 && !c2) || (c2 && !c1) ||
  /src/tests/usr.bin/xlint/lint1/
msg_210.c 17 C1
27 C c1 = C1; variable in typeref:typename:C
  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 256 int c1; local in function:AcpiUtStricmp
262 c1 = tolower ((int) *String1);
268 while ((c1 == c2) && (c1));
270 return (c1 - c2);
  /src/sys/arch/x68k/include/
opmreg.h 56 struct opm_operator c1; member in struct:opm_voice
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_base.c 106 unsigned char c1, c2; local in function:nvbios_memcmp
109 c1 = nvbios_rd08(bios, addr++);
111 if (c1 != c2)
112 return c1 - c2;
  /src/sys/external/isc/libsodium/dist/test/default/
secretstream.c 13 unsigned char *c1, *c2, *c3, *csave; local in function:main
34 c1 = (unsigned char *)
70 (state, c1, &res_len, m1, m1_len, NULL, 0, 0);
90 c1, m1_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0);
153 (state, c1, NULL, m1, m1_len, NULL, 0, 0);
163 c1, m1_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0);
175 (state, c1, NULL, m1, m1_len, NULL, 0, 0);
188 c1, m1_len + crypto_secretstream_xchacha20poly1305_ABYTES, NULL, 0);
211 (state, c1, NULL, m1, m1_len, NULL, 0, crypto_secretstream_xchacha20poly1305_TAG_REKEY);
224 c1, m1_len + crypto_secretstream_xchacha20poly1305_ABYTES, &tag, 0)
    [all...]
  /src/usr.bin/vis/
vis.c 173 wint_t c, c1, rachar; local in function:process
238 c1 = rachar;
239 if (c1 == WEOF)
240 c1 = L'\0';
254 mbibuff[mbilen] = (char)c1;
256 wctomb(mbibuff + mbilen, c1);
  /src/usr.sbin/mtree/
specspec.c 196 NODE *c1, *c2, *n1, *n2; local in function:walk_in_the_forest
202 c1 = t1->child;
204 c1 = NULL;
209 while (c1 != NULL || c2 != NULL) {
211 if (c1 != NULL)
212 n1 = c1->next;
215 if (c1 != NULL && c2 != NULL) {
216 if (c1->type != F_DIR && c2->type == F_DIR) {
219 } else if (c1->type == F_DIR && c2->type != F_DIR) {
220 n1 = c1;
    [all...]
  /src/sys/arch/arm/imx/
imxsnvs.c 154 uint64_t c1, c2; local in function:imxsnvs_gettime
159 c1 = c2;
162 } while (c1 != c2);
164 tvp->tv_sec = c1 >> SVNS_COUNTER_SHIFT;
165 tvp->tv_usec = (c1 % SVNS_COUNTER_HZ) * 1000000 / SVNS_COUNTER_HZ;
  /src/games/cribbage/
score.c 349 int i, c0, c1; local in function:adjust
352 c1 = cb[1].rank;
353 if (c0 > c1) {
355 c0 = c1;
356 c1 = i;
359 scr = crbnescr[RANKS * c0 + c1];
361 scr = crbescr[RANKS * c0 + c1];
363 printf("\nADJUST: internal error %d %d\n", c0, c1);
  /src/lib/libcrypt/
bcrypt.c 109 u_int8_t c1, c2, c3, c4; local in function:decode_base64
111 c1 = CHAR64(*p);
115 if (c1 == 255 || c2 == 255)
118 *bp++ = ((u_int32_t)c1 << 2) | (((u_int32_t)c2 & 0x30) >> 4);
326 u_int8_t c1, c2; local in function:encode_base64
328 c1 = *p++;
329 *bp++ = Base64Code[((u_int32_t)c1 >> 2)];
330 c1 = (c1 & 0x03) << 4;
332 *bp++ = Base64Code[c1];
    [all...]
  /src/sys/crypto/aes/arch/x86/
aes_sse2_subr.c 562 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_enc1
575 c1 = le32dec(authctr + 16 + 4*1);
587 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0);
619 uint32_t c0, c1, c2, c3; local in function:aes_sse2_ccm_dec1
629 c1 = le32dec(authctr + 16 + 4*1);
634 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0);
666 ctr = _mm_set_epi32(bswap32(++c3), c2, c1, c0);
  /src/sys/dev/rasops/
rasops24.c 139 uint32_t c1, uint32_t c2, uint32_t c3, uint32_t c4)
142 xstamp[0] = (c1 << 8) | (c2 >> 16);
166 uint32_t bg, fg, c1, c2, c3, c4; local in function:rasops24_makestamp
176 c1 = i & 32 ? fg : bg;
181 c1 = i & 8 ? 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;
130 c1 = vextq_u32(r1, r1, 1);
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...]

Completed in 21 milliseconds

1 2 3