Home
last modified time | relevance | path

Searched refs:newl (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/netbsd-tests/rump/kernspace/
H A Dthread.c57 struct lwp *newl; in rumptest_threadjoin() local
61 jointhread, NULL, &newl, "jointest"); in rumptest_threadjoin()
64 rv = kthread_join(newl); in rumptest_threadjoin()
91 struct lwp *newl; in rumptest_thread() local
97 thethread, NULL, &newl, "ktest"); in rumptest_thread()
H A Dbusypage.c66 struct lwp *newl; in rumptest_busypage() local
79 thread, NULL, &newl, "jointest"); in rumptest_busypage()
90 rv = kthread_join(newl); in rumptest_busypage()
/freebsd/contrib/nvi/common/
H A Dscreen.c90 MALLOC(sp, sp->newl, len); in screen_init()
91 if (sp->newl == NULL) { in screen_init()
97 memcpy(sp->newl, orig->newl, len); in screen_init()
178 free(sp->newl); in screen_end()
H A Dscreen.h134 size_t *newl; /* Newline offset array. */ member
/freebsd/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/
H A Druntime.c51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
53 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong()
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
73 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()
/freebsd/contrib/nvi/ex/
H A Dex_subst.c303 REALLOC(sp, sp->newl, size_t *, \
305 if (sp->newl == NULL) { \
727 lb + last, sp->newl[cnt] - last)) in s()
729 last = sp->newl[cnt] + 1; in s()
793 lno, lb + last, sp->newl[cnt] - last)) in s()
795 last = sp->newl[cnt] + 1; in s()
1345 sp->newl[sp->newl_cnt++] = lbclen; \ in re_sub()
/freebsd/contrib/lua/src/
H A Dltests.c598 GCObject *newl, GCObject *survival, GCObject *old, GCObject *reallyold) { in checklist() argument
601 for (o = newl; o != survival; o = o->next) { in checklist()