HomeSort by: relevance | last modified time | path
    Searched refs:max_count (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/external/bsd/elftoolchain/dist/libdwarf/
dwarf_macinfo.c 53 Dwarf_Unsigned max_count, Dwarf_Signed *entry_cnt,
78 if (max_count != 0 && cnt > max_count)
79 cnt = max_count;
  /src/external/mit/expat/dist/tests/
structdata.h 51 int max_count; /* Number of StructDataEntry items in `entries` */ member in struct:__anon23650
structdata.c 76 storage->max_count = 0;
87 if (storage->count == storage->max_count) {
90 storage->max_count += STRUCT_EXTENSION_COUNT;
92 storage->max_count * sizeof(StructDataEntry));
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/
list_update_policy.hpp 90 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
102 max_count = Max_Count enumerator in enum:__gnu_pbds::lu_counter_policy::__anon14777
119 { return base_type::operator()(max_count); }
125 { return base_type::operator()(r_data, max_count); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/
list_update_policy.hpp 90 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
102 max_count = Max_Count enumerator in enum:__gnu_pbds::lu_counter_policy::__anon17168
119 { return base_type::operator()(max_count); }
125 { return base_type::operator()(r_data, max_count); }
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_local_cache.h 60 // max_count will be zero, leading to check failure.
63 if (UNLIKELY(c->count == c->max_count))
64 Drain(c, allocator, class_id, c->max_count / 2);
87 u32 max_count; member in struct:SizeClassAllocator64LocalCache::PerClass
95 if (LIKELY(c->max_count))
100 c->max_count = 2 * SizeClassMap::MaxCachedHint(size);
103 DCHECK_NE(c->max_count, 0UL);
109 const uptr num_requested_chunks = c->max_count / 2;
179 // max_count will be zero, leading to check failure.
182 if (UNLIKELY(c->count == c->max_count))
209 uptr max_count; member in struct:SizeClassAllocator32LocalCache::PerClass
    [all...]
sanitizer_allocator_primary32.h 305 TransferBatch **current_batch, uptr max_count,
320 if (b->Count() == max_count) {
340 const uptr max_count = TransferBatch::MaxCached(size); local
341 DCHECK_GT(max_count, 0);
349 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
356 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_local_cache.h 53 // max_count will be zero, leading to check failure.
56 if (UNLIKELY(c->count == c->max_count))
80 u32 max_count; member in struct:SizeClassAllocator64LocalCache::PerClass
88 if (LIKELY(c->max_count))
93 c->max_count = 2 * SizeClassMap::MaxCachedHint(size);
96 DCHECK_NE(c->max_count, 0UL);
102 const uptr num_requested_chunks = c->max_count / 2;
113 Drain(&memory_mapper, c, allocator, class_id, c->max_count / 2);
178 // max_count will be zero, leading to check failure.
181 if (UNLIKELY(c->count == c->max_count))
208 uptr max_count; member in struct:SizeClassAllocator32LocalCache::PerClass
    [all...]
sanitizer_allocator_primary32.h 317 TransferBatch **current_batch, uptr max_count,
332 if (b->Count() == max_count) {
352 const uptr max_count = TransferBatch::MaxCached(size); local
353 DCHECK_GT(max_count, 0);
361 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
368 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_local_cache.h 53 // max_count will be zero, leading to check failure.
56 if (UNLIKELY(c->count == c->max_count))
80 u32 max_count; member in struct:SizeClassAllocator64LocalCache::PerClass
88 if (LIKELY(c->max_count))
93 c->max_count = 2 * SizeClassMap::MaxCachedHint(size);
96 DCHECK_NE(c->max_count, 0UL);
102 const uptr num_requested_chunks = c->max_count / 2;
113 Drain(&memory_mapper, c, allocator, class_id, c->max_count / 2);
178 // max_count will be zero, leading to check failure.
181 if (UNLIKELY(c->count == c->max_count))
208 uptr max_count; member in struct:SizeClassAllocator32LocalCache::PerClass
    [all...]
sanitizer_allocator_primary32.h 317 TransferBatch **current_batch, uptr max_count,
332 if (b->Count() == max_count) {
352 const uptr max_count = TransferBatch::MaxCached(size); local
353 DCHECK_GT(max_count, 0);
361 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
368 if (UNLIKELY(!PopulateBatches(c, sci, class_id, &b, max_count,
  /src/external/gpl3/gdb.old/dist/gdb/
findcmd.c 61 ULONGEST max_count = ~(ULONGEST) 0; local
83 max_count = atoi (s);
203 *max_countp = max_count;
217 ULONGEST max_count = 0; local
224 gdb::byte_vector pattern_buf = parse_find_args (args, &max_count,
235 && found_count < max_count)
  /src/external/gpl3/gdb/dist/gdb/
findcmd.c 61 ULONGEST max_count = ~(ULONGEST) 0; local
83 max_count = atoi (s);
203 *max_countp = max_count;
217 ULONGEST max_count = 0; local
224 gdb::byte_vector pattern_buf = parse_find_args (args, &max_count,
235 && found_count < max_count)
  /src/sys/external/bsd/libfdt/dist/
libfdt_env.h 87 * fdt_strnlen: returns the length of a string or max_count - which ever is
90 * Input 2 max_count: the maximum value returned by this function
91 * Output: length of the string or max_count (the smallest of the two)
93 static inline size_t fdt_strnlen(const char *string, size_t max_count)
95 const char *p = memchr(string, 0, max_count);
96 return p ? p - string : max_count;
  /src/external/cddl/osnet/dist/uts/common/zmod/
trees.c 717 int max_count = 7; /* max repeat count */ local
720 if (nextlen == 0) max_count = 138, min_count = 3;
725 if (++count < max_count && curlen == nextlen) {
739 max_count = 138, min_count = 3;
741 max_count = 6, min_count = 3;
743 max_count = 7, min_count = 4;
762 int max_count = 7; /* max repeat count */ local
766 if (nextlen == 0) max_count = 138, min_count = 3;
770 if (++count < max_count && curlen == nextlen) {
790 max_count = 138, min_count = 3
    [all...]
  /src/external/gpl3/binutils/dist/zlib/
trees.c 716 int max_count = 7; /* max repeat count */ local
719 if (nextlen == 0) max_count = 138, min_count = 3;
724 if (++count < max_count && curlen == nextlen) {
738 max_count = 138, min_count = 3;
740 max_count = 6, min_count = 3;
742 max_count = 7, min_count = 4;
757 int max_count = 7; /* max repeat count */ local
761 if (nextlen == 0) max_count = 138, min_count = 3;
765 if (++count < max_count && curlen == nextlen) {
785 max_count = 138, min_count = 3
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
trees.c 713 int max_count = 7; /* max repeat count */ local
716 if (nextlen == 0) max_count = 138, min_count = 3;
721 if (++count < max_count && curlen == nextlen) {
735 max_count = 138, min_count = 3;
737 max_count = 6, min_count = 3;
739 max_count = 7, min_count = 4;
758 int max_count = 7; /* max repeat count */ local
762 if (nextlen == 0) max_count = 138, min_count = 3;
766 if (++count < max_count && curlen == nextlen) {
786 max_count = 138, min_count = 3
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
trees.c 713 int max_count = 7; /* max repeat count */ local
716 if (nextlen == 0) max_count = 138, min_count = 3;
721 if (++count < max_count && curlen == nextlen) {
735 max_count = 138, min_count = 3;
737 max_count = 6, min_count = 3;
739 max_count = 7, min_count = 4;
758 int max_count = 7; /* max repeat count */ local
762 if (nextlen == 0) max_count = 138, min_count = 3;
766 if (++count < max_count && curlen == nextlen) {
786 max_count = 138, min_count = 3
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
trees.c 716 int max_count = 7; /* max repeat count */ local
719 if (nextlen == 0) max_count = 138, min_count = 3;
724 if (++count < max_count && curlen == nextlen) {
738 max_count = 138, min_count = 3;
740 max_count = 6, min_count = 3;
742 max_count = 7, min_count = 4;
757 int max_count = 7; /* max repeat count */ local
761 if (nextlen == 0) max_count = 138, min_count = 3;
765 if (++count < max_count && curlen == nextlen) {
785 max_count = 138, min_count = 3
    [all...]
  /src/common/dist/zlib/
trees.c 720 int max_count = 7; /* max repeat count */ local
723 if (nextlen == 0) max_count = 138, min_count = 3;
728 if (++count < max_count && curlen == nextlen) {
742 max_count = 138, min_count = 3;
744 max_count = 6, min_count = 3;
746 max_count = 7, min_count = 4;
761 int max_count = 7; /* max repeat count */ local
765 if (nextlen == 0) max_count = 138, min_count = 3;
769 if (++count < max_count && curlen == nextlen) {
789 max_count = 138, min_count = 3
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
profile-count.cc 423 if (dump_file && v >= (gcov_type)max_count)
425 "Capping gcov count %" PRId64 " to max_count %" PRId64 "\n",
426 (int64_t) v, (int64_t) max_count);
427 ret.m_val = MIN (v, (gcov_type)max_count);
  /src/external/gpl3/gcc.old/dist/gcc/
profile-count.cc 438 if (dump_file && v >= (gcov_type)max_count)
440 "Capping gcov count %" PRId64 " to max_count %" PRId64 "\n",
441 (int64_t) v, (int64_t) max_count);
442 ret.m_val = MIN (v, (gcov_type)max_count);
  /src/external/gpl3/binutils/dist/opcodes/
sparc-dis.c 431 int min_count = num_opcodes, max_count = 0;
438 if (hash_count[i] > max_count)
439 max_count = hash_count[i];
444 min_count, max_count, (double) total / HASH_SIZE);
  /src/external/gpl3/binutils.old/dist/opcodes/
sparc-dis.c 459 int min_count = num_opcodes, max_count = 0;
466 if (hash_count[i] > max_count)
467 max_count = hash_count[i];
472 min_count, max_count, (double) total / HASH_SIZE);
  /src/external/gpl3/gdb.old/dist/opcodes/
sparc-dis.c 459 int min_count = num_opcodes, max_count = 0;
466 if (hash_count[i] > max_count)
467 max_count = hash_count[i];
472 min_count, max_count, (double) total / HASH_SIZE);

Completed in 30 milliseconds

1 2 3