Home
last modified time | relevance | path

Searched refs:name_count (Results 1 – 21 of 21) sorted by relevance

/external/pdfium/core/fxge/ge/
Dfx_ge_fontmap.cpp28 uint32_t name_count = GET_TT_SHORT(name_table + 2); in GetNameFromTT() local
40 if (name_table_size < name_count * 12) { in GetNameFromTT()
44 for (uint32_t i = 0; i < name_count; i++, name_table += 12) { in GetNameFromTT()
/external/toolchain-utils/deprecated/
Dsummarize_results.py36 name_count = {}
42 count = name_count.get(test_name, 0) + 1
43 name_count[test_name] = count
/external/dnsmasq/src/
Dcache.c757 int addr_count = 0, name_count = cache_size, lineno = 0; in read_hostsfile() local
815 if ((name_count - cache_size) > 1000) in read_hostsfile()
817 rehash(name_count); in read_hostsfile()
818 cache_size = name_count; in read_hostsfile()
844 name_count++; in read_hostsfile()
850 name_count++; in read_hostsfile()
861 rehash(name_count); in read_hostsfile()
865 return name_count; in read_hostsfile()
/external/pcre/dist2/src/
Dpcre2_pattern_info.c207 *((uint32_t *)where) = re->name_count; in pcre2_pattern_info()
274 + re->name_count * re->name_entry_size; in pcre2_callout_enumerate()
Dpcre2_substring.c479 uint16_t top = code->name_count; in pcre2_substring_nametable_scan()
493 lastentry = nametable + entrysize * (code->name_count - 1); in pcre2_substring_nametable_scan()
Dpcre2_serialize.c216 dst_re->name_count > MAX_NAME_COUNT) in pcre2_serialize_decode()
Dpcre2_intmodedep.h625 uint16_t name_count; /* Number of name entries in the table */ member
795 uint16_t name_count; /* Number of names in name table */ member
Dpcre2_printint.c315 code = codestart = nametable + re->name_count * re->name_entry_size; in pcre2_printint()
Dpcre2_study.c1535 re->name_entry_size * re->name_count; in PRIV()
Dpcre2_match.c6652 mb->name_count = re->name_count; in pcre2_match()
6654 mb->start_code = mb->name_table + re->name_count * re->name_entry_size; in pcre2_match()
Dpcre2test.c3754 uint32_t name_count, name_entry_size; in show_memory_info() local
3772 (void)pattern_info(PCRE2_INFO_NAMECOUNT, &name_count, FALSE); in show_memory_info()
3775 (int)(size - name_count*name_entry_size*code_unit_size - cblock_size)); in show_memory_info()
Dpcre2_dfa_match.c3234 re->name_count * re->name_entry_size; in pcre2_dfa_match()
Dpcre2_compile.c8703 re->name_count = cb.names_found; in pcre2_compile()
8709 re->name_entry_size * re->name_count; in pcre2_compile()
Dpcre2_jit_compile.c423 sljit_sw name_count; member
10863 rootbacktrack.cc = common->name_table + re->name_count * re->name_entry_size; in jit_compile()
10899 common->name_count = re->name_count; in jit_compile()
/external/v8/src/
Dtype-feedback-vector.cc101 const int name_count = spec->name_count(); in New() local
104 if (name_count) { in New()
105 names = UnseededNumberDictionary::New(isolate, name_count, TENURED); in New()
122 DCHECK_EQ(name_count, name_index); in New()
124 name_count ? static_cast<Object*>(*names) : Smi::kZero); in New()
Dtype-feedback-vector.h109 int name_count() const { return name_count_; } in name_count() function
151 int name_count() const { return static_cast<int>(names_.size()); } in name_count() function
/external/llvm/lib/ProfileData/
DSampleProfReader.cpp212 for (const auto &name_count : TargetCountMap) { in read() local
214 LineOffset, Discriminator, name_count.first, in read()
215 name_count.second)); in read()
/external/nanopb-c/docs/
Dconcepts.rst159 repeated string name = 1 [(nanopb).max_size = 40, (nanopb).max_count = 5]; | size_t name_count;
/external/vulkan-validation-layers/loader/
Dloader.c1015 uint32_t name_count, const char *const *names, argument
1020 for (uint32_t i = 0; i < name_count; i++) {
/external/valgrind/memcheck/
Dmc_main.c6998 Int i, name_count = 0; in init_prof_mem() local
7003 ++name_count; in init_prof_mem()
7007 tl_assert(name_count == MCPE_LAST); in init_prof_mem()
/external/v8/include/
Dv8.h7865 ExtensionConfiguration(int name_count, const char* names[]) in ExtensionConfiguration() argument
7866 : name_count_(name_count), names_(names) { } in ExtensionConfiguration()