| /src/external/bsd/jemalloc/dist/test/unit/ |
| conf_parse.c | 8 expect_false(err, "conf_handle_bool should succeed for \"true\""); 16 expect_false(err, "conf_handle_bool should succeed for \"false\""); 17 expect_false(result, "result should be false"); 32 expect_false(err, "Should succeed for valid value"); 41 expect_false(err, "Should succeed for -1"); 61 expect_false(err, "Should succeed"); 67 expect_false(err, "Should succeed even when truncating"); 77 expect_false(err, "Should succeed for zero-sized destination");
|
| conf.c | 14 expect_false(end, "Should not be at end"); 16 expect_false(strncmp(k, "key", klen), "Key should be \"key\""); 18 expect_false(strncmp(v, "value", vlen), "Value should be \"value\""); 19 expect_false(had_conf_error, "Should not have had an error"); 34 expect_false(end, "Should not be at end after first pair"); 36 expect_false(strncmp(k, "k1", klen), "First key should be \"k1\""); 38 expect_false(strncmp(v, "v1", vlen), "First value should be \"v1\""); 41 expect_false(end, "Should not be at end after second pair"); 43 expect_false(strncmp(k, "k2", klen), "Second key should be \"k2\""); 45 expect_false(strncmp(v, "v2", vlen), "Second value should be \"v2\"") [all...] |
| ckh.c | 9 expect_false(ckh_new(tsd, &ckh, 2, ckh_string_hash, ckh_string_keycomp), 13 expect_false( 29 expect_false(ckh_new(tsd, &ckh, 2, ckh_string_hash, ckh_string_keycomp), 56 expect_false(ckh_search(&ckh, strs[i], kp, vp), 82 expect_false(ckh_remove(tsd, &ckh, strs[i], kp, vp), 112 expect_false( 125 expect_false(ckh_insert(tsd, &ckh, p[j], p[j]), 127 expect_false(ckh_search(&ckh, p[j], &q, &r), 138 expect_false(ckh_search(&ckh, p[j], NULL, NULL), 140 expect_false(ckh_remove(tsd, &ckh, p[j], &q, &r) [all...] |
| mtx.c | 9 expect_false(mtx_init(&mtx), "Unexpected mtx_init() failure"); 39 expect_false(mtx_init(&arg.mtx), "Unexpected mtx_init() failure");
|
| test_hooks.c | 21 expect_false(hook_called, "Nulling out hook didn't take.");
|
| ticker.c | 16 expect_false(ticker_tick(&ticker, false), 37 expect_false( 110 expect_false(ticker_ticks(&t1, ticks, delay), "Unexpected ticker fire"); 111 expect_false(ticker_geom_ticks(&t2, &prng_state, ticks, delay), 119 expect_false(ticker_tick(&t1, delay), "Unexpected ticker fire"); 120 expect_false(ticker_geom_tick(&t2, &prng_state, delay),
|
| pages.c | 18 expect_false(pages_nohuge(hugepage, HUGEPAGE),
|
| tsd.c | 270 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 273 expect_false(tsd_fast(tsd), ""); 279 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 284 expect_false(tsd_fast(tsd), ""); 289 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 294 expect_false(tsd_fast(tsd), ""); 299 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 309 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), "");
|
| cache_bin.c | 113 expect_false(success, "Shouldn't successfully allocate when empty"); 117 expect_false(success, "Shouldn't successfully allocate when empty"); 136 expect_false(success, "Shouldn't be able to dalloc into a full bin."); 151 expect_false(success, ""); 172 expect_false(success, ""); 175 expect_false(success, ""); 197 expect_false(success, ""); 282 expect_false(ret, "Should not dalloc into a full bin"); 284 expect_false(ret, "Should not stash into a full bin"); 301 expect_false(ret, "Should not alloc stashed") [all...] |
| decay.c | 15 expect_false(decay_init(&decay, &curtime, decay_ms), 25 expect_false( 31 expect_false( 48 expect_false(decay_init(&decay, &curtime, (ssize_t)decay_ms), 79 expect_false(err, ""); 83 expect_false(advanced, "Epoch advanced while time didn't"); 90 expect_false(advanced, "Epoch advanced after first interval");
|
| witness.c | 124 expect_false(saw_lock_error, "Unexpected witness lock error"); 134 expect_false(saw_lock_error, "Unexpected witness lock error"); 165 expect_false(saw_lock_error, "Unexpected witness lock error"); 198 expect_false(saw_lock_error, "Unexpected witness lock error"); 199 expect_false(saw_not_owner_error, "Unexpected witness not owner error"); 227 expect_false(saw_owner_error, "Unexpected owner error"); 252 expect_false(saw_depth_error, "Unexpected depth error");
|
| /src/external/bsd/jemalloc.old/dist/test/integration/ |
| thread_tcache_enabled.c | 20 expect_false(e0, "tcache should be disabled"); 35 expect_false(e0, "tcache should be disabled"); 41 expect_false(e0, "tcache should be disabled"); 59 expect_false(e0, "tcache should be disabled");
|
| aligned_alloc.c | 23 expect_false(p != NULL || get_errno() != EINVAL, 30 expect_false(p != NULL || get_errno() != EINVAL, 61 expect_false(p != NULL || get_errno() != ENOMEM, 74 expect_false(p != NULL || get_errno() != ENOMEM, 86 expect_false(p != NULL || get_errno() != ENOMEM,
|
| rallocx.c | 131 expect_false(validate_fill(p, 0, 0, psz), 134 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 142 expect_false(validate_fill(q, FILL_BYTE, 0, 144 expect_false(validate_fill(q, 0, psz, qsz-psz), 154 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 243 expect_false(validate_fill(q, 0, 0, sz), 246 expect_false(validate_fill(q, 0, 0, MAX_VALIDATE), 248 expect_false(validate_fill(
|
| /src/external/bsd/jemalloc/dist/test/integration/ |
| thread_tcache_enabled.c | 22 expect_false(e0, "tcache should be disabled"); 40 expect_false(e0, "tcache should be disabled"); 47 expect_false(e0, "tcache should be disabled"); 68 expect_false(e0, "tcache should be disabled");
|
| aligned_alloc.c | 23 expect_false(p != NULL || get_errno() != EINVAL, 30 expect_false(p != NULL || get_errno() != EINVAL, 59 expect_false(p != NULL || get_errno() != ENOMEM, 71 expect_false(p != NULL || get_errno() != ENOMEM, 82 expect_false(p != NULL || get_errno() != ENOMEM,
|
| rallocx.c | 133 expect_false( 136 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 144 expect_false( 147 expect_false( 158 expect_false(validate_fill(p, FILL_BYTE, 0, psz), 245 expect_false(validate_fill(q, 0, 0, sz), 248 expect_false(validate_fill(q, 0, 0, MAX_VALIDATE), 250 expect_false(validate_fill((void *)((uintptr_t)q + sz
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| ckh.c | 9 expect_false(ckh_new(tsd, &ckh, 2, ckh_string_hash, 13 expect_false(ckh_new(tsd, &ckh, 3, ckh_pointer_hash, 33 expect_false(ckh_new(tsd, &ckh, 2, ckh_string_hash, 60 expect_false(ckh_search(&ckh, strs[i], kp, vp), 86 expect_false(ckh_remove(tsd, &ckh, strs[i], kp, vp), 116 expect_false(ckh_new(tsd, &ckh, 2, ckh_pointer_hash, 128 expect_false(ckh_insert(tsd, &ckh, p[j], p[j]), 130 expect_false(ckh_search(&ckh, p[j], &q, &r), 141 expect_false(ckh_search(&ckh, p[j], NULL, NULL), 143 expect_false(ckh_remove(tsd, &ckh, p[j], &q, &r) [all...] |
| mtx.c | 9 expect_false(mtx_init(&mtx), "Unexpected mtx_init() failure"); 39 expect_false(mtx_init(&arg.mtx), "Unexpected mtx_init() failure");
|
| test_hooks.c | 21 expect_false(hook_called, "Nulling out hook didn't take.");
|
| pages.c | 17 expect_false(pages_nohuge(hugepage, HUGEPAGE),
|
| tsd.c | 216 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 219 expect_false(tsd_fast(tsd), ""); 225 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 230 expect_false(tsd_fast(tsd), ""); 235 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 240 expect_false(tsd_fast(tsd), ""); 245 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), ""); 255 expect_false(atomic_load_b(&data.error, ATOMIC_SEQ_CST), "");
|
| decay.c | 15 expect_false(decay_init(&decay, &curtime, decay_ms), 25 expect_false(decay_ms_valid(-7), 32 expect_false( 49 expect_false(decay_init(&decay, &curtime, (ssize_t)decay_ms), 80 expect_false(err, ""); 84 expect_false(advanced, "Epoch advanced while time didn't"); 91 expect_false(advanced, "Epoch advanced after first interval");
|
| witness.c | 124 expect_false(saw_lock_error, "Unexpected witness lock error"); 134 expect_false(saw_lock_error, "Unexpected witness lock error"); 165 expect_false(saw_lock_error, "Unexpected witness lock error"); 198 expect_false(saw_lock_error, "Unexpected witness lock error"); 199 expect_false(saw_not_owner_error, "Unexpected witness not owner error"); 228 expect_false(saw_owner_error, "Unexpected owner error"); 253 expect_false(saw_depth_error, "Unexpected depth error");
|
| prof_hook.c | 59 expect_false(mock_bt_hook_called, "Called mock hook before it's set"); 101 expect_false(mock_bt_hook_called, "Called mock hook before it's set"); 138 expect_false(mock_dump_hook_called, "Called dump hook before it's set");
|