HomeSort by: relevance | last modified time | path
    Searched refs:cresult (Results 1 - 5 of 5) sorted by relevancy

  /src/lib/libc/citrus/
citrus_ctype_fallback.c 86 wint_t wc, int * __restrict cresult)
100 *cresult = EOF;
106 *cresult = buf[0];
108 *cresult = EOF;
citrus_ctype.h 181 _citrus_ctype_wctob(_citrus_ctype_t cc, wint_t c, int *cresult)
184 _DIAGASSERT(cc && cc->cc_ops && cc->cc_ops->co_wctob && cresult);
185 return (*cc->cc_ops->co_wctob)(cc, c, cresult);
citrus_none.c 415 wint_t wc, int * __restrict cresult)
418 *cresult = EOF;
420 *cresult = (int)wc;
citrus_ctype_template.h 916 wint_t wc, int * __restrict cresult)
927 *cresult = EOF;
935 *cresult = buf[0];
937 *cresult = EOF;
  /src/sbin/ping6/
ping6.c 1226 char cresult[MAXDNAME + 1]; local in function:dnsdecode
1253 if (dnsdecode(&comp, cp, base, cresult,
1254 sizeof(cresult)) == NULL)
1256 if (strlcat(buf, cresult, bufsiz) >= bufsiz)
1263 l = snprintf(cresult, sizeof(cresult),
1265 if (l >= (int)sizeof(cresult) || l < 0)
1267 if (strlcat(buf, cresult, bufsiz) >= bufsiz)

Completed in 14 milliseconds