HomeSort by: relevance | last modified time | path
    Searched defs:slab (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/external/bsd/unbound/dist/validator/
val_kcache.h 56 struct slabhash* slab; member in struct:key_cache
  /src/external/bsd/jemalloc.old/dist/test/unit/
slab.c 8 extent_t slab; local
10 extent_init(&slab, NULL, mallocx(bin_info->slab_size,
13 assert_ptr_not_null(extent_addr_get(&slab),
16 void *reg = (void *)((uintptr_t)extent_addr_get(&slab) +
18 assert_zu_eq(arena_slab_regind(&slab, binind, reg),
23 free(extent_addr_get(&slab));
  /src/external/bsd/jemalloc/dist/src/
inspect.c 70 edata_t *slab; local
72 slab = bin->slabcur;
74 slab = edata_heap_first(&bin->slabs_nonfull);
76 *slabcur_addr = slab != NULL ? edata_addr_get(slab) : NULL;
  /src/external/bsd/jemalloc/dist/test/unit/
slab.c 10 edata_t slab; local
12 edata_init(&slab, INVALID_ARENA_IND,
17 expect_ptr_not_null(edata_addr_get(&slab),
22 void *reg = (void *)((uintptr_t)edata_addr_get(&slab) +
25 &slab, reg),
30 free(edata_addr_get(&slab));
  /src/external/mit/libuv/dist/test/
test-close-fd.c 31 static char slab[1]; local
32 buf->base = slab;
33 buf->len = sizeof(slab);
blackhole-server.c 66 static char slab[65536]; local
67 buf->base = slab;
68 buf->len = sizeof(slab);
test-iouring-pollhup.c 45 static char slab[32]; local
46 *buf = uv_buf_init(slab, sizeof(slab));
test-osx-select.c 34 static char slab[1024]; local
35 buf->base = slab;
36 buf->len = sizeof(slab);
test-udp-recv-in-a-row.c 43 static char slab[sizeof(send_data)]; local
44 buf->base = slab;
45 buf->len = sizeof(slab);
test-watcher-cross-stop.c 37 static char slab[1]; variable
43 buf->base = slab;
44 buf->len = sizeof(slab);
test-not-readable-nor-writable-on-read-error.c 44 static char slab[64]; local
45 buf->base = slab;
46 buf->len = sizeof(slab);
test-readable-on-eof.c 44 static char slab[64]; local
45 buf->base = slab;
46 buf->len = sizeof(slab);
test-tcp-read-stop-start.c 59 static char slab[65536]; local
60 buf->base = slab;
61 buf->len = sizeof(slab);
test-tcp-write-to-half-open-connection.c 71 static char slab[1024]; local
72 buf->base = slab;
73 buf->len = sizeof(slab);
test-udp-connect.c 46 static char slab[65536]; local
48 ASSERT_LE(suggested_size, sizeof(slab));
49 buf->base = slab;
50 buf->len = sizeof(slab);
test-udp-connect6.c 46 static char slab[65536]; local
48 ASSERT_LE(suggested_size, sizeof(slab));
49 buf->base = slab;
50 buf->len = sizeof(slab);
test-udp-send-immediate.c 43 static char slab[65536]; local
45 ASSERT_LE(suggested_size, sizeof(slab));
46 buf->base = slab;
47 buf->len = sizeof(slab);
test-udp-try-send.c 43 static char slab[65536]; local
45 ASSERT_LE(suggested_size, sizeof(slab));
46 buf->base = slab;
47 buf->len = sizeof(slab);
benchmark-ping-udp.c 53 static char slab[64 * 1024]; local
54 buf->base = slab;
55 buf->len = sizeof(slab);
test-tcp-close-accept.c 82 static char slab[1]; local
83 buf->base = slab;
84 buf->len = sizeof(slab);
test-tcp-close-after-read-timeout.c 61 static char slab[8]; local
62 buf->base = slab;
63 buf->len = sizeof(slab);
86 static char slab[8]; local
87 buf->base = slab;
88 buf->len = sizeof(slab);
test-tcp-shutdown-after-write.c 55 static char slab[64]; local
56 buf->base = slab;
57 buf->len = sizeof(slab);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
arena_inlines_b.h 23 if (unlikely(!alloc_ctx->slab)) {
43 if (unlikely(!alloc_ctx->slab)) {
152 /* Only slab members should be looked up via interior pointers. */
168 bool slab; local
170 true, &szind, &slab);
177 assert(slab == extent_slab_get(extent));
180 if (likely(slab)) {
201 bool slab;
205 slab = alloc_ctx->slab;
    [all...]
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
arena_inlines_b.h 23 if (unlikely(!alloc_ctx->slab)) {
43 if (unlikely(!alloc_ctx->slab)) {
152 /* Only slab members should be looked up via interior pointers. */
168 bool slab; local
170 true, &szind, &slab);
177 assert(slab == extent_slab_get(extent));
180 if (likely(slab)) {
201 bool slab;
205 slab = alloc_ctx->slab;
    [all...]
  /src/external/bsd/unbound/dist/testcode/
unitinfra.c 66 static void test_keep_probing(struct infra_cache* slab,
79 slab->infra_keep_probing = keep_probing;
83 unit_assert( infra_host(slab, &one, onelen, zone, zonelen,
88 unit_assert( infra_rtt_update(slab, &one, onelen, zone, zonelen,
90 unit_assert( infra_host(slab, &one, onelen, zone, zonelen,
97 unit_assert( (d=infra_lookup_host(slab, &one, onelen, zone, zonelen, 0, *now, &k)) );
108 unit_assert( infra_get_lame_rtt(slab, &one, onelen, zone, zonelen,
121 struct infra_cache* slab; local
135 slab = infra_create(cfg);
137 unit_assert( infra_host(slab, &one, onelen, zone, zonelen, now
    [all...]

Completed in 43 milliseconds

1 2 3