/third_party/libxml2/result/errors/ |
D | rec_ext_ent.xml.ent | 1 test/errors/rec_ext.ent:1: parser error : Detected an entity reference loop 2 <ent>&e; &e; &e; &e;</ent> 4 test/errors/rec_ext.ent:1: parser error : Detected an entity reference loop 5 <ent>&e; &e; &e; &e;</ent> 7 test/errors/rec_ext.ent:1: parser error : Detected an entity reference loop 8 <ent>&e; &e; &e; &e;</ent> 10 test/errors/rec_ext.ent:1: parser error : Detected an entity reference loop 11 <ent>&e; &e; &e; &e;</ent> 13 test/errors/rec_ext.ent:1: parser error : Detected an entity reference loop 14 <ent>&e; &e; &e; &e;</ent> [all …]
|
/third_party/libuv/src/unix/ |
D | bsd-ifaddrs.c | 38 static int uv__ifaddr_exclude(struct ifaddrs *ent, int exclude_type) { in uv__ifaddr_exclude() argument 39 if (!((ent->ifa_flags & IFF_UP) && (ent->ifa_flags & IFF_RUNNING))) in uv__ifaddr_exclude() 41 if (ent->ifa_addr == NULL) in uv__ifaddr_exclude() 50 return (ent->ifa_addr->sa_family != AF_LINK); in uv__ifaddr_exclude() 58 if (ent->ifa_addr->sa_family == AF_LINK) in uv__ifaddr_exclude() 61 if (ent->ifa_addr->sa_family != PF_INET && in uv__ifaddr_exclude() 62 ent->ifa_addr->sa_family != PF_INET6) in uv__ifaddr_exclude() 70 struct ifaddrs* ent; in uv_interface_addresses() local 83 for (ent = addrs; ent != NULL; ent = ent->ifa_next) { in uv_interface_addresses() 84 if (uv__ifaddr_exclude(ent, UV__EXCLUDE_IFADDR)) in uv_interface_addresses() [all …]
|
D | linux-core.c | 620 static int uv__ifaddr_exclude(struct ifaddrs *ent, int exclude_type) { in uv__ifaddr_exclude() argument 621 if (!((ent->ifa_flags & IFF_UP) && (ent->ifa_flags & IFF_RUNNING))) in uv__ifaddr_exclude() 623 if (ent->ifa_addr == NULL) in uv__ifaddr_exclude() 629 if (ent->ifa_addr->sa_family == PF_PACKET) in uv__ifaddr_exclude() 641 struct ifaddrs *addrs, *ent; in uv_interface_addresses() 653 for (ent = addrs; ent != NULL; ent = ent->ifa_next) { in uv_interface_addresses() 654 if (uv__ifaddr_exclude(ent, UV__EXCLUDE_IFADDR)) in uv_interface_addresses() 674 for (ent = addrs; ent != NULL; ent = ent->ifa_next) { in uv_interface_addresses() 675 if (uv__ifaddr_exclude(ent, UV__EXCLUDE_IFADDR)) in uv_interface_addresses() 678 address->name = uv__strdup(ent->ifa_name); in uv_interface_addresses() [all …]
|
D | sunos.c | 743 struct ifaddrs* ent) { in uv__set_phys_addr() argument 751 sa_addr = (struct sockaddr_dl*)(ent->ifa_addr); in uv__set_phys_addr() 785 static int uv__ifaddr_exclude(struct ifaddrs *ent) { in uv__ifaddr_exclude() argument 786 if (!((ent->ifa_flags & IFF_UP) && (ent->ifa_flags & IFF_RUNNING))) in uv__ifaddr_exclude() 788 if (ent->ifa_addr == NULL) in uv__ifaddr_exclude() 790 if (ent->ifa_addr->sa_family != AF_INET && in uv__ifaddr_exclude() 791 ent->ifa_addr->sa_family != AF_INET6) in uv__ifaddr_exclude() 799 struct ifaddrs* ent; in uv_interface_addresses() local 808 for (ent = addrs; ent != NULL; ent = ent->ifa_next) { in uv_interface_addresses() 809 if (uv__ifaddr_exclude(ent)) in uv_interface_addresses() [all …]
|
/third_party/mesa3d/src/mapi/ |
D | mapi_abi.py | 162 raise Exception('recursive alias %s' % ent.name) 178 ent = ABIEntry(cols, attrs, func) 179 entry_dict[ent.name] = ent 200 ent = entries[i] 201 if not handcode and ent.handcode: 202 handcode = ent.handcode 203 elif ent.handcode != handcode: 205 ent.handcode, handcode) 207 if ent.name in all_names: 208 raise Exception('%s is duplicated' % (ent.name)) [all …]
|
/third_party/nghttp2/src/ |
D | shrpx_dns_tracker.cc | 66 auto ent = ResolverEntry{}; in make_entry() 67 ent.resolv = std::move(resolv); in make_entry() 68 ent.host = std::move(host); in make_entry() 69 ent.status = status; in make_entry() 73 ent.expiry = ev_now(loop_) + dnsconf.timeout.cache; in make_entry() 79 ent.result = *result; in make_entry() 81 return ent; in make_entry() 84 void DNSTracker::update_entry(ResolverEntry &ent, in update_entry() argument 89 ent.resolv = std::move(resolv); in update_entry() 90 ent.status = status; in update_entry() [all …]
|
D | shrpx_downstream_queue.cc | 46 auto &ent = p.second; in ~DownstreamQueue() local 47 dlist_delete_all(ent.blocked); in ~DownstreamQueue() 87 auto &ent = find_host_entry(make_host_key(downstream)); in mark_active() local 88 ++ent.num_active; in mark_active() 94 auto &ent = find_host_entry(make_host_key(downstream)); in mark_blocked() local 100 ent.blocked.append(link); in mark_blocked() 108 auto &ent = (*itr).second; in can_activate() local 109 return ent.num_active < conn_max_per_host_; in can_activate() 113 bool remove_host_entry_if_empty(const DownstreamQueue::HostEntry &ent, in remove_host_entry_if_empty() argument 116 if (ent.blocked.empty() && ent.num_active == 0) { in remove_host_entry_if_empty() [all …]
|
/third_party/e2fsprogs/resize/ |
D | extent.c | 83 struct ext2_extent_entry *ent; in ext2fs_add_extent_entry() local 99 ent = extent->list + curr; in ext2fs_add_extent_entry() 105 ent--; in ext2fs_add_extent_entry() 106 if ((ent->old_loc + ent->size == old_loc) && in ext2fs_add_extent_entry() 107 (ent->new_loc + ent->size == new_loc)) { in ext2fs_add_extent_entry() 108 ent->size++; in ext2fs_add_extent_entry() 114 if (ent->old_loc + ent->size > old_loc) in ext2fs_add_extent_entry() 116 ent++; in ext2fs_add_extent_entry() 118 ent->old_loc = old_loc; in ext2fs_add_extent_entry() 119 ent->new_loc = new_loc; in ext2fs_add_extent_entry() [all …]
|
/third_party/e2fsprogs/util/ |
D | subst.c | 54 struct subst_entry *ent = 0; in add_subst() local 56 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry)); in add_subst() 57 if (!ent) in add_subst() 59 ent->name = (char *) malloc(strlen(name)+1); in add_subst() 60 if (!ent->name) in add_subst() 62 ent->value = (char *) malloc(strlen(value)+1); in add_subst() 63 if (!ent->value) in add_subst() 65 strcpy(ent->name, name); in add_subst() 66 strcpy(ent->value, value); in add_subst() 67 ent->next = subst_table; in add_subst() [all …]
|
/third_party/openssl/crypto/x509/ |
D | by_dir.c | 136 static void by_dir_entry_free(BY_DIR_ENTRY *ent) in by_dir_entry_free() argument 138 OPENSSL_free(ent->dir); in by_dir_entry_free() 139 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free); in by_dir_entry_free() 140 OPENSSL_free(ent); in by_dir_entry_free() 168 BY_DIR_ENTRY *ent; in add_cert_dir() local 176 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j); in add_cert_dir() 177 if (strlen(ent->dir) == len && strncmp(ent->dir, ss, len) == 0) in add_cert_dir() 189 ent = OPENSSL_malloc(sizeof(*ent)); in add_cert_dir() 190 if (ent == NULL) { in add_cert_dir() 194 ent->dir_type = type; in add_cert_dir() [all …]
|
/third_party/glslang/glslang/MachineIndependent/ |
D | iomapper.cpp | 88 TVarEntryInfo ent = {base->getId(), base, ! traverseAll}; in visitSymbol() local 89 ent.stage = intermediate.getStage(); in visitSymbol() 91 …ent.symbol->getName()); // std::lower_bound(target->begin(), target->end(), ent, TVarEntryInfo::TO… in visitSymbol() 92 if (at != target->end() && at->second.id == ent.id) in visitSymbol() 95 (*target)[ent.symbol->getName()] = ent; in visitSymbol() 127 TVarEntryInfo ent = { base->getId() }; in visitSymbol() local 132 if (at->second.id != ent.id) in visitSymbol() 201 TVarEntryInfo& ent = entKey.second; in operator ()() local 202 ent.newLocation = -1; in operator ()() 203 ent.newComponent = -1; in operator ()() [all …]
|
/third_party/e2fsprogs/tests/progs/ |
D | test_rel.c | 94 struct ext2_block_relocate_entry *ent) in display_brel_entry() argument 96 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new, in display_brel_entry() 97 ent->owner.block_ref, ent->offset); in display_brel_entry() 104 struct ext2_inode_relocate_entry *ent, in display_irel_entry() argument 112 ent->new, ent->orig, ent->max_refs); in display_irel_entry() 177 struct ext2_block_relocate_entry ent; in do_brel_put() local 201 ent.new = new; in do_brel_put() 202 ent.offset = (__u16) offset; in do_brel_put() 203 ent.flags = 0; in do_brel_put() 204 ent.owner.block_ref = owner; in do_brel_put() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/ |
D | hasmntopt.c | 30 struct mntent ent; in hasmntopt_0100() local 31 memset(&ent, 0, sizeof(ent)); in hasmntopt_0100() 32 ent.mnt_opts = mnt_opts; in hasmntopt_0100() 33 char *ret = hasmntopt(&ent, "hasmntopt"); in hasmntopt_0100() 45 struct mntent ent; in hasmntopt_0200() local 46 memset(&ent, 0, sizeof(ent)); in hasmntopt_0200() 47 ent.mnt_opts = mnt_opts; in hasmntopt_0200() 48 char *ret = hasmntopt(&ent, "0200"); in hasmntopt_0200()
|
/third_party/nghttp2/tests/ |
D | nghttp2_pq_test.c | 32 nghttp2_pq_entry ent; member 38 string_entry *ent; in string_entry_new() local 42 ent = nghttp2_mem_malloc(mem, sizeof(string_entry)); in string_entry_new() 43 ent->s = s; in string_entry_new() 45 return ent; in string_entry_new() 48 static void string_entry_del(string_entry *ent) { free(ent); } in string_entry_del() argument 62 CU_ASSERT(0 == nghttp2_pq_push(&pq, &string_entry_new("foo")->ent)); in test_nghttp2_pq() 67 CU_ASSERT(0 == nghttp2_pq_push(&pq, &string_entry_new("bar")->ent)); in test_nghttp2_pq() 70 CU_ASSERT(0 == nghttp2_pq_push(&pq, &string_entry_new("baz")->ent)); in test_nghttp2_pq() 73 CU_ASSERT(0 == nghttp2_pq_push(&pq, &string_entry_new("C")->ent)); in test_nghttp2_pq() [all …]
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | irel.h | 36 struct ext2_inode_relocate_entry *ent); 41 struct ext2_inode_relocate_entry *ent); 47 struct ext2_inode_relocate_entry *ent); 59 struct ext2_inode_relocate_entry *ent); 103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent)) argument 104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, ent)) argument 105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \ argument 106 ((irel)->get_by_orig((irel), orig, old, ent)) 108 #define ext2fs_irel_next(irel, old, ent) ((irel)->next((irel), old, ent)) argument
|
D | brel.h | 38 struct ext2_block_relocate_entry *ent); 44 struct ext2_block_relocate_entry *ent); 56 struct ext2_block_relocate_entry *ent); 79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent)) argument 80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent)) argument 82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent)) argument
|
D | irel_ma.c | 28 struct ext2_inode_relocate_entry *ent); 30 struct ext2_inode_relocate_entry *ent); 32 struct ext2_inode_relocate_entry *ent); 35 struct ext2_inode_relocate_entry *ent); 141 struct ext2_inode_relocate_entry *ent) 157 ent->orig = old; 159 ent->orig = ma->entries[(unsigned) old].orig; 165 if (ref_ent->refs && ent->max_refs != 167 size = (sizeof(struct ext2_inode_reference) * ent->max_refs); 175 ma->entries[(unsigned) old] = *ent; [all …]
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | entities.c | 944 xmlEntityPtr ent = (xmlEntityPtr) payload; in xmlCopyEntity() local 955 cur->etype = ent->etype; in xmlCopyEntity() 956 if (ent->name != NULL) in xmlCopyEntity() 957 cur->name = xmlStrdup(ent->name); in xmlCopyEntity() 958 if (ent->ExternalID != NULL) in xmlCopyEntity() 959 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity() 960 if (ent->SystemID != NULL) in xmlCopyEntity() 961 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity() 962 if (ent->content != NULL) in xmlCopyEntity() 963 cur->content = xmlStrdup(ent->content); in xmlCopyEntity() [all …]
|
/third_party/libxml2/ |
D | entities.c | 944 xmlEntityPtr ent = (xmlEntityPtr) payload; in xmlCopyEntity() local 955 cur->etype = ent->etype; in xmlCopyEntity() 956 if (ent->name != NULL) in xmlCopyEntity() 957 cur->name = xmlStrdup(ent->name); in xmlCopyEntity() 958 if (ent->ExternalID != NULL) in xmlCopyEntity() 959 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity() 960 if (ent->SystemID != NULL) in xmlCopyEntity() 961 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity() 962 if (ent->content != NULL) in xmlCopyEntity() 963 cur->content = xmlStrdup(ent->content); in xmlCopyEntity() [all …]
|
/third_party/libxml2/result/ |
D | att11.sax | 7 SAX.entityDecl(ent, 1, (null), (null), entity&recursive; ) 8 SAX.getEntity(ent) 12 SAX.getEntity(ent) 14 SAX.getEntity(ent) 15 SAX.getEntity(ent) 16 SAX.startElement(attributes, nmtoken=' &ent; &ent; &ent; ', nmtokens=' Test
|
D | att11.sax2 | 7 SAX.entityDecl(ent, 1, (null), (null), entity&recursive; ) 8 SAX.getEntity(ent) 12 SAX.getEntity(ent) 14 SAX.getEntity(ent) 15 SAX.getEntity(ent) 16 SAX.startElementNs(attributes, NULL, NULL, 0, 2, 0, nmtoken='&ent...', 17, nmtokens='Test...', 25)
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
D | gl_apitemp.py | 231 normal_ents = [f.static_name(ent) for ent in normal_ents] 232 proto_ents = [f.static_name(ent) for ent in proto_ents] 238 for ent in normal_entries: 239 print(' TABLE_ENTRY(%s),' % (ent)) 242 for ent in proto_entries: 243 print(' TABLE_ENTRY(%s),' % (ent)) 288 for ent in ents: 289 self.printFunction(func, ent) 297 for ent in ents: 298 self.printFunction(func, ent)
|
/third_party/e2fsprogs/debugfs/ |
D | xattrs.c | 412 struct ext2_ext_attr_entry ent; in dump_xattr_raw_entries() local 428 ext2fs_swap_ext_attr_entry(&ent, in dump_xattr_raw_entries() 431 ent = *((struct ext2_ext_attr_entry *) (buf + off)); in dump_xattr_raw_entries() 435 off, off, ent.e_name_len, ent.e_name_index); in dump_xattr_raw_entries() 436 vstart = value_start + ent.e_value_offs; in dump_xattr_raw_entries() 438 "value_size = %u\n", ent.e_value_offs, in dump_xattr_raw_entries() 439 vstart, ent.e_value_inum, ent.e_value_size); in dump_xattr_raw_entries() 442 if ((off + ent.e_name_len) >= len) in dump_xattr_raw_entries() 445 safe_print(f, (char *)(buf + off), ent.e_name_len); in dump_xattr_raw_entries() 447 if (ent.e_value_size == 0) in dump_xattr_raw_entries() [all …]
|
/third_party/boost/boost/multi_index/detail/ |
D | index_matcher.hpp | 131 entry* ent= in add_node_to_algorithm() local 135 ent->ordered=false; in add_node_to_algorithm() 136 std::size_t n=ent->pos; /* get its position */ in add_node_to_algorithm() 147 pile_ent->pile_top_entry=ent; in add_node_to_algorithm() 151 ent->previous=(pile_ent-1)->pile_top_entry; in add_node_to_algorithm() 167 entry* ent=entries()[num_piles-1].pile_top_entry; in finish_algorithm() local 169 ent->ordered=true; in finish_algorithm() 170 ent=ent->previous; in finish_algorithm()
|
/third_party/e2fsprogs/e2fsck/ |
D | rehash.c | 128 struct hash_entry *ent; in fill_dir_block() local 210 ent = fd->harray + fd->num_array++; in fill_dir_block() 211 ent->dir = dirent; in fill_dir_block() 213 ent->ino = dirent->inode; in fill_dir_block() 215 ent->hash = EXT2_DIRENT_HASH(dirent); in fill_dir_block() 216 ent->minor_hash = EXT2_DIRENT_MINOR_HASH(dirent); in fill_dir_block() 218 ent->hash = ent->minor_hash = 0; in fill_dir_block() 224 &ent->hash, &ent->minor_hash); in fill_dir_block() 459 struct hash_entry *ent, *prev; in duplicate_search_and_fix() local 476 ent = fd->harray + i; in duplicate_search_and_fix() [all …]
|