Home
last modified time | relevance | path

Searched refs:num_size (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c894 int num_size; member
5863 int num_size, int null_size, const struct archive_rb_tree_ops *rbt_ops) in idr_start() argument
5876 idr->num_size = num_size; in idr_start()
5930 idr_extend_identifier(n, idr->num_size, idr->null_size); in idr_resolve()
5999 const int num_size = 3; in isoent_gen_iso9660_identifier() local
6042 r = idr_start(a, idr, isoent->children.cnt, ffmax, num_size, null_size, &rb_ops); in isoent_gen_iso9660_identifier()
6051 p = malloc(l + num_size + dot_size + version_size + null_size); in isoent_gen_iso9660_identifier()
6257 const int num_size = 6; in isoent_gen_joliet_identifier() local
6268 r = idr_start(a, idr, isoent->children.cnt, (int)ffmax, num_size, null_size, &rb_ops); in isoent_gen_joliet_identifier()
6284 p = malloc(l + num_size + null_size); in isoent_gen_joliet_identifier()
/freebsd/contrib/jemalloc/src/
H A Djemalloc.c355 size_t num_size; in bootstrap_calloc() local
357 num_size = num * size; in bootstrap_calloc()
358 if (unlikely(num_size == 0)) { in bootstrap_calloc()
360 num_size = 1; in bootstrap_calloc()
363 return a0ialloc(num_size, true, false); in bootstrap_calloc()