Searched refs:c2 (Results 51 - 75 of 237) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/opie/
H A Dopieauto.c75 struct cachedotp *c = head, *c2; local
78 c2 = c->next;
80 c = c2;
221 struct cachedotp *c2 = *c; local
223 memset(c2, 0, sizeof(struct cachedotp));
224 free(c2);
292 char *c2 = "/.opieauto"; local
297 if (strlen(c) > (sizeof(sun.sun_path) - strlen(c2) - 1))
301 strcat(sun.sun_path, c2);
H A Dopielogin.c1027 char line[128], *c, *c2; local
1034 if (c2 = strchr(c, ';'))
1035 *c2 = 0;
1036 if (c2 = strchr(c, '\n'))
1037 *c2 = 0;
1038 if (c2 = strchr(c, ' '))
1040 if (c2 = strchr(c, '\t'))
1371 char line[128], *c, *c2; local
1378 if (c2 = strchr(c, ';'))
1379 *c2
[all...]
/freebsd-10.0-release/contrib/tcsh/
H A Dglob.c133 globcharcoll(__Char c1, __Char c2, int cs) argument
139 if (c1 == c2)
143 c2 = towlower(c2);
147 if (iswlower(c1) && iswupper(c2))
149 if (iswupper(c1) && iswlower(c2))
153 s2[0] = c2;
159 if (c1 == c2)
167 c2 = islower(c2)
[all...]
/freebsd-10.0-release/sys/arm/arm/
H A Dcpufunc_asm_arm7tdmi.S54 mcr p15, 0, r1, c2, c0, 0
H A Dcpufunc_asm_ixp12x0.S55 mcr p15, 0, r0, c2, c0, 0
H A Dcpufunc_asm_arm11.S53 mcr p15, 0, r0, c2, c0, 0 /* load new TTB */
91 mcr p15, 0, r0, c2, c0, 0 /* set the new TTB */
/freebsd-10.0-release/sys/contrib/dev/acpica/components/utilities/
H A Dutstring.c123 int c2; local
129 c2 = tolower ((int) *String2);
134 while ((c1 == c2) && (c1));
136 return (c1 - c2);
/freebsd-10.0-release/contrib/opie/libopie/
H A Dgenerator.c66 char *c, *c2 ="/.opieauto"; variable
86 if (strlen(c) > (sizeof(sun.sun_path) - strlen(c2) - 1)) {
94 strcat(sun.sun_path, c2);
354 char *c2; local
356 if (!(c2 = strchr(++c, '\n'))) {
364 *c2++ = 0;
H A Dlock.c94 char buffer[128], buffer2[128], *c, *c2; local
171 if (!(c2 = strchr(c, '\n')))
174 *(c2++) = 0;
/freebsd-10.0-release/crypto/heimdal/appl/gssmask/
H A Dgssmaestro.c410 test_mic(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2) argument
423 val = verify_mic(c2, hc2, &msg, &mic);
425 errx(1, "verify_mic failed to host: %s", c2->moniker);
431 test_wrap(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2, argument
448 val = decrypt_token(c2, hc2, conf, &wrapped, &out);
451 warnx("decrypt_token failed to host: %s", c2->moniker);
470 test_wrap_ext(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2, argument
493 val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped, &trailer, &out);
496 warnx("decrypt_token failed to host: %s", c2->moniker);
516 test_token(struct client *c1, int32_t hc1, struct client *c2, int32_ argument
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dcaptoinfo.c610 save_tc_inequality(char *bufptr, int c1, int c2) argument
614 bufptr = save_tc_char(bufptr, c2);
666 int c1, c2; local
685 } else if (sscanf(str, "%%?%%{%d}%%>%%t%%{%d}%%+%%;", &c1, &c2) == 2) {
687 bufptr = save_tc_inequality(bufptr, c1, c2);
690 bufptr = save_tc_inequality(bufptr, c1, c2);
691 } else if (sscanf(str, "%%?%%'%c'%%>%%t%%{%d}%%+%%;", &ch1, &c2) == 2) {
693 bufptr = save_tc_inequality(bufptr, c1, c2);
696 bufptr = save_tc_inequality(bufptr, c1, c2);
/freebsd-10.0-release/crypto/heimdal/kdc/
H A Dhpropd.c75 krb5_principal c1, c2; local
192 _krb5_principalname2krb5_principal(context, &c2,
194 if(!krb5_principal_compare(context, c1, c2)) {
196 ret = krb5_unparse_name(context, c2, &s);
202 krb5_free_principal(context, c2);
/freebsd-10.0-release/usr.bin/make/
H A Dstr.c390 char c2; local
438 c2 = pattern[2];
439 if (c2 == 0)
442 (c2 >= *string))
445 (c2 <= *string))
/freebsd-10.0-release/usr.bin/uniq/
H A Duniq.c266 int c1, c2; local
272 c2 = (unsigned char)*(s2 - 1);
276 if (c2 == '\n')
277 c2 = '\0';
278 return (c1 - c2);
/freebsd-10.0-release/contrib/flex/
H A Dccl.c273 /** Determines if the range [c1-c2] is unambiguous in a case-insensitive
275 * range [c1-c2], then we require that UPPERCASE(x) and LOWERCASE(x) must also
281 * @param c2 the upper end of the range
282 * @return true if [c1-c2] is not ambiguous for a caseless scanner.
284 bool range_covers_case (int c1, int c2) argument
288 for (i = c1; i <= c2; i++) {
291 if (o < c1 || c2 < o)
/freebsd-10.0-release/lib/libkiconv/
H A Dxlat16_iconv.c346 u_char c1, c2; local
357 c2 = (*obuf)[1];
360 if (*ilen == ir - 1 && (*ibuf)[1] == '\0' && (c1 || c2))
382 if (olocal[1] == c2 && (*ibuf)[1] == '\0') {
394 if (olocal[1] == c2) {
433 if (olocal[0] == c2)
/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dhttpread.c113 int c2; local
118 c2 = *s2++;
121 if (isalpha(c2) && isupper(c2))
122 c2 = tolower(c2);
124 end2 = !isgraph(c2);
125 if (end1 || end2 || c1 != c2)
H A Dwps_upnp_ssdp.c38 int c2; local
43 c2 = *s2++;
46 if (isalpha(c2) && isupper(c2))
47 c2 = tolower(c2);
49 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-');
50 if (end1 || end2 || c1 != c2)
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_mul.c396 int n=n2/2,c1,c2; local
432 c2=bn_cmp_part_words(&(b[n]),b,tnb,tnb-n);
434 switch (c1*3+c2)
554 int c1,c2,neg; local
569 c2=bn_cmp_part_words(&(b[n]),b,tnb,tnb-n);
571 switch (c1*3+c2)
761 int c1,c2; local
773 c2=bn_cmp_words(&(b[n]),&(b[0]),n);
774 switch (c1*3+c2)
889 c2
[all...]
/freebsd-10.0-release/contrib/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp125 int next(unsigned char *c1, unsigned char *c2, int *k);
134 int kern_iterator::next(unsigned char *c1, unsigned char *c2, int *k) argument
148 *c2 = t->lig_kern[i].next_char;
174 int tfm::get_lig(unsigned char c1, unsigned char c2, unsigned char *cp) argument
187 && lig_kern[i].next_char == c2) {
284 int c2 = getc(fp); local
285 if (c1 == EOF || c2 == EOF) {
290 int lf = (c1 << 8) + c2;
674 unsigned char c1, c2, res; member in struct:S2
804 int i2 = lig_chars[lig_table[i].c2]
824 unsigned char c1, c2; local
[all...]
/freebsd-10.0-release/sys/compat/svr4/
H A Dsvr4_termios.c71 #define undefined_flag2(f,a,b,c1,t1,c2,t2) /**/
72 #define undefined_flag4(f,a,b,c1,t1,c2,t2,c3,t3,c4,t4) /**/
90 #define svr4_to_bsd_flag2(f,a,b,c1,t1,c2,t2) \
95 case __CONCAT3(SVR4_,c2,t2): bt->f |= __CONCAT(c2,t2); break; \
99 #define svr4_to_bsd_flag4(f,a,b,c1,t1,c2,t2,c3,t3,c4,t4) \
104 case __CONCAT3(SVR4_,c2,t2): bt->f |= __CONCAT(c2,t2); break; \
123 #define bsd_to_svr4_flag2(f,a,b,c1,t1,c2,t2) \
127 case __CONCAT(c2,t
[all...]
/freebsd-10.0-release/tools/regression/lib/libc/nss/
H A Dtest-getgr.c138 char **c1, **c2; local
152 c2 = grp2->gr_mem;
157 for (;*c1 && *c2; ++c1, ++c2)
158 if (strcmp(*c1, *c2) != 0)
161 if ((*c1 != '\0') || (*c2 != '\0'))
H A Dtest-getproto.c132 char **c1, **c2; local
145 c2 = pe2->p_aliases;
150 for (;*c1 && *c2; ++c1, ++c2)
151 if (strcmp(*c1, *c2) != 0)
154 if ((*c1 != '\0') || (*c2 != '\0'))
H A Dtest-getrpc.c132 char **c1, **c2; local
145 c2 = rpc2->r_aliases;
150 for (;*c1 && *c2; ++c1, ++c2)
151 if (strcmp(*c1, *c2) != 0)
154 if ((*c1 != '\0') || (*c2 != '\0'))
H A Dtest-getserv.c137 char **c1, **c2; local
151 c2 = serv2->s_aliases;
156 for (;*c1 && *c2; ++c1, ++c2)
157 if (strcmp(*c1, *c2) != 0)
160 if ((*c1 != '\0') || (*c2 != '\0'))

Completed in 222 milliseconds

12345678910