Searched refs:cp (Results 176 - 200 of 1532) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/intl/
H A Dlocalealias.c230 char *cp; local
249 cp = buf;
251 while (isspace ((unsigned char)cp[0]))
252 ++cp;
255 if (cp[0] != '\0' && cp[0] != '#')
257 alias = cp++;
258 while (cp[0] != '\0' && !isspace ((unsigned char)cp[0]))
259 ++cp;
[all...]
H A Dl10nflist.c187 char *cp;
222 cp = abs_filename + (dirlist_len - 1);
223 *cp++ = '/';
224 cp = stpcpy (cp, language);
228 *cp++ = '_';
229 cp = stpcpy (cp, territory);
233 *cp++ = '.';
234 cp
186 char *cp; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20000906-1.c30 foo (struct ucharp cp, struct ucharp lp, struct list **nextp) argument
35 while (AREF (lp, 0) && AREF (cp, AREF (lp, 0)))
38 while (AREF (cp, AREF (lp, 0)))
43 while (AREF (lp, 0) && AREF (cp, AREF (lp, 0)));
44 /* The above AREF (cp, ...) fails because the pseudo created to
45 hold cp.v holds garbage, having never been set.
67 struct ucharp cp = { cp0, cp0, cp0 + sizeof (cp0) }; local
75 foo (cp, lp, &nextp);
/openbsd-current/gnu/usr.bin/binutils-2.17/intl/
H A Dlocalealias.c256 unsigned char *cp; local
275 cp = buf;
277 while (isspace (cp[0]))
278 ++cp;
281 if (cp[0] != '\0' && cp[0] != '#')
283 alias = cp++;
284 while (cp[0] != '\0' && !isspace (cp[0]))
285 ++cp;
[all...]
/openbsd-current/gnu/usr.bin/texinfo/intl/
H A Dlocalealias.c256 char *cp; local
262 cp = buf;
264 while (isspace ((unsigned char) cp[0]))
265 ++cp;
268 if (cp[0] != '\0' && cp[0] != '#')
270 alias = cp++;
271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
272 ++cp;
[all...]
H A Dl10nflist.c181 char *cp;
217 cp = abs_filename;
220 memcpy (cp, dirlist, dirlist_len);
221 __argz_stringify (cp, dirlist_len, PATH_SEPARATOR);
222 cp += dirlist_len;
223 cp[-1] = '/';
226 cp = stpcpy (cp, language);
230 *cp++ = '_';
231 cp
180 char *cp; local
[all...]
/openbsd-current/etc/etc.i386/
H A DMakefile.inc6 cp -p ${DESTDIR}/usr/mdec/pxeboot ${RELEASEDIR}
7 cp -p ${DESTDIR}/usr/mdec/cdboot ${RELEASEDIR}
8 cp -p ${DESTDIR}/usr/mdec/cdbr ${RELEASEDIR}
/openbsd-current/sys/dev/pci/drm/amd/display/dc/inc/
H A Dcompressor.h66 void (*power_up_fbc)(struct compressor *cp);
67 void (*enable_fbc)(struct compressor *cp,
69 void (*disable_fbc)(struct compressor *cp);
70 void (*set_fbc_invalidation_triggers)(struct compressor *cp,
73 struct compressor *cp,
75 bool (*is_fbc_enabled_in_hw)(struct compressor *cp,
/openbsd-current/usr.sbin/eeprom/
H A Dmain.c59 char *cp, line[BUFSIZE]; local
91 if ((cp = strrchr(line, '\n')) != NULL)
92 *cp = '\0';
120 char *keyword, *arg, *cp; local
134 if ((cp = op_handler(keyword, arg)) != NULL)
135 warnx("%s", cp);
/openbsd-current/lib/libcurses/base/
H A Dlib_insnstr.c86 const unsigned char *cp; local
88 for (cp = str; (n <= 0 || (cp - str) < n) && *cp; cp++) {
89 _nc_insert_ch(sp, win, (chtype) UChar(*cp));
/openbsd-current/usr.sbin/lpr/lpd/
H A Dlpd.c130 char *cp; local
178 child_max = strtol(optarg, &cp, 10);
179 if (*cp != '\0' || child_max < 0 || child_max > 1024)
190 l = strtol(optarg, &cp, 10);
191 if (*cp != '\0' || l < 0 || l >= INT_MAX)
211 l = strtol(port, &cp, 10);
212 if (*cp != '\0' || l <= 0 || l > USHRT_MAX)
444 char *cp; local
448 cp = cbuf;
450 if (cp >
562 char *buf, *cp; local
[all...]
/openbsd-current/gnu/gcc/intl/
H A Dl10nflist.c209 char *cp;
245 cp = abs_filename;
248 memcpy (cp, dirlist, dirlist_len);
249 __argz_stringify (cp, dirlist_len, PATH_SEPARATOR);
250 cp += dirlist_len;
251 cp[-1] = '/';
254 cp = stpcpy (cp, language);
258 *cp++ = '_';
259 cp
208 char *cp; local
[all...]
/openbsd-current/usr.bin/mandoc/
H A Dtbl_data.c45 struct tbl_cell *cp; local
64 cp = dp->last == NULL ? dp->layout->first : dp->last->layout->next;
65 while (cp != NULL && cp->pos == TBL_CELL_SPAN)
66 cp = cp->next;
75 if (cp == NULL) {
77 cp = mandoc_calloc(1, sizeof(*cp));
78 cp
262 struct tbl_cell *cp; local
[all...]
/openbsd-current/usr.sbin/makefs/ffs/
H A Dffs_subr.c54 ffs_isblock(struct fs *fs, u_char *cp, int32_t h) argument
60 return (cp[h] == 0xff);
63 return ((cp[h >> 1] & mask) == mask);
66 return ((cp[h >> 2] & mask) == mask);
69 return ((cp[h >> 3] & mask) == mask);
80 ffs_clrblock(struct fs *fs, u_char *cp, int32_t h) argument
85 cp[h] = 0;
88 cp[h >> 1] &= ~(0x0f << ((h & 0x1) << 2));
91 cp[h >> 2] &= ~(0x03 << ((h & 0x3) << 1));
94 cp[
106 ffs_setblock(struct fs *fs, u_char *cp, int32_t h) argument
[all...]
/openbsd-current/usr.bin/mail/
H A Dcollect.c63 char linebuf[LINESIZE], tempname[PATHSIZE], *cp; local
70 if ((cp = value("escape")) != NULL)
71 escape = *cp;
223 cp = &linebuf[2];
224 while (isspace((unsigned char)*cp))
225 cp++;
226 hp->h_subject = savestr(cp);
251 cp = &linebuf[2];
252 while (isspace((unsigned char)*cp))
253 cp
583 char *cp; local
[all...]
/openbsd-current/usr.sbin/tcpdump/
H A Dprint-udp.c323 const u_char *cp; local
363 cp = (const u_char *)(up + 1);
366 if (cp > snapend) {
406 if (vflag && ipv && TTEST2(cp[0], length)) {
420 sum = in_cksum(cp, length, cksum);
437 vat_print(cp, length, up);
441 wb_print(cp, length);
445 rp = (struct rpc_msg *)cp;
448 sunrpcrequest_print(cp, length, iph);
450 nfsreply_print(cp, lengt
[all...]
/openbsd-current/usr.bin/cvs/
H A Droot.c63 char *cp, *sp, *pp; local
76 cp = root->cr_buf;
79 if ((cp = strchr(sp, ':')) == NULL)
82 *(cp++) = '\0';
95 if ((sp = strchr(cp, '/')) == NULL)
100 if (sp == cp) {
116 sp = strchr(cp, '@');
121 pp = strchr(cp, ':');
127 root->cr_user = cp;
129 sp = cp;
[all...]
/openbsd-current/usr.sbin/lpr/filters/
H A Dlpf.c69 char *cp; local
163 cp = &buf[0][col];
167 if (*cp == ' ') {
168 *cp = ch;
173 cp += MAXWIDTH;
182 for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) {
183 putc(*cp, o);
184 *cp
[all...]
/openbsd-current/usr.bin/leave/
H A Dleave.c61 char c, *cp; local
75 cp = fgets(buf, sizeof(buf), stdin);
76 if (cp == NULL || *cp == '\n')
81 cp = argv[1];
83 if (*cp == '+') {
85 ++cp;
88 if (!plusnow && strlen(cp) != 4)
91 for (hours = 0; (c = *cp) && c != '\n'; ++cp) {
[all...]
/openbsd-current/usr.bin/tmux/
H A Dregsub.c40 const char *cp; local
43 for (cp = with; *cp != '\0'; cp++) {
44 if (*cp == '\\') {
45 cp++;
46 if (*cp >= '0' && *cp <= '9') {
47 i = *cp - '0';
56 (*buf)[(*len)++] = *cp;
[all...]
/openbsd-current/sbin/restore/
H A Dutilities.c56 char *cp; local
63 for (cp = start; *cp != '\0'; cp++) {
64 if (*cp != '/')
66 *cp = '\0';
74 *cp = '/';
135 char *cp; local
139 cp = myname(np);
140 if (!Nflag && mkdir(cp, 077
154 char *cp; local
176 char *cp; local
[all...]
/openbsd-current/sys/lib/libsa/
H A Dnet.c120 inet_addr(const char *cp) argument
135 while ((c = *cp) != '\0') {
138 cp++;
143 if (*cp == '.') {
152 *pp++ = val, cp++;
159 if (*cp != '\0')
206 char *cp; local
212 cp = &buf[sizeof buf];
213 *--cp = '\0';
218 *--cp
[all...]
/openbsd-current/usr.bin/getcap/
H A Dgetcap.c40 char *cp, *buf, *cap = NULL, **pathvec = NULL; local
79 for (n = 1, cp = optarg; (cp = strchr(cp, ':')); n++)
80 cp++;
123 char *cp, *endp; local
148 if ((n = cgetstr(buf, cap, &cp)) == -1)
153 useprefix ? ": " : "", cp);
159 cp = cgetcap(buf, cap, ch);
161 if (cp !
[all...]
/openbsd-current/sys/arch/macppc/macppc/
H A Dautoconf.c175 char *dev, *cp; local
178 cp = bp;
180 while(*cp && *cp != '/')
181 cp++;
183 dp = findtype(&cp);
197 while(*cp && *cp != '/')
198 cp++;
200 dp = findtype(&cp);
211 getpno(char **cp) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/intl/
H A Dl10nflist.c194 char *cp;
229 cp = abs_filename + (dirlist_len - 1);
230 *cp++ = '/';
231 cp = stpcpy (cp, language);
235 *cp++ = '_';
236 cp = stpcpy (cp, territory);
240 *cp++ = '.';
241 cp
193 char *cp; local
[all...]

Completed in 188 milliseconds

1234567891011>>