Searched refs:delim (Results 101 - 125 of 149) sorted by relevance

123456

/freebsd-11-stable/contrib/elftoolchain/libelftc/
H A Dlibelftc_dem_arm.c408 char *delim; local
414 if ((delim = strstr(d->p, "__")) == NULL)
417 len = delim - d->p;
422 d->p = delim + 2;
/freebsd-11-stable/contrib/tcsh/
H A Ded.chared.c253 c_preword(Char *p, Char *low, int n, Char *delim) argument
260 if (!Strchr(delim, *prev) || *(prev-1) == (Char)'\\')
269 new = c_endword(prev-1, p, 1, delim); /* Skip to next non-word char */
272 if (!Strchr(delim, *new) || *(new-1) == (Char)'\\')
791 c_endword(Char *p, Char *high, int n, Char *delim) argument
798 if (!Strchr(delim, *p) || *(p-1) == (Char)'\\')
810 if (!inquote && Strchr(delim, *p) && *(p-1) != (Char)'\\')
/freebsd-11-stable/contrib/unbound/sldns/
H A Dstr2wire.c429 const char* delim = "\n\t "; local
435 if(sldns_bget_token(strbuf, token, delim, token_len) == -1)
438 if(sldns_bget_token(strbuf, token, delim, token_len) == -1) {
454 ssize_t c = sldns_bget_token(strbuf, token, delim, token_len);
1279 const char *delim = "\n\t "; local
1296 sldns_bget_token(&strbuf, token, delim, sizeof(token)) != -1) {
/freebsd-11-stable/contrib/one-true-awk/
H A Dtran.c414 char *qstring(const char *is, int delim) /* collect string up to next delim */ argument
423 for (bp = buf; (c = *s) != delim; s++) {
/freebsd-11-stable/usr.bin/xlint/xlint/
H A Dxlint.c258 * Returns a pointer to the last component of strg after delim.
259 * Returns strg if the string does not contain delim.
262 lbasename(const char *strg, int delim) argument
268 if (*cp++ == delim) {
/freebsd-11-stable/usr.bin/join/
H A Djoin.c363 mbssep(char **stringp, const wchar_t *delim) argument
377 spanp = delim;
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dcommon.h560 const char * cstr_token(const char *str, const char *delim, const char **last);
561 char * str_token(char *str, const char *delim, char **context);
/freebsd-11-stable/contrib/tnftp/
H A Dtnftp.h428 char *strsep(char **stringp, const char *delim);
/freebsd-11-stable/libexec/ftpd/
H A Dftpcmd.y203 char delim;
227 delim = p[0];
231 q = strchr(p, delim);
232 if (!q || *q != delim) {
/freebsd-11-stable/contrib/mdocml/
H A Deqn.c133 "delim", /* EQN_TOK_DELIM */
539 * Parse the "delim" control statement.
546 ep->node->line, ep->node->pos, "delim");
550 ep->delim = 0;
554 ep->delim = 1;
559 ep->delim = 1;
H A Dmdoc_validate.c437 enum mdelim delim; local
447 delim = mdoc_isdelim(lc);
448 if (delim == DELIM_NONE || delim == DELIM_OPEN)
466 enum mdelim delim; local
481 delim = mdoc_isdelim(lc);
482 if (delim == DELIM_NONE || delim == DELIM_OPEN)
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_dataset.c4249 char *delim; local
4294 delim = strchr(parent, sep);
4296 *(++delim) = '\0';
4298 *delim = '\0';
4305 delim = strchr(target, sep);
4306 if (strncmp(zhp->zfs_name, target, delim - target)
4307 != 0 || zhp->zfs_name[delim - target] != sep) {
4334 verify((delim = strchr(target, '/')) != NULL);
4335 if (strncmp(zhp->zfs_name, target, delim - target) != 0 ||
4336 zhp->zfs_name[delim
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsysinfo.c350 stringbuf_split_key(svn_stringbuf_t *buffer, char delim)
355 end = strchr(buffer->data, delim);
367 end = strchr(key, delim);
347 stringbuf_split_key(svn_stringbuf_t *buffer, char delim) argument
/freebsd-11-stable/usr.sbin/bhyvectl/
H A Dbhyvectl.c1589 int error, flags, prot, segid, delim; local
1616 delim = '\0';
1618 printf("%cwired", delim);
1619 delim = '/';
1622 printf("%ciommu", delim);
1623 delim = '/';
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_addr.c952 int prefixlen, i1, i2, delim, length;
1022 delim = s[i2++];
1031 switch (delim) {
/freebsd-11-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.c317 static const char *const delim = ",\t "; local
325 if (strchr(delim, *ptr) == NULL)
335 if (strchr(delim, *ptr) != NULL || *ptr == '=')
342 while (*ptr != '\0' && strchr(delim, *ptr) == NULL)
/freebsd-11-stable/usr.sbin/unbound/
H A Dconfig.h1272 char *strsep(char **stringp, const char *delim);
/freebsd-11-stable/contrib/ncurses/progs/
H A Ddump_entry.c1247 char delim = (char) (infodump ? ',' : ':'); local
1258 } else if (ch == delim && (j == 0 || outbuf.text[j - 1] != '\\')) {
/freebsd-11-stable/contrib/gcc/
H A Dfix-header.c928 inf_read_upto (sstring *str, int delim)
934 if (ch == EOF || ch == delim)
927 inf_read_upto(sstring *str, int delim) argument
/freebsd-11-stable/gnu/usr.bin/grep/
H A Ddfa.c519 unsigned char delim = (unsigned char)wc; local
528 if ((c == delim && *lexptr == ']') || lexleft == 0)
543 work_mbc->chars[work_mbc->nchars++] = delim;
549 if (delim == ':')
564 else if (delim == '=' || delim == '.')
570 if (delim == '=')
581 if (delim == '.')
/freebsd-11-stable/contrib/sendmail/src/
H A Dqueue.c4095 char delim; local
4100 delim = '\0';
4103 delim = *bp;
4106 if (stat(delim == '\0' ? "." : qf, &dst) < 0)
4108 delim == '\0' ? "." : qf);
4115 if (delim != '\0')
4116 *bp = delim;
6201 char *delim; local
6224 delim = cp;
6356 *delim
[all...]
/freebsd-11-stable/contrib/nvi/ex/
H A Dex.c205 int cnt, delim, isaddr, namelen; local
749 delim = *ecp->cp;
758 } else if (ecp->cp[0] == delim)
/freebsd-11-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c177 static const char * getqzname(const char * strp, const int delim)
713 getqzname(register const char *strp, const int delim) argument
717 while ((c = *strp) != '\0' && c != delim)
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dmain.c1435 static const char *const delim = ",\t "; local
1443 if (strchr(delim, *ptr) == NULL)
1453 if (strchr(delim, *ptr) != NULL || *ptr == '=')
1460 while (*ptr != '\0' && strchr(delim, *ptr) == NULL)
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_qos.c562 static int parse_one_unsigned(const char *str, char delim, unsigned *val) argument

Completed in 458 milliseconds

123456