Searched refs:endp (Results 1 - 25 of 459) sorted by relevance

1234567891011>>

/netbsd-current/lib/libc/gen/
H A Ddirname.c50 const char *endp; local
64 endp = path + strlen(path) - 1;
65 while (endp != path && *endp == '/')
66 endp--;
69 while (endp > path && *endp != '/')
70 endp--;
72 if (endp == path) {
73 path = *endp
[all...]
H A Dbasename.c51 const char *startp, *endp; local
65 endp = path + strlen(path) - 1;
66 while (endp != path && *endp == '/')
67 endp--;
70 if (endp == path && *endp == '/') {
77 for (startp = endp; startp > path && *(startp - 1) != '/'; startp--)
81 len = (endp - startp) + 1 /* last char */;
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/rbac/
H A Dutil.c174 char *ptr, *endp = NULL; local
193 endp = ptr;
194 while ( *endp != DELIMITER ) {
195 endp++;
210 ptr = endp;
211 endp++;
212 if ( isdigit( *endp ) ) {
214 while ( isdigit( *endp ) ) {
215 secs = secs * 10 + *endp - '0';
216 endp
[all...]
/netbsd-current/tests/lib/libc/gen/posix_spawn/
H A Dh_spawn.c44 char *endp; local
58 ret = strtoul(argv[1], &endp, 10);
59 if (*endp != 0) {
62 "usage:\n\t%s (retcode)\n", endp, getprogname());
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dproc.s7 .endp func, func1, func2
13 .endp
H A Dgroup-1.s10 .endp _foo#
H A Dgroup-2.s6 .endp foo#
H A Dreloc-mlx.s7 .endp foo#
H A Dproc.l6 .*:13: Error: Empty argument of .endp
/netbsd-current/sys/arch/sparc/stand/ofwboot/
H A Dbootinfo.c49 uint64_t *endp; local
51 endp = (uint64_t *)ALIGN(addr);
56 sparc64_memset(endp, 0, BOOTINFO_SIZE);
62 endp[0] = (uint64_t)(u_long)((char *)endp + BOOTINFO_SIZE);
63 bootinfo = (char *)ALIGN(&endp[2]);
64 endp[1] = (uint64_t)(u_long)bootinfo;
72 return (u_long) endp;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/tic6x/
H A Dunwind-bad-2.s8 .endp
20 .endp
33 .endp
40 .endp
47 .endp
54 .endp
64 .endp
71 .endp
78 .endp
85 .endp
[all...]
H A Dunwind-bad-1.s14 .endp
22 .endp
35 .endp
42 .endp
51 .endp
58 # missing .endp before .cfi_startproc
61 .endp
/netbsd-current/sys/arch/sparc/stand/boot/
H A Dbootinfo.c48 u_long *endp; local
50 endp = (u_long *)ALIGN(addr);
55 endp[0] = (u_long)((char *)endp + BOOTINFO_SIZE);
56 bootinfo = (char *)ALIGN(&endp[2]);
57 endp[1] = (u_long)bootinfo;
65 return (u_long) endp;
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dscache_single.c81 SCACHE_SINGLE_ENDP endp; /* one cached session */ member in struct:__anon15641
88 #define SCACHE_SINGLE_ENDP_BUSY(sp) (VSTRING_LEN(sp->endp.endp_label) > 0)
100 msg_info("%s: %s", myname, STR(sp->endp.endp_label));
103 if (sp->endp.fd >= 0 && close(sp->endp.fd) < 0)
104 msg_warn("close session endpoint %s: %m", STR(sp->endp.endp_label));
105 VSTRING_RESET(sp->endp.endp_label);
106 VSTRING_TERMINATE(sp->endp.endp_label);
107 VSTRING_RESET(sp->endp.endp_prop);
108 VSTRING_TERMINATE(sp->endp
[all...]
H A Dscache_multi.c138 static void scache_multi_drop_endp(SCACHE_MULTI_ENDP *endp, int direction) argument
145 endp->endp_prop, endp->fd);
150 event_cancel_timer(scache_multi_expire_endp, (void *) endp);
157 ring_detach(endp->ring);
158 head = endp->head;
166 if (endp->fd >= 0 && close(endp->fd) != 0)
167 msg_warn("%s: close(%d): %m", myname, endp->fd);
168 myfree(endp
177 SCACHE_MULTI_ENDP *endp = (SCACHE_MULTI_ENDP *) context; local
187 SCACHE_MULTI_ENDP *endp; local
210 SCACHE_MULTI_ENDP *endp; local
256 SCACHE_MULTI_ENDP *endp; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl3/binutils/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl3/gdb/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dplural-exp.c113 char *endp; local
124 n = strtoul (nplurals, &endp, 10);
126 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
127 n = n * 10 + (*endp - '0');
129 if (nplurals == endp)
/netbsd-current/external/gpl3/gdb.old/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl2/grep/dist/intl/
H A Dplural-exp.c117 char *endp; local
128 n = strtoul (nplurals, &endp, 10);
130 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
131 n = n * 10 + (*endp - '0');
133 if (nplurals == endp)
/netbsd-current/external/gpl2/texinfo/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl3/binutils.old/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl3/gcc.old/dist/intl/
H A Dplural-exp.c115 char *endp; local
126 n = strtoul (nplurals, &endp, 10);
128 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
129 n = n * 10 + (*endp - '0');
131 if (nplurals == endp)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dfile-find.c174 const char *startp, *endp; local
180 startp = endp = p;
183 if (*endp == PATH_SEPARATOR || *endp == 0)
185 strncpy (nstore, startp, endp-startp);
186 if (endp == startp)
190 else if (! IS_DIR_SEPARATOR (endp[-1]))
192 nstore[endp-startp] = DIR_SEPARATOR;
193 nstore[endp-startp+1] = 0;
196 nstore[endp
[all...]

Completed in 214 milliseconds

1234567891011>>