Home
last modified time | relevance | path

Searched refs:lasts (Results 1 – 25 of 35) sorted by relevance

12

/netbsd/lib/libc/string/
H A Dstrtok_r.c51 strtok_r(char *s, const char *delim, char **lasts) in __weak_alias()
59 _DIAGASSERT(lasts != NULL); in __weak_alias()
61 if (s == NULL && (s = *lasts) == NULL) in __weak_alias()
75 *lasts = NULL; in __weak_alias()
93 *lasts = s; in __weak_alias()
H A Dstrtok.c47 static char *lasts; in strtok() local
49 return strtok_r(s, delim, &lasts); in strtok()
/netbsd/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dstrtok_r.c45 strtok_r(char *s1, const char *s2, char **lasts) in strtok_r() argument
50 s1 = *lasts; in strtok_r()
60 *lasts = s1; in strtok_r()
/netbsd/lib/libc/rpc/
H A Dgetnetconfig.c529 char *lasts; in parse_ncp() local
538 if ((ncp->nc_netid = strtok_r(stringp, "\t ", &lasts)) == NULL) in parse_ncp()
542 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
556 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
573 if ((ncp->nc_protofmly = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
576 if ((ncp->nc_proto = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
579 if ((ncp->nc_device = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
581 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) in parse_ncp()
/netbsd/external/gpl3/binutils/dist/gprofng/src/
H A Dchecks.cc41 char **lasts = &last; in check_target() local
71 next = strtok_r (jargs, NTXT (" \t"), lasts); in check_target()
75 next = strtok_r (NULL, NTXT (" \t"), lasts); in check_target()
110 next = strtok_r (jargs, NTXT (" \t"), lasts); in check_target()
114 next = strtok_r (NULL, NTXT (" \t"), lasts); in check_target()
153 next = strtok_r (jargs, NTXT (" \t"), lasts); in check_target()
157 next = strtok_r (NULL, NTXT (" \t"), lasts); in check_target()
/netbsd/external/gpl3/gcc/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/gdb/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/binutils/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/binutils.old/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/gdb.old/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/gcc.old/dist/libiberty/
H A Dbcopy.c26 const char *lasts = (const char *)src + (len-1); in bcopy() local
29 *lastd-- = *lasts--; in bcopy()
/netbsd/external/gpl3/gcc.old/dist/libgcc/
H A Dmemmove.c14 char *lasts = s + (len-1); in memmove() local
17 *lastd-- = *lasts--; in memmove()
/netbsd/external/gpl3/gcc/dist/libgcc/
H A Dmemmove.c14 char *lasts = s + (len-1); in memmove() local
17 *lastd-- = *lasts--; in memmove()
/netbsd/external/bsd/openldap/dist/libraries/libldap/
H A Dcharray.c189 char *lasts; in ldap_str2charray() local
214 for ( s = ldap_utf8_strtok( str, brkstr, &lasts ); in ldap_str2charray()
216 s = ldap_utf8_strtok( NULL, brkstr, &lasts ) ) in ldap_str2charray()
/netbsd/external/bsd/libpcap/dist/rpcapd/
H A Dfileconf.c493 char *lasts; in fileconf_save() local
504 token = pcap_strtok_r(temphostlist, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save()
508 token = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save()
H A Drpcapd.c240 char *lasts; in main() local
243 tmpaddress = pcap_strtok_r(optarg, RPCAP_HOSTLIST_SEP, &lasts); in main()
247 tmpport = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main()
256 tmpaddress = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main()
/netbsd/external/bsd/libpcap/dist/
H A Dsockutils.c1266 char *lasts; in sock_check_hostlist() local
1280 token = pcap_strtok_r(temphostlist, sep, &lasts); in sock_check_hostlist()
1310 token = pcap_strtok_r(NULL, sep, &lasts); in sock_check_hostlist()
1336 token = pcap_strtok_r(NULL, sep, &lasts); in sock_check_hostlist()
/netbsd/usr.sbin/ifwatchd/
H A Difwatchd.c439 char * name, *lasts; in list_interfaces() local
443 for (name = strtok_r(names, sep, &lasts); in list_interfaces()
445 name = strtok_r(NULL, sep, &lasts)) { in list_interfaces()
/netbsd/external/bsd/ntp/dist/kernel/sys/
H A Dbsd_audioirig.h85 int lasts; /* last sample value */ member
/netbsd/games/rogue/
H A DCHANGES54 The potion of detect monster lasts for the whole level.
/netbsd/external/bsd/openldap/dist/servers/slapd/
H A Dad.c922 char *lasts; in str2anlist() local
947 for ( s = ldap_pvt_strtok( str, brkstr, &lasts ); in str2anlist()
949 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) ) in str2anlist()
H A Dconfig.c2496 char *lasts; in slap_str2clist() local
2521 for ( s = ldap_pvt_strtok( str, brkstr, &lasts ); in slap_str2clist()
2523 s = ldap_pvt_strtok( NULL, brkstr, &lasts ) ) in slap_str2clist()
/netbsd/external/gpl2/xcvs/dist/lib/
H A Dregexec.c2707 sub_last = sub_top->lasts[sub_last_idx]; in get_subexp()
4167 re_sub_match_last_t *last = top->lasts[sl_idx]; in match_ctx_clean()
4171 re_free (top->lasts); in match_ctx_clean()
4311 re_sub_match_last_t **new_array = re_x2realloc (subtop->lasts, in match_ctx_add_sublast()
4316 subtop->lasts = new_array; in match_ctx_add_sublast()
4322 subtop->lasts[subtop->nlasts] = new_entry; in match_ctx_add_sublast()
H A Dregex_internal.h646 re_sub_match_last_t **lasts; member
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DOPENSSL_malloc.pod146 to 100). If the count is zero, then it lasts forever. For example,

12