cp                138 include/sys/prex.h int	cond_init(cond_t *cp);
cp                139 include/sys/prex.h int	cond_destroy(cond_t *cp);
cp                140 include/sys/prex.h int	cond_wait(cond_t *cp, mutex_t *mp);
cp                141 include/sys/prex.h int	cond_signal(cond_t *cp);
cp                142 include/sys/prex.h int	cond_broadcast(cond_t *cp);
cp                 52 sys/sync/cond.c cond_init(cond_t *cp)
cp                 66 sys/sync/cond.c 	if (copyout(&c, cp, sizeof(c))) {
cp                 93 sys/sync/cond.c cond_destroy(cond_t *cp)
cp                 98 sys/sync/cond.c 	if (cond_copyin(cp, &c)) {
cp                137 sys/sync/cond.c cond_wait(cond_t *cp, mutex_t *mp)
cp                142 sys/sync/cond.c 	if (copyin(cp, &c, sizeof(cp)))
cp                147 sys/sync/cond.c 		if ((error = cond_init(cp)) != 0) {
cp                151 sys/sync/cond.c 		copyin(cp, &c, sizeof(cp));
cp                182 sys/sync/cond.c cond_signal(cond_t *cp)
cp                187 sys/sync/cond.c 	if (cond_copyin(cp, &c)) {
cp                200 sys/sync/cond.c cond_broadcast(cond_t *cp)
cp                205 sys/sync/cond.c 	if (cond_copyin(cp, &c)) {
cp                 53 usr/bin/printenv/printenv.c 	char *cp, **ep;
cp                 74 usr/bin/printenv/printenv.c 			cp = *ep + len;
cp                 75 usr/bin/printenv/printenv.c 			if (!*cp || *cp == '=') {
cp                 76 usr/bin/printenv/printenv.c 				(void)printf("%s\n", *cp ? cp + 1 : cp);
cp                178 usr/lib/libc/gen/fts.c 	char *cp;
cp                189 usr/lib/libc/gen/fts.c 	if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
cp                190 usr/lib/libc/gen/fts.c 		len = strlen(++cp);
cp                191 usr/lib/libc/gen/fts.c 		memmove(p->fts_name, cp, len + 1);
cp                548 usr/lib/libc/gen/fts.c 	char *cp = NULL;	/* pacify gcc */
cp                631 usr/lib/libc/gen/fts.c 		cp = sp->fts_path + len;
cp                632 usr/lib/libc/gen/fts.c 		*cp++ = '/';
cp                696 usr/lib/libc/gen/fts.c 				memmove(cp, p->fts_name, p->fts_namelen + 1);
cp                732 usr/lib/libc/gen/fts.c 		if (cp - 1 > sp->fts_path)
cp                733 usr/lib/libc/gen/fts.c 			--cp;
cp                734 usr/lib/libc/gen/fts.c 		*cp = '\0';
cp                114 usr/lib/libc/stdio/vfprintf.c 	char *cp = endp;
cp                124 usr/lib/libc/stdio/vfprintf.c 			*--cp = to_char(val);
cp                125 usr/lib/libc/stdio/vfprintf.c 			return (cp);
cp                134 usr/lib/libc/stdio/vfprintf.c 			*--cp = to_char(val % 10);
cp                139 usr/lib/libc/stdio/vfprintf.c 			*--cp = to_char(sval % 10);
cp                146 usr/lib/libc/stdio/vfprintf.c 			*--cp = to_char(val & 7);
cp                149 usr/lib/libc/stdio/vfprintf.c 		if (octzero && *cp != '0')
cp                150 usr/lib/libc/stdio/vfprintf.c 			*--cp = '0';
cp                155 usr/lib/libc/stdio/vfprintf.c 			*--cp = xdigs[val & 15];
cp                163 usr/lib/libc/stdio/vfprintf.c 	return (cp);
cp                189 usr/lib/libc/stdio/vfprintf.c 	char *cp;		/* handy char pointer (short term usage) */
cp                282 usr/lib/libc/stdio/vfprintf.c 		for (cp = fmt; (ch = *fmt) != '\0' && ch != '%'; fmt++)
cp                284 usr/lib/libc/stdio/vfprintf.c 		if ((n = fmt - cp) != 0) {
cp                285 usr/lib/libc/stdio/vfprintf.c 			PRINT(cp, n);
cp                366 usr/lib/libc/stdio/vfprintf.c 			*(cp = buf) = va_arg(ap, int);
cp                412 usr/lib/libc/stdio/vfprintf.c 			if ((cp = va_arg(ap, char *)) == NULL)
cp                413 usr/lib/libc/stdio/vfprintf.c 				cp = "(null)";
cp                420 usr/lib/libc/stdio/vfprintf.c 				char *p = memchr(cp, 0, prec);
cp                423 usr/lib/libc/stdio/vfprintf.c 					size = p - cp;
cp                429 usr/lib/libc/stdio/vfprintf.c 				size = strlen(cp);
cp                466 usr/lib/libc/stdio/vfprintf.c 			cp = buf + BUF;
cp                468 usr/lib/libc/stdio/vfprintf.c 				cp = __ultoa(ulval, cp, base,
cp                470 usr/lib/libc/stdio/vfprintf.c 			size = buf + BUF - cp;
cp                476 usr/lib/libc/stdio/vfprintf.c 			cp = buf;
cp                477 usr/lib/libc/stdio/vfprintf.c 			*cp = ch;
cp                525 usr/lib/libc/stdio/vfprintf.c 		PRINT(cp, size);