Searched refs:addend (Results 1 - 4 of 4) sorted by relevance

/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dnstime_externs.h13 void nstime_add(nstime_t *time, const nstime_t *addend);
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dnstime.c48 nstime_add(nstime_t *time, const nstime_t *addend) argument
50 assert(UINT64_MAX - time->ns >= addend->ns);
52 time->ns += addend->ns;
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Dnstime.c195 nstime_t addend; local
196 nstime_init2(&addend, 631152000, 0);
197 nstime_add(&nst, &addend);
/fuchsia/zircon/third_party/ulib/musl/ldso/
H A Ddynlink.c446 size_t addend; local
450 /* Only ldso's REL table needs addend saving/reuse. */
483 addend = rel[2];
485 addend = 0;
487 /* Save original addend in stage 2 where the dso
489 * saved addend since the inline one was clobbered. */
492 addend = saved_addends[save_slot++];
494 addend = *reloc_addr;
504 addend -= (size_t)reloc_addr;
508 *reloc_addr = sym_val + addend;
[all...]

Completed in 90 milliseconds