/external/llvm-project/polly/lib/External/isl/include/isl/ |
D | hmap_templ.c | 37 ISL_HMAP *hmap; in ISL_FN() local 39 hmap = isl_calloc_type(ctx, ISL_HMAP); in ISL_FN() 40 if (!hmap) in ISL_FN() 43 hmap->ctx = ctx; in ISL_FN() 45 hmap->ref = 1; in ISL_FN() 47 if (isl_hash_table_init(ctx, &hmap->table, min_size) < 0) in ISL_FN() 48 return ISL_FN(ISL_HMAP,free)(hmap); in ISL_FN() 50 return hmap; in ISL_FN() 63 __isl_null ISL_HMAP *ISL_FN(ISL_HMAP,free)(__isl_take ISL_HMAP *hmap) in ISL_FN() 65 if (!hmap) in ISL_FN() [all …]
|
D | hmap.h | 18 __isl_give ISL_HMAP *ISL_FN(ISL_HMAP,copy)(__isl_keep ISL_HMAP *hmap); 19 __isl_null ISL_HMAP *ISL_FN(ISL_HMAP,free)(__isl_take ISL_HMAP *hmap); 21 isl_ctx *ISL_FN(ISL_HMAP,get_ctx)(__isl_keep ISL_HMAP *hmap); 24 __isl_keep ISL_HMAP *hmap, __isl_keep ISL_KEY *key); 25 isl_bool ISL_FN(ISL_HMAP,has)(__isl_keep ISL_HMAP *hmap, 27 __isl_give ISL_VAL *ISL_FN(ISL_HMAP,get)(__isl_keep ISL_HMAP *hmap, 29 __isl_give ISL_HMAP *ISL_FN(ISL_HMAP,set)(__isl_take ISL_HMAP *hmap, 31 __isl_give ISL_HMAP *ISL_FN(ISL_HMAP,drop)(__isl_take ISL_HMAP *hmap, 34 isl_stat ISL_FN(ISL_HMAP,foreach)(__isl_keep ISL_HMAP *hmap, 40 __isl_take isl_printer *p, __isl_keep ISL_HMAP *hmap); [all …]
|
/external/nist-sip/java/gov/nist/core/ |
D | NameValueList.java | 59 private Map<String,NameValue> hmap; field in NameValueList 68 this.hmap = new LinkedHashMap<String,NameValue>(); in NameValueList() 74 this.hmap = new ConcurrentHashMap<String,NameValue>(); in NameValueList() 76 this.hmap = new LinkedHashMap<String,NameValue>(); in NameValueList() 94 if (!hmap.isEmpty()) { in encode() 95 Iterator<NameValue> iterator = hmap.values().iterator(); in encode() 124 this.hmap.put(nv.getName().toLowerCase(), nv); in set() 132 hmap.put(name.toLowerCase(), nameValue); in set() 152 if (hmap.size() != other.hmap.size()) { in equals() 155 Iterator<String> li = this.hmap.keySet().iterator(); in equals() [all …]
|
/external/llvm-project/clang/test/Modules/ |
D | framework-public-includes-private.m | 4 // RUN: %hmaptool write %S/Inputs/framework-public-includes-private/a.hmap.json %t/a.hmap 5 // RUN: %hmaptool write %S/Inputs/framework-public-includes-private/z.hmap.json %t/z.hmap 12 // RUN: -iquote %t/z.hmap -iquote %t/a.hmap -ivfsoverlay %t/z.yaml \ 17 // RUN: -iquote %t/z.hmap -iquote %t/a.hmap -ivfsoverlay %t/z.yaml \
|
D | double-quotes.m | 4 // RUN: %hmaptool write %S/Inputs/double-quotes/a.hmap.json %t/a.hmap 5 // RUN: %hmaptool write %S/Inputs/double-quotes/x.hmap.json %t/x.hmap 13 // RUN: -I %t/x.hmap -iquote %t/a.hmap -ivfsoverlay %t/z.yaml \ 18 // RUN: -I %t/x.hmap -iquote %t/a.hmap -ivfsoverlay %t/z.yaml \
|
D | crash-vfs-headermaps.m | 6 // RUN: %hmaptool write %S/../Preprocessor/Inputs/headermap-rel/foo.hmap.json %t/i/foo.hmap 10 // RUN: -I %t/i/foo.hmap -F %t/i 2>&1 | FileCheck %s 27 // CHECKSH: "-I" "/[[INCPATH:.*]]/foo.hmap" 47 // CHECKYAML-NEXT: 'name': "foo.hmap", 48 // CHECKYAML-NEXT: 'external-contents': "/[[PATH]]/i/foo.hmap"
|
/external/llvm-project/clang/utils/hmaptool/ |
D | hmaptool | 129 hmap = HeaderMap.frompath(path) 135 print (' num entries: %d' % (hmap.num_entries,)) 136 print (' num buckets: %d' % (len(hmap.buckets),)) 137 print (' string table size: %d' % (len(hmap.strtable),)) 138 for i,bucket in enumerate(hmap.buckets): 145 key = hmap.get_string(key_idx) 146 prefix = hmap.get_string(prefix_idx) 147 suffix = hmap.get_string(suffix_idx) 150 i, key, prefix, suffix, (hmap_hash(key) & (len(hmap.buckets) - 1)))) 152 mappings = sorted(hmap.mappings) [all …]
|
/external/clang/test/PCH/ |
D | headermap.m | 1 // RUN: touch %t.hmap 7 // RUN: %clang_cc1 -include-pch %t.h.pch -I%t.hmap %s 9 // RUN: %clang_cc1 -x objective-c -I%t.hmap -emit-pch -o %t.h.pch %S/headermap.h 12 // RUN: %clang_cc1 -x objective-c -I%t.hmap -emit-pch -o %t.h.pch %S/headermap.h 13 // RUN: %clang_cc1 -include-pch %t.h.pch -I%t.hmap %s
|
/external/llvm-project/clang/test/PCH/ |
D | headermap.m | 1 // RUN: touch %t.hmap 7 // RUN: %clang_cc1 -include-pch %t.h.pch -I%t.hmap %s 9 // RUN: %clang_cc1 -x objective-c -I%t.hmap -emit-pch -o %t.h.pch %S/headermap.h 12 // RUN: %clang_cc1 -x objective-c -I%t.hmap -emit-pch -o %t.h.pch %S/headermap.h 13 // RUN: %clang_cc1 -include-pch %t.h.pch -I%t.hmap %s
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | test_spin_lock.c | 18 } hmap SEC(".maps"); 59 val = bpf_map_lookup_elem(&hmap, &key); in bpf_sping_lock_test() 61 bpf_map_update_elem(&hmap, &key, &zero, 0); in bpf_sping_lock_test() 62 val = bpf_map_lookup_elem(&hmap, &key); in bpf_sping_lock_test()
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | windows_file_system.cc | 285 HANDLE hmap, const void* address, uint64 length) in WinReadOnlyMemoryRegion() argument 288 hmap_(hmap), in WinReadOnlyMemoryRegion() 427 HANDLE hmap = ::CreateFileMappingA(hfile, NULL, PAGE_READONLY, in NewReadOnlyMemoryRegionFromFile() local 432 if (!hmap) { in NewReadOnlyMemoryRegionFromFile() 440 UniqueCloseHandlePtr map_guard(hmap, CloseHandleFunc); in NewReadOnlyMemoryRegionFromFile() 443 ::MapViewOfFileEx(hmap, FILE_MAP_READ, in NewReadOnlyMemoryRegionFromFile() 457 result->reset(new WinReadOnlyMemoryRegion(fname, hfile, hmap, mapped_region, in NewReadOnlyMemoryRegionFromFile()
|
/external/protobuf/objectivec/ |
D | .gitignore | 22 *.hmap
|
/external/grpc-grpc/ |
D | .gitignore | 89 *.hmap
|
/external/rust/crates/grpcio-sys/grpc/ |
D | .gitignore | 94 *.hmap
|
/external/llvm-project/polly/lib/External/isl/ |
D | Makefile.am | 390 include/isl/hmap.h \
|
D | isl_scheduler.c | 1846 isl_map_to_basic_set **hmap = &graph->intra_hmap; in intra_coefficients() local 1855 hmap = &graph->intra_hmap_param; in intra_coefficients() 1856 m = isl_map_to_basic_set_try_get(*hmap, map); in intra_coefficients() 1869 *hmap = isl_map_to_basic_set_set(*hmap, key, isl_basic_set_copy(coef)); in intra_coefficients()
|
D | Makefile.in | 498 include/isl/hash.h include/isl/hmap.h include/isl/hmap_templ.c \ 1206 include/isl/hmap.h \
|