HomeSort by relevance Sort by last modified time
    Searched refs:ZU (Results 1 - 25 of 29) sorted by null

1 2

  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_macros.h 41 #define ZU(z) ((size_t)z)
46 #define KZU(z) ZU(z##ULL)
bitmap.h 6 #define BITMAP_MAXBITS (ZU(1) << LG_BITMAP_MAXBITS)
15 #define BITMAP_GROUP_NBITS (ZU(1) << LG_BITMAP_GROUP_NBITS)
162 return (!(g & (ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK))));
177 assert(g & (ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK)));
178 g ^= ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK);
190 assert(g & (ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK)));
191 g ^= ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK);
246 assert((g & (ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK))) == 0);
247 g ^= ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK);
260 assert((g & (ZU(1) << (bit & BITMAP_GROUP_NBITS_MASK))
    [all...]
quarantine.h 8 #define JEMALLOC_VALGRIND_QUARANTINE_DEFAULT (ZU(1) << 24)
rtree.h 18 #define RTREE_BITS_PER_LEVEL (ZU(1) << LG_RTREE_BITS_PER_LEVEL)
20 ((ZU(1) << (LG_SIZEOF_PTR+3)) / RTREE_BITS_PER_LEVEL)
147 return ((key >> ((ZU(1) << (LG_SIZEOF_PTR+3)) -
148 rtree->levels[level].cumbits)) & ((ZU(1) <<
jemalloc_internal.h 208 (ZU(1) << (flags & MALLOCX_LG_ALIGN_MASK))
558 if (size <= (ZU(1) << LG_TINY_MAXCLASS)) {
566 (ZU(1)<<(LG_SIZEOF_PTR+3)) : ((ZU(1)<<(LG_SIZEOF_PTR+3))-1))
577 ((ZU(1) << LG_SIZE_CLASS_GROUP) - 1);
612 return (ZU(1) << (LG_TINY_MAXCLASS - NTBINS + 1 + index));
617 size_t mod = reduced_index & ((ZU(1) << LG_SIZE_CLASS_GROUP) -
621 size_t grp_size = ((ZU(1) << (LG_QUANTUM +
654 if (size <= (ZU(1) << LG_TINY_MAXCLASS)) {
657 return (lg_ceil < lg_tmin ? (ZU(1) << lg_tmin)
    [all...]
arena.h 4 #define LARGE_MINCLASS (ZU(1) << LG_LARGE_MINCLASS)
    [all...]
  /external/jemalloc/test/integration/
mallocx.c 37 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind);
58 assert_ptr_null(mallocx(ZU(PTRDIFF_MAX)+1, 0),
59 "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
64 assert_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
66 ZU(PTRDIFF_MAX)+1);
92 size = ZU(0x8000000000000000);
93 alignment = ZU(0x8000000000000000);
95 size = ZU(0x80000000);
96 alignment = ZU(0x80000000);
159 "nallocx() error for alignment=%zu, "
    [all...]
rallocx.c 37 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind);
57 #define MAXSZ ZU(12 * 1024 * 1024)
67 "Unexpected rallocx() error for size=%zu-->%zu",
71 "Expected size to be at least: %zu", szs[j-1]+1);
78 "Unexpected rallocx() error for size=%zu-->%zu",
82 "Expected size=%zu, got size=%zu", szs[j-1], tsz);
104 test_fail("Allocation at %p (len=%zu) contains %#x
    [all...]
  /external/jemalloc/src/
quarantine.c 30 size = offsetof(quarantine_t, objs) + ((ZU(1) << lg_maxobjs) *
76 if (quarantine->first + quarantine->curobjs <= (ZU(1) <<
83 size_t ncopy_a = (ZU(1) << quarantine->lg_maxobjs) -
106 quarantine->first = (quarantine->first + 1) & ((ZU(1) <<
141 if (quarantine->curobjs == (ZU(1) << quarantine->lg_maxobjs))
144 assert(quarantine->curobjs < (ZU(1) << quarantine->lg_maxobjs));
148 ((ZU(1) << quarantine->lg_maxobjs) - 1);
ckh.c 58 for (i = 0; i < (ZU(1) << LG_CKH_BUCKET_CELLS); i++) {
80 bucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets) - 1);
86 bucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1);
103 for (i = 0; i < (ZU(1) << LG_CKH_BUCKET_CELLS); i++) {
105 ((i + offset) & ((ZU(1) << LG_CKH_BUCKET_CELLS) - 1))];
160 tbucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1);
162 tbucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets)
204 bucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets) - 1);
209 bucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1);
381 (ZU(1) << lg_mincells) < mincells
    [all...]
bitmap.c 15 assert(nbits <= (ZU(1) << LG_BITMAP_MAXBITS));
80 assert(nbits <= (ZU(1) << LG_BITMAP_MAXBITS));
rtree.c 69 nchildren = ZU(1) << rtree->levels[level].bits;
106 node = rtree->alloc(ZU(1) << rtree->levels[level].bits);
jemalloc.c 38 size_t opt_quarantine = ZU(0);
92 ((ZU(1)<<lg_grp) + (ZU(ndelta)<<lg_delta)),
95 ZU(0)
    [all...]
chunk.c 718 chunksize = (ZU(1) << opt_lg_chunk);
725 if (rtree_new(&chunks_rtree, (unsigned)((ZU(1) << (LG_SIZEOF_PTR+3)) -
stats.c 122 "0.00%zu", milli);
124 malloc_snprintf(util, sizeof(util), "0.0%zu",
127 malloc_snprintf(util, sizeof(util), "0.%zu",
134 "%20zu %3u %12zu %12"FMTu64
135 " %12"FMTu64" %12"FMTu64" %12zu"
136 " %12zu %4u %3zu %-5s %12"FMTu64
144 "%20zu %3u %12zu %12"FMTu6
    [all...]
arena.c     [all...]
  /external/jemalloc/test/unit/
size_classes.c 39 "size_class=%zu (%#zx)", index, size_class, size_class);
42 "size_class=%zu (%#zx)", index, size_class, size_class);
46 " size_class=%zu --> index=%u --> size_class=%zu", index,
51 " size_class=%zu --> index=%u --> size_class=%zu", index,
91 assert_u_ge(size2index(ZU(PTRDIFF_MAX)+1), NSIZES,
98 assert_zu_gt(s2u(ZU(PTRDIFF_MAX)+1), HUGE_MAXCLASS,
quarantine.c 24 #define SZ ZU(256)
32 "SZ=%zu does not precisely equal a size class", SZ);
51 "i=%zu, j=%zu", i, j);
zero.c 22 "Previously allocated byte %zu/%zu is corrupted",
23 ZU(0), sz_prev);
25 "Previously allocated byte %zu/%zu is corrupted",
31 "Newly allocated byte %zu/%zu isn't zero-filled",
ckh.c 38 "ckh_count() should return %zu, but it returned %zu", ZU(0),
45 "ckh_count() should return %zu, but it returned %zu", i+1,
67 assert_ptr_eq((void *)ks, (void *)k.s, "Key mismatch, i=%zu",
69 assert_ptr_eq((void *)vs, (void *)v.s, "Value mismatch, i=%zu",
93 assert_ptr_eq((void *)ks, (void *)k.s, "Key mismatch, i=%zu",
95 assert_ptr_eq((void *)vs, (void *)v.s, "Value mismatch, i=%zu",
99 "ckh_count() should return %zu, but it returned %zu"
    [all...]
junk.c 33 "Missing junk fill for byte %zu/%zu of deallocated region",
48 "Missing junk fill for byte %zu/%zu of deallocated region",
92 "Previously allocated byte %zu/%zu is corrupted",
93 ZU(0), sz_prev);
95 "Previously allocated byte %zu/%zu is corrupted",
102 "Newly allocated byte %zu/%zu isn't
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
fp_cvt_int.s 87 do_fcvt ZU, \fbits, \reg
99 do_fcvt ZU, \fbits, \reg
  /prebuilts/go/darwin-x86/src/cmd/vet/
asmdecl.go 89 ppc64Suff = re(`([BHWD])(ZU|Z|U|BR)?$`)
  /prebuilts/go/linux-x86/src/cmd/vet/
asmdecl.go 89 ppc64Suff = re(`([BHWD])(ZU|Z|U|BR)?$`)
  /frameworks/base/media/tests/contents/media_api/music/
test_amr_ietf.amr 358 }K??????+4 ?<B[??Ax??T?f?'??9?5r??f9?<Dm?f?y????;??_??B?jR????vp< ~??i??)b?J??tI??A??Y?x?<D?%O? ?U?IM?j?? ??t?[p??#>/?<?g?0?U?(??%??}???L1ph#?$P<?y?'?a??3?p??c?iF?+8+m?0<>??Q??=+?|-???vx?ol??c0<D?W?????Iz?q?q?m?agd??`*<D^?=?????5f?????[]?Q????<????KU??p0~?!?i???????`<"$'???????{?$t8????&?D?<?B??)s????G2 ??^[0????<;{'??{??n???<???[l_'?m???<?7{/?K??????o?X )??A#??b?<<]?>X???K1v?D?7???z/u7?>?+?<RpO???0???m??lz??Rj??AZ <"??????Z?ZUR?=pvŒ??Q??NP?<??#&X??*?????! 'C4?/<?A&]A.?<]GO?Ea??J?6????&@?_a?? 6t/?P<4V5?*?2???B?6?t?:??? <FF?4?p?????"?T?x?I?P`{???<(Z)W?????:????t??<C?Q ?sD <5?O?o=?P~??z??g{Ei/??>?.p<(>5W???????%k?&Y?y??u??'`<?_???Ic?x?=?????eg??f???p<?W????W??XG2???8M4 ??? ?<z_?vIq?????e???XGg th????<?_?F???tW?38?*?=?v%GS.???<?N?|??Y?2?"??LS??h ?o?`<??"?b???JG????S??=?@???<@?!??????(??3?I?m{#??T???%?<Rq??Ny)v?9?i?oM?„?o?#????<2r ????|????+?e2T ?Ztn??a6?<m???2?U4?s ?'?/+?KW???6m?<Bl w??E8[^?Cf?&?y?5
    [all...]

Completed in 798 milliseconds

1 2