/external/mesa3d/src/mapi/mapi/ |
D | mapi_abi.py | 162 raise Exception('recursive alias %s' % ent.name) 178 ent = ABIEntry(cols, attrs) 179 entry_dict[ent.name] = ent 234 raise Exception('recursive alias %s' % ent.name) 246 ent = ABIEntry(cols, attrs) 247 if entry_dict.has_key(ent.name): 248 raise Exception('%s is duplicated' % (ent.name)) 249 entry_dict[ent.name] = ent 271 ent = entries[i] 272 if not handcode and ent.handcode: [all …]
|
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
D | mapi_abi.py | 162 raise Exception('recursive alias %s' % ent.name) 178 ent = ABIEntry(cols, attrs) 179 entry_dict[ent.name] = ent 234 raise Exception('recursive alias %s' % ent.name) 246 ent = ABIEntry(cols, attrs) 247 if entry_dict.has_key(ent.name): 248 raise Exception('%s is duplicated' % (ent.name)) 249 entry_dict[ent.name] = ent 271 ent = entries[i] 272 if not handcode and ent.handcode: [all …]
|
/external/libusb-compat/libusb/ |
D | usbi.h | 25 #define LIST_ADD(begin, ent) \ argument 28 ent->next = begin; \ 29 ent->next->prev = ent; \ 31 ent->next = NULL; \ 32 ent->prev = NULL; \ 33 begin = ent; \ 36 #define LIST_DEL(begin, ent) \ argument 38 if (ent->prev) \ 39 ent->prev->next = ent->next; \ 41 begin = ent->next; \ [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_symbolize.cc | 40 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, in NewReportStackEntry() local 42 internal_memset(ent, 0, sizeof(*ent)); in NewReportStackEntry() 43 ent->pc = addr; in NewReportStackEntry() 44 return ent; in NewReportStackEntry() 60 ReportStack *ent = NewReportStackEntry(info.address); in NewReportStackEntry() local 61 ent->module = StripModuleName(info.module); in NewReportStackEntry() 62 ent->offset = info.module_offset; in NewReportStackEntry() 64 ent->func = internal_strdup(info.function); in NewReportStackEntry() 66 ent->file = internal_strdup(info.file); in NewReportStackEntry() 67 ent->line = info.line; in NewReportStackEntry() [all …]
|
D | tsan_report.cc | 65 void PrintStack(const ReportStack *ent) { in PrintStack() argument 66 if (ent == 0) { in PrintStack() 70 for (int i = 0; ent; ent = ent->next, i++) { in PrintStack() 71 Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line); in PrintStack() 72 if (ent->col) in PrintStack() 73 Printf(":%d", ent->col); in PrintStack() 74 if (ent->module && ent->offset) in PrintStack() 75 Printf(" (%s+%p)\n", ent->module, (void*)ent->offset); in PrintStack() 77 Printf(" (%p)\n", (void*)ent->pc); in PrintStack() 173 ReportStack *SkipTsanInternalFrames(ReportStack *ent) { in SkipTsanInternalFrames() argument [all …]
|
/external/e2fsprogs/util/ |
D | subst.c | 37 struct subst_entry *ent = 0; in add_subst() local 41 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry)); in add_subst() 42 if (!ent) in add_subst() 44 ent->name = (char *) malloc(strlen(name)+1); in add_subst() 45 if (!ent->name) in add_subst() 47 ent->value = (char *) malloc(strlen(value)+1); in add_subst() 48 if (!ent->value) in add_subst() 50 strcpy(ent->name, name); in add_subst() 51 strcpy(ent->value, value); in add_subst() 52 ent->next = subst_table; in add_subst() [all …]
|
/external/e2fsprogs/resize/ |
D | extent.c | 82 struct ext2_extent_entry *ent; in ext2fs_add_extent_entry() local 98 ent = extent->list + curr; in ext2fs_add_extent_entry() 104 ent--; in ext2fs_add_extent_entry() 105 if ((ent->old_loc + ent->size == old_loc) && in ext2fs_add_extent_entry() 106 (ent->new_loc + ent->size == new_loc)) { in ext2fs_add_extent_entry() 107 ent->size++; in ext2fs_add_extent_entry() 113 if (ent->old_loc + ent->size > old_loc) in ext2fs_add_extent_entry() 115 ent++; in ext2fs_add_extent_entry() 117 ent->old_loc = old_loc; in ext2fs_add_extent_entry() 118 ent->new_loc = new_loc; in ext2fs_add_extent_entry() [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509/ |
D | by_dir.c | 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) in by_dir_entry_free() argument 189 if (ent->dir) in by_dir_entry_free() 190 OPENSSL_free(ent->dir); in by_dir_entry_free() 191 if (ent->hashes) in by_dir_entry_free() 192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free); in by_dir_entry_free() 193 OPENSSL_free(ent); in by_dir_entry_free() 225 BY_DIR_ENTRY *ent; in add_cert_dir() local 232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j); in add_cert_dir() 233 if (strlen(ent->dir) == (size_t)len && in add_cert_dir() 234 strncmp(ent->dir,ss,(unsigned int)len) == 0) in add_cert_dir() [all …]
|
/external/openssl/crypto/x509/ |
D | by_dir.c | 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) in by_dir_entry_free() argument 189 if (ent->dir) in by_dir_entry_free() 190 OPENSSL_free(ent->dir); in by_dir_entry_free() 191 if (ent->hashes) in by_dir_entry_free() 192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free); in by_dir_entry_free() 193 OPENSSL_free(ent); in by_dir_entry_free() 225 BY_DIR_ENTRY *ent; in add_cert_dir() local 232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j); in add_cert_dir() 233 if (strlen(ent->dir) == (size_t)len && in add_cert_dir() 234 strncmp(ent->dir,ss,(unsigned int)len) == 0) in add_cert_dir() [all …]
|
/external/openssh/ |
D | auth-sia.c | 56 SIAENTITY *ent = NULL; in sys_auth_passwd() local 64 if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user, in sys_auth_passwd() 68 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) { in sys_auth_passwd() 72 sia_ses_release(&ent); in sys_auth_passwd() 77 sia_ses_release(&ent); in sys_auth_passwd() 85 SIAENTITY *ent = NULL; in session_setup_sia() local 90 if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name, in session_setup_sia() 94 if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) { in session_setup_sia() 95 sia_ses_release(&ent); in session_setup_sia() 99 ent->authtype = SIA_A_NONE; in session_setup_sia() [all …]
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | nethelpers.cc | 70 hostent* ent = gethostbyname(hostname); in SafeGetHostByName() local 71 if (!ent) { in SafeGetHostByName() 79 total_len += strlen(ent->h_name) + 1; in SafeGetHostByName() 80 while (ent->h_aliases[num_aliases]) { in SafeGetHostByName() 81 total_len += sizeof(char*) + strlen(ent->h_aliases[num_aliases]) + 1; in SafeGetHostByName() 85 while (ent->h_addr_list[num_addrs]) { in SafeGetHostByName() 86 total_len += sizeof(char*) + ent->h_length; in SafeGetHostByName() 99 memcpy(p, ent->h_name, strlen(ent->h_name) + 1); in SafeGetHostByName() 100 p += strlen(ent->h_name) + 1; in SafeGetHostByName() 106 memcpy(p, ent->h_aliases[i], strlen(ent->h_aliases[i]) + 1); in SafeGetHostByName() [all …]
|
/external/chromium_org/sync/test/engine/ |
D | mock_connection_manager.cc | 255 sync_pb::SyncEntity* ent = AddUpdateMeta( in AddUpdateSpecifics() local 259 ent->set_position_in_parent(position); in AddUpdateSpecifics() 260 ent->mutable_specifics()->CopyFrom(specifics); in AddUpdateSpecifics() 261 ent->set_folder(is_dir); in AddUpdateSpecifics() 262 return ent; in AddUpdateSpecifics() 276 sync_pb::SyncEntity* ent = AddUpdateSpecifics( in AddUpdateSpecifics() local 278 ent->set_originator_cache_guid(originator_cache_guid); in AddUpdateSpecifics() 279 ent->set_originator_client_item_id(originator_client_item_id); in AddUpdateSpecifics() 280 return ent; in AddUpdateSpecifics() 288 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); in SetNigori() local [all …]
|
/external/e2fsprogs/tests/progs/ |
D | test_rel.c | 93 struct ext2_block_relocate_entry *ent) in display_brel_entry() argument 95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new, in display_brel_entry() 96 ent->owner.block_ref, ent->offset); in display_brel_entry() 103 struct ext2_inode_relocate_entry *ent, in display_irel_entry() argument 111 ent->new, ent->orig, ent->max_refs); in display_irel_entry() 176 struct ext2_block_relocate_entry ent; in do_brel_put() local 200 ent.new = new; in do_brel_put() 201 ent.offset = (__u16) offset; in do_brel_put() 202 ent.flags = 0; in do_brel_put() 203 ent.owner.block_ref = owner; in do_brel_put() [all …]
|
/external/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 | 27 struct ext2_inode_relocate_entry *ent); 29 struct ext2_inode_relocate_entry *ent); 31 struct ext2_inode_relocate_entry *ent); 34 struct ext2_inode_relocate_entry *ent); 140 struct ext2_inode_relocate_entry *ent) 156 ent->orig = old; 158 ent->orig = ma->entries[(unsigned) old].orig; 164 if (ref_ent->refs && ent->max_refs != 166 size = (sizeof(struct ext2_inode_reference) * ent->max_refs); 174 ma->entries[(unsigned) old] = *ent; [all …]
|
/external/chromium_org/third_party/libxml/src/ |
D | entities.c | 827 xmlCopyEntity(xmlEntityPtr ent) { in xmlCopyEntity() argument 838 cur->etype = ent->etype; in xmlCopyEntity() 839 if (ent->name != NULL) in xmlCopyEntity() 840 cur->name = xmlStrdup(ent->name); in xmlCopyEntity() 841 if (ent->ExternalID != NULL) in xmlCopyEntity() 842 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity() 843 if (ent->SystemID != NULL) in xmlCopyEntity() 844 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity() 845 if (ent->content != NULL) in xmlCopyEntity() 846 cur->content = xmlStrdup(ent->content); in xmlCopyEntity() [all …]
|
/external/libxml2/ |
D | entities.c | 827 xmlCopyEntity(xmlEntityPtr ent) { in xmlCopyEntity() argument 838 cur->etype = ent->etype; in xmlCopyEntity() 839 if (ent->name != NULL) in xmlCopyEntity() 840 cur->name = xmlStrdup(ent->name); in xmlCopyEntity() 841 if (ent->ExternalID != NULL) in xmlCopyEntity() 842 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity() 843 if (ent->SystemID != NULL) in xmlCopyEntity() 844 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity() 845 if (ent->content != NULL) in xmlCopyEntity() 846 cur->content = xmlStrdup(ent->content); in xmlCopyEntity() [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | tailcall.ll | 75 ; PIC32: .ent caller5 78 ; STATIC32: .ent caller5 81 ; N64: .ent caller5 84 ; PIC16: .ent caller5 126 ; PIC32: .ent caller8_1 129 ; STATIC32: .ent caller8_1 132 ; N64: .ent caller8_1 135 ; PIC16: .ent caller8_1 157 ; PIC32: .ent caller9_1 160 ; STATIC32: .ent caller9_1 [all …]
|
/external/oprofile/libutil/ |
D | op_file.c | 89 struct dirent * ent, in make_pathname_from_dirent() argument 94 name_len = strlen(basedir) + strlen("/") + strlen(ent->d_name) + 1; in make_pathname_from_dirent() 96 sprintf(name, "%s/%s", basedir, ent->d_name); in make_pathname_from_dirent() 134 struct dirent * ent; in get_matching_pathnames() local 141 while ((ent = readdir(dir)) != 0) { in get_matching_pathnames() 142 if (is_dot_or_dotdot(ent->d_name)) in get_matching_pathnames() 144 if (fnmatch(filter, ent->d_name, 0) == 0) in get_matching_pathnames() 155 getpathname(ent->d_name, name_list); in get_matching_pathnames() 158 name = make_pathname_from_dirent(base_dir, ent, in get_matching_pathnames() 173 name = make_pathname_from_dirent(base_dir, ent, in get_matching_pathnames()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | tytypes.c | 219 TyEnt* ent = ML_(TyEnts__index_by_cuOff)( tyents, NULL, cuOff ); in pp_TyBound_C_ishly() local 220 if (!ent) { in pp_TyBound_C_ishly() 224 vg_assert(ent->tag == Te_Bound); in pp_TyBound_C_ishly() 225 if (ent->Te.Bound.knownL && ent->Te.Bound.knownU in pp_TyBound_C_ishly() 226 && ent->Te.Bound.boundL == 0) { in pp_TyBound_C_ishly() 227 VG_(printf)("[%lld]", 1 + ent->Te.Bound.boundU); in pp_TyBound_C_ishly() 230 if (ent->Te.Bound.knownL && (!ent->Te.Bound.knownU) in pp_TyBound_C_ishly() 231 && ent->Te.Bound.boundL == 0) { in pp_TyBound_C_ishly() 235 ML_(pp_TyEnt)( ent ); in pp_TyBound_C_ishly() 241 TyEnt* ent = ML_(TyEnts__index_by_cuOff)( tyents, NULL, cuOff ); in ML_() local [all …]
|
/external/valgrind/main/none/tests/x86-linux/ |
D | seg_override.c | 37 inline static void *wine_ldt_get_base( const LDT_ENTRY *ent ) in wine_ldt_get_base() argument 39 return (void *)(ent->BaseLow | in wine_ldt_get_base() 40 (unsigned long)ent->HighWord.Bits.BaseMid << 16 | in wine_ldt_get_base() 41 (unsigned long)ent->HighWord.Bits.BaseHi << 24); in wine_ldt_get_base() 43 inline static unsigned int wine_ldt_get_limit( const LDT_ENTRY *ent ) in wine_ldt_get_limit() argument 45 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16); in wine_ldt_get_limit() 46 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff; in wine_ldt_get_limit()
|
/external/e2fsprogs/e2fsck/ |
D | rehash.c | 88 struct hash_entry *new_array, *ent; in fill_dir_block() local 149 ent = fd->harray + fd->num_array++; in fill_dir_block() 150 ent->dir = dirent; in fill_dir_block() 152 ent->ino = dirent->inode; in fill_dir_block() 154 ent->hash = ent->minor_hash = 0; in fill_dir_block() 159 &ent->hash, &ent->minor_hash); in fill_dir_block() 335 struct hash_entry *ent, *prev; in duplicate_search_and_fix() local 351 ent = fd->harray + i; in duplicate_search_and_fix() 352 prev = ent - 1; in duplicate_search_and_fix() 353 if (!ent->dir->inode || in duplicate_search_and_fix() [all …]
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_apitemp.py | 227 normal_ents = [f.static_name(ent) for ent in normal_ents] 228 proto_ents = [f.static_name(ent) for ent in proto_ents] 234 for ent in normal_entries: 235 print ' TABLE_ENTRY(%s),' % (ent) 238 for ent in proto_entries: 239 print ' TABLE_ENTRY(%s),' % (ent) 284 for ent in ents: 285 self.printFunction(func, ent) 293 for ent in ents: 294 self.printFunction(func, ent)
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
D | gl_apitemp.py | 227 normal_ents = [f.static_name(ent) for ent in normal_ents] 228 proto_ents = [f.static_name(ent) for ent in proto_ents] 234 for ent in normal_entries: 235 print ' TABLE_ENTRY(%s),' % (ent) 238 for ent in proto_entries: 239 print ' TABLE_ENTRY(%s),' % (ent) 284 for ent in ents: 285 self.printFunction(func, ent) 293 for ent in ents: 294 self.printFunction(func, ent)
|