HomeSort by: relevance | last modified time | path
    Searched refs:cp (Results 1 - 25 of 2546) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_184.c 9 example(char *cp)
12 return cp;
msg_184.c 9 example(char *cp)
12 return cp;
  /src/sys/lib/libkern/
scanc.c 38 scanc(u_int size, const u_char *cp, const u_char table[], int mask)
40 const u_char *end = &cp[size];
42 while (cp < end && (table[*cp] & mask) == 0)
43 cp++;
44 return (end - cp);
skpc.c 38 skpc(int mask, size_t size, u_char *cp)
40 u_char *end = &cp[size];
42 while (cp < end && *cp == (u_char) mask)
43 cp++;
44 return (end - cp);
scanc.c 38 scanc(u_int size, const u_char *cp, const u_char table[], int mask)
40 const u_char *end = &cp[size];
42 while (cp < end && (table[*cp] & mask) == 0)
43 cp++;
44 return (end - cp);
skpc.c 38 skpc(int mask, size_t size, u_char *cp)
40 u_char *end = &cp[size];
42 while (cp < end && *cp == (u_char) mask)
43 cp++;
44 return (end - cp);
intoa.c 54 char *cp; local in function:intoa
60 cp = &buf[sizeof buf];
61 *--cp = '\0';
66 *--cp = byte % 10 + '0';
69 *--cp = byte % 10 + '0';
72 *--cp = byte + '0';
74 *--cp = '.';
78 return (cp+1);
intoa.c 54 char *cp; local in function:intoa
60 cp = &buf[sizeof buf];
61 *--cp = '\0';
66 *--cp = byte % 10 + '0';
69 *--cp = byte % 10 + '0';
72 *--cp = byte + '0';
74 *--cp = '.';
78 return (cp+1);
  /src/usr.bin/ctags/
lisp.c 60 char *cp; local in function:l_entries
86 for (cp = lbp; *cp && *cp != '\n'; ++cp)
88 *cp = EOS;
90 if (!(cp = strchr(lbp, ')')))
92 for (; cp >= lbp && *cp != ':'; --cp)
    [all...]
lisp.c 60 char *cp; local in function:l_entries
86 for (cp = lbp; *cp && *cp != '\n'; ++cp)
88 *cp = EOS;
90 if (!(cp = strchr(lbp, ')')))
92 for (; cp >= lbp && *cp != ':'; --cp)
    [all...]
  /src/usr.bin/mail/
head.c 51 * Match the given string (cp) against the given template (tp).
55 cmatch(const char *cp, const char *tp)
58 while (*cp && *tp)
61 if (!islower((unsigned char)*cp++))
65 if (!isupper((unsigned char)*cp++))
69 if (*cp++ != ' ')
73 if (!isdigit((unsigned char)*cp++))
77 if (*cp != ' ' && !isdigit((unsigned char)*cp))
79 cp++
214 char *cp; local in function:copyin
236 const char *cp; local in function:parse
268 const char *cp; local in function:ishead
    [all...]
head.c 51 * Match the given string (cp) against the given template (tp).
55 cmatch(const char *cp, const char *tp)
58 while (*cp && *tp)
61 if (!islower((unsigned char)*cp++))
65 if (!isupper((unsigned char)*cp++))
69 if (*cp++ != ' ')
73 if (!isdigit((unsigned char)*cp++))
77 if (*cp != ' ' && !isdigit((unsigned char)*cp))
79 cp++
214 char *cp; local in function:copyin
236 const char *cp; local in function:parse
268 const char *cp; local in function:ishead
    [all...]
  /src/sys/arch/hppa/stand/common/
cons.c 50 struct consdev *cp; local in function:cninit
54 for (cp = constab; cp->cn_probe; cp++) {
55 (*cp->cn_probe)(cp);
56 if (cp->cn_pri > CN_DEAD &&
57 (cn_tab == NULL || cp->cn_pri > cn_tab->cn_pri)) {
58 cn_tab = cp;
cons.c 50 struct consdev *cp; local in function:cninit
54 for (cp = constab; cp->cn_probe; cp++) {
55 (*cp->cn_probe)(cp);
56 if (cp->cn_pri > CN_DEAD &&
57 (cn_tab == NULL || cp->cn_pri > cn_tab->cn_pri)) {
58 cn_tab = cp;
  /src/usr.sbin/tcpdchk/
percent_m.c 33 const char *cp = ibuf; local in function:percent_m
35 while ((*bp = *cp) != '\0')
36 if (*cp == '%' && cp[1] == 'm') {
39 cp += 2;
41 bp++, cp++;
percent_m.c 33 const char *cp = ibuf; local in function:percent_m
35 while ((*bp = *cp) != '\0')
36 if (*cp == '%' && cp[1] == 'm') {
39 cp += 2;
41 bp++, cp++;
  /src/sbin/fastboot/
fastboot.sh 38 cp /dev/null /fastboot
fasthalt.sh 38 cp /dev/null /fastboot
fastboot.sh 38 cp /dev/null /fastboot
fasthalt.sh 38 cp /dev/null /fastboot
  /src/lib/libc/net/
getnetent.c 119 register char *cp, **q; local in function:getnetent
133 cp = strpbrk(p, "#\n");
134 if (cp == NULL)
136 *cp = '\0';
138 cp = strpbrk(p, " \t");
139 if (cp == NULL)
141 *cp++ = '\0';
142 while (*cp == ' ' || *cp == '\t')
143 cp++
    [all...]
getnetent.c 119 register char *cp, **q; local in function:getnetent
133 cp = strpbrk(p, "#\n");
134 if (cp == NULL)
136 *cp = '\0';
138 cp = strpbrk(p, " \t");
139 if (cp == NULL)
141 *cp++ = '\0';
142 while (*cp == ' ' || *cp == '\t')
143 cp++
    [all...]
  /src/usr.bin/colcrt/
colcrt.c 84 char *cp, *dp; local in function:main
167 cp = &page[outline][outcol];
172 cp += 132;
175 if (*cp == 0) {
176 *cp = c;
177 dp = cp - outcol;
178 for (cp--; cp >= dp && *cp == 0; cp--
206 char *cp; local in function:pflush
239 char *cp, *dp; local in function:move
    [all...]
colcrt.c 84 char *cp, *dp; local in function:main
167 cp = &page[outline][outcol];
172 cp += 132;
175 if (*cp == 0) {
176 *cp = c;
177 dp = cp - outcol;
178 for (cp--; cp >= dp && *cp == 0; cp--
206 char *cp; local in function:pflush
239 char *cp, *dp; local in function:move
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/
dce110_compressor.h 50 void dce110_compressor_destroy(struct compressor **cp);
53 void dce110_compressor_power_up_fbc(struct compressor *cp);
55 void dce110_compressor_enable_fbc(struct compressor *cp,
58 void dce110_compressor_disable_fbc(struct compressor *cp);
60 void dce110_compressor_set_fbc_invalidation_triggers(struct compressor *cp,
64 struct compressor *cp,
67 bool dce110_compressor_is_fbc_enabled_in_hw(struct compressor *cp,
71 void dce110_compressor_enable_lpt(struct compressor *cp);
73 void dce110_compressor_disable_lpt(struct compressor *cp);
75 void dce110_compressor_program_lpt_control(struct compressor *cp,
    [all...]

Completed in 74 milliseconds

1 2 3 4 5 6 7 8 91011>>