Home
last modified time | relevance | path

Searched refs:maxbytes (Results 1 – 6 of 6) sorted by relevance

/dflybsd-src/contrib/lvm2/dist/libdm/mm/
H A Dpool-debug.c31 unsigned int bytes, maxbytes; member
70 mem->stats.maxbytes = 0; in dm_pool_create()
102 p->stats.maxbytes, p->stats.blocks_allocated, in _pool_stats()
136 if (p->stats.bytes > p->stats.maxbytes) in _append_block()
137 p->stats.maxbytes = p->stats.bytes; in _append_block()
/dflybsd-src/contrib/binutils-2.27/bfd/
H A Dbfdio.c185 bfd_size_type maxbytes = arelt_size (abfd); in bfd_bread() local
187 if (abfd->where + size > maxbytes) in bfd_bread()
189 if (abfd->where >= maxbytes) in bfd_bread()
191 size = maxbytes - abfd->where; in bfd_bread()
/dflybsd-src/contrib/gdb-7/bfd/
H A Dbfdio.c187 bfd_size_type maxbytes = arelt_size (abfd); in bfd_bread() local
189 if (abfd->where + size > maxbytes) in bfd_bread()
191 if (abfd->where >= maxbytes) in bfd_bread()
193 size = maxbytes - abfd->where; in bfd_bread()
/dflybsd-src/contrib/binutils-2.34/bfd/
H A Dbfdio.c194 bfd_size_type maxbytes = arelt_size (element_bfd); in bfd_bread() local
196 if (abfd->where < offset || abfd->where - offset >= maxbytes) in bfd_bread()
201 if (abfd->where - offset + size > maxbytes) in bfd_bread()
202 size = maxbytes - (abfd->where - offset); in bfd_bread()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dgimple-ssa-sprintf.c2519 unsigned HOST_WIDE_INT maxbytes = target_dir_max (); in maybe_warn() local
2592 if (res.min == 0 && res.max < maxbytes) in maybe_warn()
2607 if (res.min == 0 && maxbytes <= res.max) in maybe_warn()
2625 if (res.max < maxbytes) in maybe_warn()
2714 if (res.min == 0 && res.max < maxbytes) in maybe_warn()
2730 if (res.min == 0 && maxbytes <= res.max) in maybe_warn()
2749 if (res.max < maxbytes) in maybe_warn()
/dflybsd-src/sbin/ip6fw/
H A Dip6fw.c441 int nalloc, maxbytes; in list() local
448 maxbytes = 65536 * sizeof *rules; in list()
455 if ((i < 0 && errno != EINVAL) || nalloc > maxbytes) in list()