Symbol: dtor
lib/libc/stdlib/cxa_thread_atexit_impl.c
101
walk_cb_call(struct cxa_thread_dtor *dtor)
lib/libc/stdlib/cxa_thread_atexit_impl.c
105
if (_rtld_addr_phdr(dtor->func, &phdr_info) &&
lib/libc/stdlib/cxa_thread_atexit_impl.c
106
__elf_phdr_match_addr(&phdr_info, dtor->func))
lib/libc/stdlib/cxa_thread_atexit_impl.c
107
dtor->func(dtor->obj);
lib/libc/stdlib/cxa_thread_atexit_impl.c
111
(void *)(dtor->func));
lib/libc/stdlib/cxa_thread_atexit_impl.c
115
walk_cb_nocall(struct cxa_thread_dtor *dtor __unused)
lib/libc/stdlib/cxa_thread_atexit_impl.c
122
struct cxa_thread_dtor *dtor;
lib/libc/stdlib/cxa_thread_atexit_impl.c
124
while ((dtor = LIST_FIRST(&dtors)) != NULL) {
lib/libc/stdlib/cxa_thread_atexit_impl.c
125
LIST_REMOVE(dtor, entry);
lib/libc/stdlib/cxa_thread_atexit_impl.c
126
cb(dtor);
lib/libc/stdlib/cxa_thread_atexit_impl.c
127
free(dtor);
lib/libstdthreads/tss.c
35
tss_create(tss_t *key, tss_dtor_t dtor)
lib/libstdthreads/tss.c
38
if (pthread_key_create(key, dtor) != 0)
sys/dev/hpt27xx/him.h
441
void (*dtor)(struct _COMMAND *, void *);
sys/dev/hptnr/him.h
429
void (*dtor)(struct _COMMAND *, void *);
sys/dev/hptrr/him.h
384
void (*dtor)(struct _COMMAND *, void *);
sys/dev/mlx5/mlx5_ifc.h
1346
u8 dtor[0x1];
sys/dev/netmap/netmap_bdg.c
1026
nm_bdg_override(dtor);
sys/dev/netmap/netmap_bdg.c
333
if (b->bdg_ops.dtor)
sys/dev/netmap/netmap_bdg.c
334
b->bdg_ops.dtor(b->bdg_ports[s_hw]);
sys/dev/netmap/netmap_bdg.h
66
bdg_dtor_fn_t dtor;
sys/dev/netmap/netmap_vale.c
148
.dtor = NULL,
sys/kern/subr_trap.c
285
ast_handler(struct thread *td, struct trapframe *framep, bool dtor)
sys/kern/subr_trap.c
297
if (__predict_true(!dtor)) {
sys/kern/uipc_usrreq.c
3609
uma_dtor dtor;
sys/kern/uipc_usrreq.c
3612
dtor = unp_zdtor;
sys/kern/uipc_usrreq.c
3614
dtor = NULL;
sys/kern/uipc_usrreq.c
3616
unp_zone = uma_zcreate("unpcb", sizeof(struct unpcb), NULL, dtor,
sys/kern/vfs_subr.c
751
uma_dtor dtor;
sys/kern/vfs_subr.c
792
dtor = vnode_dtor;
sys/kern/vfs_subr.c
795
dtor = NULL;
sys/kern/vfs_subr.c
797
vnode_zone = uma_zcreate("VNODE", sizeof(struct vnode), ctor, dtor,
sys/sys/module_khelp.h
73
#define KHELP_DECLARE_MOD_UMA(hname, hdata, hhooks, version, size, ctor, dtor) \
sys/sys/module_khelp.h
81
.umadtor = dtor \
sys/vm/uma.h
178
uma_dtor dtor, uma_init uminit, uma_fini fini,
sys/vm/uma.h
212
uma_zone_t uma_zsecond_create(const char *name, uma_ctor ctor, uma_dtor dtor,
sys/vm/uma.h
225
uma_dtor dtor, uma_init zinit, uma_fini zfini, uma_import zimport,
sys/vm/uma_core.c
218
uma_dtor dtor;
sys/vm/uma_core.c
2853
zone->uz_dtor = arg->dtor;
sys/vm/uma_core.c
3157
args.dtor = keg_dtor;
sys/vm/uma_core.c
3168
args.dtor = zone_dtor;
sys/vm/uma_core.c
3321
uma_zcreate(const char *name, size_t size, uma_ctor ctor, uma_dtor dtor,
sys/vm/uma_core.c
3335
args.dtor = dtor;
sys/vm/uma_core.c
3366
uma_zsecond_create(const char *name, uma_ctor ctor, uma_dtor dtor,
sys/vm/uma_core.c
3378
args.dtor = dtor;
sys/vm/uma_core.c
3394
uma_zcache_create(const char *name, int size, uma_ctor ctor, uma_dtor dtor,
sys/vm/uma_core.c
3404
args.dtor = dtor;
sys/vm/uma_core.c
795
bool dtor = false;
sys/vm/uma_core.c
808
dtor = (zone->uz_dtor != NULL) || UMA_ALWAYS_CTORDTOR;
sys/vm/uma_core.c
843
if (dtor)
usr.bin/calendar/pom.c
216
Ec = 360 / PI * ECCEN * sin(dtor(Msol)); /* sec 42 #5 */
usr.bin/calendar/pom.c
225
Ev = 1.2739 * sin(dtor(2*(l - LambdaSol) - Mm)); /* sec 61 #7 */
usr.bin/calendar/pom.c
226
Ac = 0.1858 * sin(dtor(Msol)); /* sec 61 #8 */
usr.bin/calendar/pom.c
227
A3 = 0.37 * sin(dtor(Msol));
usr.bin/calendar/pom.c
229
Ec = 6.2886 * sin(dtor(Mmprime)); /* sec 61 #10 */
usr.bin/calendar/pom.c
230
A4 = 0.214 * sin(dtor(2 * Mmprime)); /* sec 61 #11 */
usr.bin/calendar/pom.c
232
V = 0.6583 * sin(dtor(2 * (lprime - LambdaSol))); /* sec 61 #13 */
usr.bin/calendar/pom.c
235
return(50 * (1 - cos(dtor(D)))); /* sec 63 #3 */
usr.bin/calendar/pom.c
67
static double dtor(double);
usr.bin/pom/pom.c
185
Ec = 360 / PI * ECCEN * sin(dtor(Msol)); /* sec 42 #5 */
usr.bin/pom/pom.c
194
Ev = 1.2739 * sin(dtor(2*(l - LambdaSol) - Mm)); /* sec 61 #7 */
usr.bin/pom/pom.c
195
Ac = 0.1858 * sin(dtor(Msol)); /* sec 61 #8 */
usr.bin/pom/pom.c
196
A3 = 0.37 * sin(dtor(Msol));
usr.bin/pom/pom.c
198
Ec = 6.2886 * sin(dtor(Mmprime)); /* sec 61 #10 */
usr.bin/pom/pom.c
199
A4 = 0.214 * sin(dtor(2 * Mmprime)); /* sec 61 #11 */
usr.bin/pom/pom.c
201
V = 0.6583 * sin(dtor(2 * (lprime - LambdaSol))); /* sec 61 #13 */
usr.bin/pom/pom.c
204
return(50 * (1 - cos(dtor(D)))); /* sec 63 #3 */
usr.bin/pom/pom.c
68
static double dtor(double);