Home
last modified time | relevance | path

Searched refs:pch (Results 1 – 4 of 4) sorted by relevance

/xnu-8019.80.24/libkern/net/
H A Dinet_pton.c84 const char *pch; in inet_pton4() local
86 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4()
87 u_int new = *tp * 10 + (u_int)(pch - digits); in inet_pton4()
157 const char *pch; in inet_pton6() local
159 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) { in inet_pton6()
160 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
162 if (pch != NULL) { in inet_pton6()
164 val |= (pch - xdigits); in inet_pton6()
/xnu-8019.80.24/tools/tests/perf_index/PerfIndex_COPS_Module/PerfIndex.xcodeproj/
H A Dproject.pbxproj23 …4560D0014BDC5 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = so…
77 4DB6144C17C4560D0014BDC5 /* Prefix.pch */,
220 GCC_PREFIX_HEADER = Prefix.pch;
268 GCC_PREFIX_HEADER = Prefix.pch;
307 GCC_PREFIX_HEADER = Prefix.pch;
348 GCC_PREFIX_HEADER = Prefix.pch;
/xnu-8019.80.24/libkern/os/
H A Dlog_encode.c445 value.pch = va_arg(args, char *); in log_encode_fmt()
446 if (!value.pch) { in log_encode_fmt()
450 str_length = strnlen(value.pch, precision); in log_encode_fmt()
452 str_length = strlen(value.pch) + 1; in log_encode_fmt()
454 err = log_encode_fmt_arg(value.pch, str_length, OSLF_CMD_TYPE_STRING, ctx); in log_encode_fmt()
H A Dlog_encode_types.h84 char *pch; member