Searched defs:last (Results 1 - 13 of 13) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcsrchr.c35 const wchar_t *last; local
37 last = NULL;
40 last = s;
46 return ((wchar_t *)last);
H A Dwcstok.c42 wchar_t ** __restrict last)
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim, wchar_t ** __restrict last) argument
/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrtok.c35 static char *last; local
37 return strtok_r(s, delim, &last);
42 strtok_r(char *s, const char *delim, char **last) argument
48 if (s == NULL && (s = *last) == NULL)
62 *last = NULL;
80 *last = s;
/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dpopen.c193 struct pid *cur, *last; local
202 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
213 if (last == NULL)
216 last->next = cur->next;
/bionic/libc/dns/resolv/
H A Dres_stats.c66 time_t last = 0; local
108 /* If we had at least one sample, populate last sample time. */
111 last = stats->samples[stats->sample_next - 1].at;
113 last = stats->samples[stats->sample_count - 1].at;
116 *last_sample_time = last;
H A Dres_cache.c1959 struct resolv_cache_info* last; local
1961 for (last = &_res_cache_list; last->next; last = last->next);
1963 last->next = cache_info;
/bionic/libc/malloc_debug/
H A DPointerData.cpp300 void* last = nullptr; local
307 last = reinterpret_cast<void*>(info.pointer);
311 return last;
390 // Put pointers with no backtrace last.
/bionic/libc/stdio/
H A Dvfwscanf.c105 // The last character may be '-' without being special.
108 wchar_t last = *(ccl + 1); local
109 if (first <= last) {
111 if (wc >= first && wc <= last) return member_result;
/bionic/libc/bionic/
H A Dspawn.cpp77 __posix_spawn_file_action* last; member in struct:__posix_spawn_file_actions
280 __posix_spawn_file_action* last = a; local
282 free(last->path);
283 free(last);
318 (*actions)->head = (*actions)->last = action;
320 (*actions)->last->next = action;
321 (*actions)->last = action;
/bionic/libc/upstream-netbsd/lib/libc/isc/
H A Deventlib_p.h163 evWait * last; member in struct:evWaitList
/bionic/libc/kernel/uapi/linux/
H A Dkvm.h327 __u32 first, last; member in struct:kvm_coalesced_mmio_ring
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dkvm.h327 __u32 first, last; member in struct:kvm_coalesced_mmio_ring
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dkvm.h327 __u32 first, last; member in struct:kvm_coalesced_mmio_ring

Completed in 1259 milliseconds