/external/jemalloc_new/test/unit/ |
D | qr.c | 5 /* Number of ring entries, in [2..26]. */ 18 init_entries(ring_t *entries) { in init_entries() argument 22 qr_new(&entries[i], link); in init_entries() 23 entries[i].id = 'a' + i; in init_entries() 28 test_independent_entries(ring_t *entries) { in test_independent_entries() argument 34 qr_foreach(t, &entries[i], link) { in test_independent_entries() 43 qr_reverse_foreach(t, &entries[i], link) { in test_independent_entries() 51 t = qr_next(&entries[i], link); in test_independent_entries() 52 assert_ptr_eq(t, &entries[i], in test_independent_entries() 57 t = qr_prev(&entries[i], link); in test_independent_entries() [all …]
|
D | ql.c | 5 /* Number of ring entries, in [2..26]. */ 47 init_entries(list_t *entries, unsigned nentries) { in init_entries() argument 51 entries[i].id = 'a' + i; in init_entries() 52 ql_elm_new(&entries[i], link); in init_entries() 57 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries) { in test_entries_list() argument 61 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch"); in test_entries_list() 62 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id, in test_entries_list() 67 assert_c_eq(t->id, entries[i].id, "Element id mismatch"); in test_entries_list() 73 assert_c_eq(t->id, entries[nentries-i-1].id, in test_entries_list() 79 t = ql_next(head, &entries[i], link); in test_entries_list() [all …]
|
/external/jemalloc/test/unit/ |
D | qr.c | 3 /* Number of ring entries, in [2..26]. */ 16 init_entries(ring_t *entries) in init_entries() argument 21 qr_new(&entries[i], link); in init_entries() 22 entries[i].id = 'a' + i; in init_entries() 27 test_independent_entries(ring_t *entries) in test_independent_entries() argument 34 qr_foreach(t, &entries[i], link) { in test_independent_entries() 43 qr_reverse_foreach(t, &entries[i], link) { in test_independent_entries() 51 t = qr_next(&entries[i], link); in test_independent_entries() 52 assert_ptr_eq(t, &entries[i], in test_independent_entries() 57 t = qr_prev(&entries[i], link); in test_independent_entries() [all …]
|
D | ql.c | 3 /* Number of ring entries, in [2..26]. */ 47 init_entries(list_t *entries, unsigned nentries) in init_entries() argument 52 entries[i].id = 'a' + i; in init_entries() 53 ql_elm_new(&entries[i], link); in init_entries() 58 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries) in test_entries_list() argument 63 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch"); in test_entries_list() 64 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id, in test_entries_list() 69 assert_c_eq(t->id, entries[i].id, "Element id mismatch"); in test_entries_list() 75 assert_c_eq(t->id, entries[nentries-i-1].id, in test_entries_list() 81 t = ql_next(head, &entries[i], link); in test_entries_list() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/ |
D | module-stats.test | 7 ALL-NEXT: Total: 6 entries ( 204 bytes) 9 ALL-NEXT: S_GPROC32: 1 entries ( 44 bytes) 10 ALL-NEXT: S_FRAMEPROC: 1 entries ( 32 bytes) 11 ALL-NEXT: S_END: 1 entries ( 4 bytes) 12 ALL-NEXT: S_OBJNAME: 1 entries ( 56 bytes) 13 ALL-NEXT: S_COMPILE3: 1 entries ( 60 bytes) 14 ALL-NEXT: S_BUILDINFO: 1 entries ( 8 bytes) 16 ALL-NEXT: Total: 2 entries ( 88 bytes) 18 ALL-NEXT: DEBUG_S_FILECHKSMS: 1 entries ( 32 bytes) 19 ALL-NEXT: DEBUG_S_LINES: 1 entries ( 56 bytes) [all …]
|
/external/google-fruit/include/fruit/impl/component_storage/ |
D | partial_component_storage.defn.h | 34 void addBindings(FixedSizeVector<ComponentStorageEntry>& entries) const { in addBindings() argument 35 (void)entries; in addBindings() 52 void addBindings(FixedSizeVector<ComponentStorageEntry>& entries) const { in addBindings() argument 53 previous_storage.addBindings(entries); in addBindings() 70 void addBindings(FixedSizeVector<ComponentStorageEntry>& entries) const { in addBindings() argument 71 previous_storage.addBindings(entries); in addBindings() 89 void addBindings(FixedSizeVector<ComponentStorageEntry>& entries) const { in addBindings() argument 90 entries.push_back(InjectorStorage::createComponentStorageEntryForBindInstance<C, C>(instance)); in addBindings() 91 previous_storage.addBindings(entries); in addBindings() 109 void addBindings(FixedSizeVector<ComponentStorageEntry>& entries) const { in addBindings() argument [all …]
|
/external/autotest/utils/ |
D | summarize_loadtest.py | 50 help='Dump all filtered entries.') 65 def summarize_entries(entries, skip=set()): argument 66 """Summarize a list of entries.""" 75 'COUNT': len(entries), 77 summary.update({key: summarize_tags(entries, key) for key in TAG_KEYS 79 summary.update({key: summarize_values(entries, key) for key in VALUE_KEYS 83 def summarize_tags(entries, key): argument 85 tags = {str(entry[key]) for entry in entries} 88 def summarize_values(entries, key): argument 90 if entries is None or len(entries) == 0: [all …]
|
/external/u-boot/arch/x86/cpu/qemu/ |
D | e820.c | 12 struct e820_entry *entries) in install_e820_map() argument 14 entries[0].addr = 0; in install_e820_map() 15 entries[0].size = ISA_START_ADDRESS; in install_e820_map() 16 entries[0].type = E820_RAM; in install_e820_map() 18 entries[1].addr = ISA_START_ADDRESS; in install_e820_map() 19 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS; in install_e820_map() 20 entries[1].type = E820_RESERVED; in install_e820_map() 27 entries[2].addr = ISA_END_ADDRESS; in install_e820_map() 28 entries[2].size = gd->relocaddr - TOTAL_MALLOC_LEN - ISA_END_ADDRESS; in install_e820_map() 29 entries[2].type = E820_RAM; in install_e820_map() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/ |
D | coff-resources.test | 15 ZERO-DAG: Number of String Entries: 0 16 ZERO-NEXT: Number of ID Entries: 1 19 ZERO-NEXT: Number of String Entries: 0 20 ZERO-NEXT: Number of ID Entries: 1 23 ZERO-NEXT: Number of String Entries: 0 24 ZERO-NEXT: Number of ID Entries: 1 38 TEST_RES-DAG: Number of String Entries: 0 39 TEST_RES-NEXT: Number of ID Entries: 4 42 TEST_RES-NEXT: Number of String Entries: 2 43 TEST_RES-NEXT: Number of ID Entries: 0 [all …]
|
/external/libexif/libexif/fuji/ |
D | exif-mnote-data-fuji.c | 43 if (n->entries) { in exif_mnote_data_fuji_clear() 45 if (n->entries[i].data) { in exif_mnote_data_fuji_clear() 46 exif_mem_free (d->mem, n->entries[i].data); in exif_mnote_data_fuji_clear() 47 n->entries[i].data = NULL; in exif_mnote_data_fuji_clear() 49 exif_mem_free (d->mem, n->entries); in exif_mnote_data_fuji_clear() 50 n->entries = NULL; in exif_mnote_data_fuji_clear() 73 mnote_fuji_tag_get_name (n->entries[i].tag)); in exif_mnote_data_fuji_get_value() 75 return mnote_fuji_entry_get_value (&n->entries[i], val, maxlen); in exif_mnote_data_fuji_get_value() 90 * Allocate enough memory for all entries and the number in exif_mnote_data_fuji_save() 91 * of entries. in exif_mnote_data_fuji_save() [all …]
|
/external/google-breakpad/src/common/ |
D | dwarf_cfi_to_module_unittest.cc | 83 vector<Module::StackFrameEntry *> entries; member 92 module.GetStackFrameEntries(&entries); in TEST_F() 93 EXPECT_EQ(1U, entries.size()); in TEST_F() 94 EXPECT_EQ(0xa21069698096fc98ULL, entries[0]->address); in TEST_F() 95 EXPECT_EQ(0xb440ce248169c8d6ULL, entries[0]->size); in TEST_F() 96 EXPECT_EQ(0U, entries[0]->initial_rules.size()); in TEST_F() 97 EXPECT_EQ(0U, entries[0]->rule_changes.size()); in TEST_F() 104 module.GetStackFrameEntries(&entries); in TEST_F() 105 EXPECT_EQ(1U, entries.size()); in TEST_F() 106 EXPECT_EQ(0x75b8806bb09eab78ULL, entries[0]->address); in TEST_F() [all …]
|
/external/wayland/src/ |
D | wayland-util.c | 198 struct wl_array *entries; in wl_map_insert_new() local 202 entries = &map->client_entries; in wl_map_insert_new() 205 entries = &map->server_entries; in wl_map_insert_new() 210 start = entries->data; in wl_map_insert_new() 214 entry = wl_array_add(entries, sizeof *entry); in wl_map_insert_new() 217 start = entries->data; in wl_map_insert_new() 231 struct wl_array *entries; in wl_map_insert_at() local 234 entries = &map->client_entries; in wl_map_insert_at() 236 entries = &map->server_entries; in wl_map_insert_at() 240 count = entries->size / sizeof *start; in wl_map_insert_at() [all …]
|
/external/libexif/libexif/canon/ |
D | exif-mnote-data-canon.c | 43 if (n->entries) { in exif_mnote_data_canon_clear() 45 if (n->entries[i].data) { in exif_mnote_data_canon_clear() 46 exif_mem_free (d->mem, n->entries[i].data); in exif_mnote_data_canon_clear() 47 n->entries[i].data = NULL; in exif_mnote_data_canon_clear() 49 exif_mem_free (d->mem, n->entries); in exif_mnote_data_canon_clear() 50 n->entries = NULL; in exif_mnote_data_canon_clear() 71 to = from + mnote_canon_entry_count_values (&dc->entries[*m]); in exif_mnote_data_canon_get_tags() 89 return mnote_canon_entry_get_value (&dc->entries[m], s, val, maxlen); in exif_mnote_data_canon_get_value() 104 n->entries[i].order = o; in exif_mnote_data_canon_set_byte_order() 105 exif_array_set_byte_order (n->entries[i].format, n->entries[i].data, in exif_mnote_data_canon_set_byte_order() [all …]
|
/external/syzkaller/prog/ |
D | parse_test.go | 19 entries := target.ParseLog([]byte(execLog)) 20 if len(entries) != 1 { 21 t.Fatalf("got %v programs, want 1", len(entries)) 23 ent := entries[0] 49 entries := target.ParseLog([]byte(execLog)) 50 if len(entries) != 5 { 51 for i, ent := range entries { 54 t.Fatalf("got %v programs, want 5", len(entries)) 57 for _, ent := range entries { 62 if entries[0].Proc != 0 || [all …]
|
/external/clang/lib/CodeGen/ |
D | SwiftCallingConv.cpp | 262 // Fast path: we can just add entries to the end. in addEntry() 263 if (Entries.empty() || Entries.back().End <= begin) { in addEntry() 264 Entries.push_back({begin, end, type}); in addEntry() 269 // TODO: do a binary search if Entries is big enough for it to matter. in addEntry() 270 size_t index = Entries.size() - 1; in addEntry() 272 if (Entries[index - 1].End <= begin) break; in addEntry() 278 if (Entries[index].Begin >= end) { in addEntry() 282 Entries.insert(Entries.begin() + index, {begin, end, type}); in addEntry() 291 if (Entries[index].Begin == begin && Entries[index].End == end) { in addEntry() 293 if (Entries[index].Type == type) return; in addEntry() [all …]
|
/external/iproute2/man/man8/ |
D | lnstat.8 | 66 .B # lnstat -k arp_cache:entries,rt_cache:in_hit,arp_cache:destroys 81 .B # lnstat -c -1 -i 1 -f rt_cache -k entries,in_hit,in_slow_tot 82 Display statistics for keys entries, in_hit and in_slow_tot of field rt_cache every second. 89 .B entries 90 Number of entries in the neighbor table. 93 How many neighbor entries have been allocated. 96 How many neighbor entries have been removed. 124 How many neighbor table entries were discarded due to lookup failure. 135 .B entries 136 Number of entries in conntrack table. [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | logging_v2beta1.projects.sinks.html | 79 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 98 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 110 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… 111 …, # Optional. The time at which this sink will stop exporting log entries. Log entries are exporte… 117 …reated, must have permission to write to the destination or else the log entries are not exported.… 118 …"filter": "A String", # Optional. An advanced logs filter. The only exported log entries are those… 120 … # Optional. The time at which this sink will begin exporting log entries. Log entries are exporte… 121 …g", # Optional. The log entry format to use for this sink's exported log entries. The v2 format is… 122 …t or group—under which Stackdriver Logging writes the exported log entries to the sink's des… 123 …xport all Compute Engine VM instance log entries from all projects in the sink's parent. To only e… [all …]
|
D | logging_v2.organizations.sinks.html | 79 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 98 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 108 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… 109 …, # Optional. The time at which this sink will stop exporting log entries. Log entries are exporte… 115 …reated, must have permission to write to the destination or else the log entries are not exported.… 116 …"filter": "A String", # Optional. An advanced logs filter. The only exported log entries are those… 118 … # Optional. The time at which this sink will begin exporting log entries. Log entries are exporte… 119 …g", # Optional. The log entry format to use for this sink's exported log entries. The v2 format is… 120 …t or group—under which Stackdriver Logging writes the exported log entries to the sink's des… 132 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… [all …]
|
D | logging_v2.billingAccounts.sinks.html | 79 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 98 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 108 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… 109 …, # Optional. The time at which this sink will stop exporting log entries. Log entries are exporte… 115 …reated, must have permission to write to the destination or else the log entries are not exported.… 116 …"filter": "A String", # Optional. An advanced logs filter. The only exported log entries are those… 118 … # Optional. The time at which this sink will begin exporting log entries. Log entries are exporte… 119 …g", # Optional. The log entry format to use for this sink's exported log entries. The v2 format is… 120 …t or group—under which Stackdriver Logging writes the exported log entries to the sink's des… 132 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… [all …]
|
D | logging_v2.folders.sinks.html | 79 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 98 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 108 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… 109 …, # Optional. The time at which this sink will stop exporting log entries. Log entries are exporte… 115 …reated, must have permission to write to the destination or else the log entries are not exported.… 116 …"filter": "A String", # Optional. An advanced logs filter. The only exported log entries are those… 118 … # Optional. The time at which this sink will begin exporting log entries. Log entries are exporte… 119 …g", # Optional. The log entry format to use for this sink's exported log entries. The v2 format is… 120 …t or group—under which Stackdriver Logging writes the exported log entries to the sink's des… 132 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… [all …]
|
D | logging_v2.projects.sinks.html | 79 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 98 …entries to a destination. The export of newly-ingested log entries begins immediately, unless the … 108 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… 109 …, # Optional. The time at which this sink will stop exporting log entries. Log entries are exporte… 115 …reated, must have permission to write to the destination or else the log entries are not exported.… 116 …"filter": "A String", # Optional. An advanced logs filter. The only exported log entries are those… 118 … # Optional. The time at which this sink will begin exporting log entries. Log entries are exporte… 119 …g", # Optional. The log entry format to use for this sink's exported log entries. The v2 format is… 120 …t or group—under which Stackdriver Logging writes the exported log entries to the sink's des… 132 …entries to one of the following destinations in any project: a Cloud Storage bucket, a BigQuery da… [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | OpenMapRealVector.java | 40 /** Entries of the vector. */ 41 private final OpenIntToDoubleHashMap entries; field in OpenMapRealVector 77 entries = new OpenIntToDoubleHashMap(0.0); in OpenMapRealVector() 88 entries = new OpenIntToDoubleHashMap(v.entries); in OpenMapRealVector() 95 * @param expectedSize The expected number of non-zero entries 104 * @param expectedSize The expected number of non-zero entries 109 entries = new OpenIntToDoubleHashMap(expectedSize, 0.0); in OpenMapRealVector() 115 * Only non-zero entries will be stored 124 * Only non-zero entries will be stored 130 entries = new OpenIntToDoubleHashMap(0.0); in OpenMapRealVector() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | SortedMapNavigationTester.java | 54 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements( in setUp() local 56 Collections.sort(entries, Helpers.<K, V>entryComparator(navigableMap.comparator())); in setUp() 59 if (entries.size() >= 1) { in setUp() 60 a = entries.get(0); in setUp() 61 if (entries.size() >= 3) { in setUp() 62 c = entries.get(2); in setUp() 116 List<Entry<K, V>> entries = Helpers.copyToList(getSubjectGenerator().getSampleElements( in testHeadMap() local 118 Collections.sort(entries, Helpers.<K, V>entryComparator(navigableMap.comparator())); in testHeadMap() 119 for (int i = 0; i < entries.size(); i++) { in testHeadMap() 120 assertThat(navigableMap.headMap(entries.get(i).getKey()).entrySet()) in testHeadMap() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/ |
D | SwitchStmt.java | 45 * and the contents of the { ... } are the entries. 54 private NodeList<SwitchEntryStmt> entries; field in SwitchStmt 61 public SwitchStmt(final Expression selector, final NodeList<SwitchEntryStmt> entries) { in SwitchStmt() argument 62 this(null, selector, entries); in SwitchStmt() 69 … public SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntryStmt> entries) { in SwitchStmt() argument 72 setEntries(entries); in SwitchStmt() 90 return entries; in getEntries() 103 public SwitchStmt setEntries(final NodeList<SwitchEntryStmt> entries) { in setEntries() argument 104 assertNotNull(entries); in setEntries() 105 if (entries == this.entries) { in setEntries() [all …]
|
/external/mesa3d/src/mapi/ |
D | mapi_abi.py | 39 # number of dynamic entries 137 """Parse a GLAPI XML file for ABI entries.""" 181 entries = entry_dict.values() 182 entries.sort() 184 return entries 217 """Parse a CSV file for ABI entries.""" 251 entries = entry_dict.values() 252 entries.sort() 254 return entries 256 def abi_sanity_check(entries): argument [all …]
|