| /third_party/ulib/jemalloc/src/ |
| A D | nstime.c | 8 time->ns = ns; in nstime_init() 20 return (time->ns); in nstime_ns() 26 return (time->ns / BILLION); in nstime_sec() 32 return (time->ns % BILLION); in nstime_nsec() 38 *time = *source; in nstime_copy() 52 time->ns += addend->ns; in nstime_add() 67 2))) == 0) || ((time->ns * multiplier) / multiplier == time->ns)); in nstime_imultiply() 69 time->ns *= multiplier; in nstime_imultiply() 77 time->ns /= divisor; in nstime_idivide() 91 nstime_get(nstime_t *time) in nstime_get() argument [all …]
|
| A D | arena.c | 392 if (arena->decay.time > 0) { in arena_decay_deadline_init() 471 nstime_copy(&delta, time); in arena_decay_epoch_advance_helper() 508 arena->decay.time = decay_time; in arena_decay_init() 538 decay_time = arena->decay.time; in arena_decay_time_get() 569 nstime_t time; in arena_maybe_purge_helper() local 572 if (arena->decay.time <= 0) { in arena_maybe_purge_helper() 573 if (arena->decay.time == 0) in arena_maybe_purge_helper() 578 nstime_init(&time, 0); in arena_maybe_purge_helper() 579 nstime_update(&time); in arena_maybe_purge_helper() 581 &time) > 0)) { in arena_maybe_purge_helper() [all …]
|
| /third_party/ulib/jemalloc/include/jemalloc/internal/ |
| A D | nstime_externs.h | 6 void nstime_init(nstime_t *time, uint64_t ns); 7 void nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec); 8 uint64_t nstime_ns(const nstime_t *time); 9 uint64_t nstime_sec(const nstime_t *time); 10 uint64_t nstime_nsec(const nstime_t *time); 11 void nstime_copy(nstime_t *time, const nstime_t *source); 13 void nstime_add(nstime_t *time, const nstime_t *addend); 14 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend); 15 void nstime_imultiply(nstime_t *time, uint64_t multiplier); 16 void nstime_idivide(nstime_t *time, uint64_t divisor); [all …]
|
| A D | arena_structs_b.h | 45 ssize_t time; member
|
| /third_party/lib/jitterentropy/ |
| A D | jitterentropy-base.c | 128 uint64_t time = 0; in jent_loop_shuffle() local 133 jent_get_nstime(&time); in jent_loop_shuffle() 139 time ^= ec->data; in jent_loop_shuffle() 146 time = time >> bits; in jent_loop_shuffle() 350 uint64_t time = 0; in jent_measure_jitter() local 363 ec->prev_time = time; in jent_measure_jitter() 688 uint64_t time = 0; in jent_entropy_init() local 696 ec.prev_time = time; in jent_entropy_init() 701 if (!time || !time2) in jent_entropy_init() 728 if (!(time2 > time)) in jent_entropy_init() [all …]
|
| A D | CHANGES.md | 8 * threshold for init-time stuck test configurable with JENT_STUCK_INIT_THRES 9 during compile time 15 * Replace the XOR folding of a time delta with an LFSR -- the use of an 19 * Use constant time operation of jent_stir_pool to prevent leaking
|
| A D | README.md | 5 It does not depend on any system resource other than a high-resolution time
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | decay.c | 19 nstime_update_mock(nstime_t *time) in nstime_update_mock() argument 23 nstime_copy(time, &time_mock); in nstime_update_mock() 210 nstime_t time, decay_time, deadline; in TEST_BEGIN() local 266 nstime_init(&time, 0); in TEST_BEGIN() 267 nstime_update(&time); in TEST_BEGIN() 269 nstime_copy(&deadline, &time); in TEST_BEGIN() 284 nstime_update(&time); in TEST_BEGIN() 285 } while (nstime_compare(&time, &deadline) <= 0 && npurge1 == npurge0); in TEST_BEGIN()
|
| /third_party/ulib/musl/include/sys/ |
| A D | timex.h | 14 struct timeval time; member 23 struct timeval time; member
|
| A D | timeb.h | 12 time_t time; member
|
| /third_party/ulib/musl/src/time/ |
| A D | time.c | 5 time_t time(time_t* t) { in time() function
|
| A D | ftime.c | 7 tp->time = ts.tv_sec; in ftime()
|
| /third_party/lib/acpica/source/os_specific/service_layers/ |
| A D | osunixxf.c | 1151 struct timeval time; in AcpiOsGetTimer() local 1156 gettimeofday (&time, NULL); in AcpiOsGetTimer() 1160 return (((UINT64) time.tv_sec * ACPI_100NSEC_PER_SEC) + in AcpiOsGetTimer() 1161 ((UINT64) time.tv_usec * ACPI_100NSEC_PER_USEC)); in AcpiOsGetTimer()
|
| /third_party/ulib/musl/include/ |
| A D | time.h | 44 time_t time(time_t*);
|
| /third_party/ulib/musl/src/misc/ |
| A D | syslog.c | 89 now = time(NULL); in _vsyslog()
|
| /third_party/lib/acpica/source/common/ |
| A D | dmtables.c | 97 time (&Timer); in AdDisassemblerHeader()
|
| /third_party/ulib/linenoise/ |
| A D | README.markdown | 72 standard input is not a tty, which happens every time you redirect a file 116 Use `linenoiseHistoryAdd` every time you want to add a new element 135 is called every time the user presses `<TAB>`. Your callback will return a
|
| /third_party/ulib/musl/ |
| A D | INSTALL | 19 The only build-time prerequisites for musl are GNU Make and a 148 passing --disable-shared to configure; this also cuts the build time
|
| A D | WHATSNEW | 323 - clock function returning wrong value (real time not cpu time) 543 - new O(1) space, O(nm) time implementation of fnmatch 807 - lock handling for stdio memory streams at exit time 967 - zoneinfo time zone support 987 - integer overflows in date/time conversion code 1195 - vdso clock_gettime/gettimeofday/time acceleration on x86_64
|
| /third_party/lib/acpica/source/compiler/ |
| A D | aslcompile.c | 491 (void) time (&Aclock); in AslCompilerFileHeader()
|
| A D | asltree.c | 766 CurrentTime = time (NULL); in TrCreateConstantLeafNode()
|
| /third_party/uapp/kilo/ |
| A D | kilo.c | 59 static time_t time(void* arg) { in time() function 996 if (msglen && time(NULL)-E.statusmsg_time < 5) 1026 E.statusmsg_time = time(NULL);
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 186 - Use memoization (boot-time-computed table) for run quantization. Separate 595 custom run-time options. 800 - Fix assertions in arena_purge() (for real this time). 891 run-time configuration/introspection. Nonetheless, numerous performance 908 - Add compile-time support for all TLS-related functionality via pthreads TSD. 968 This release focuses on speed and run-time introspection. Numerous 974 - Add mallctl*(), for the purposes of introspection and run-time 979 - Compute various additional run-time statistics, including per size class
|
| A D | INSTALL | 68 This makes it possible to use jemalloc at the same time as the system 92 Embed <malloc_conf> as a run-time options string that is processed prior to 95 time to 30 seconds:
|
| /third_party/lib/acpica/ |
| A D | changes.txt | 2666 of an absolute time. 2981 time.) Lin Ming. 3720 Real-time Clock Alarm 8196 time). 8458 at this time. (See acpiosxf.h) 10847 the first time. 12312 init-time execution of these methods. 12478 correct sleep time in seconds. 15433 the interpreter at run-time. 15903 run-time. [all …]
|