Searched refs:ent (Results 1 - 25 of 177) sorted by relevance

12345678

/external/libusb-compat/libusb/
H A Dusbi.h25 #define LIST_ADD(begin, ent) \
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) \
38 if (ent->prev) \
39 ent
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc40 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local
42 internal_memset(ent, 0, sizeof(*ent));
43 ent->pc = addr;
44 return ent;
48 ReportStack *ent = NewReportStackEntry(info.address); local
49 ent->module = StripModuleName(info.module);
50 ent->offset = info.module_offset;
52 ent->func = internal_strdup(info.function);
54 ent
[all...]
H A Dtsan_report.cc94 void PrintStack(const ReportStack *ent) { argument
95 if (ent == 0) {
99 for (int i = 0; ent; ent = ent->next, i++) {
100 Printf(" #%d %s %s:%d", i, ent->func, ent->file, ent->line);
101 if (ent->col)
102 Printf(":%d", ent
233 SkipTsanInternalFrames(ReportStack *ent) argument
316 PrintStack(const ReportStack *ent) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dlinuxfdwalk.c62 struct dirent *ent; local
64 while (errno = 0, (ent = readdir(dir)) != NULL) {
65 if (strcmp(ent->d_name, ".") == 0 ||
66 strcmp(ent->d_name, "..") == 0) {
72 int fd = parse_fd(ent->d_name);
/external/chromium_org/third_party/webrtc/base/
H A Dlinuxfdwalk.c45 struct dirent *ent; local
47 while (errno = 0, (ent = readdir(dir)) != NULL) {
48 if (strcmp(ent->d_name, ".") == 0 ||
49 strcmp(ent->d_name, "..") == 0) {
55 int fd = parse_fd(ent->d_name);
/external/chromium_org/third_party/openssl/openssl/crypto/x509/
H A Dby_dir.c187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) argument
189 if (ent->dir)
190 OPENSSL_free(ent->dir);
191 if (ent->hashes)
192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
193 OPENSSL_free(ent);
225 BY_DIR_ENTRY *ent; local
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
233 if (strlen(ent->dir) == (size_t)len &&
234 strncmp(ent
334 BY_DIR_ENTRY *ent; local
[all...]
/external/openssl/crypto/x509/
H A Dby_dir.c187 static void by_dir_entry_free(BY_DIR_ENTRY *ent) argument
189 if (ent->dir)
190 OPENSSL_free(ent->dir);
191 if (ent->hashes)
192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
193 OPENSSL_free(ent);
225 BY_DIR_ENTRY *ent; local
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
233 if (strlen(ent->dir) == (size_t)len &&
234 strncmp(ent
326 BY_DIR_ENTRY *ent; local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h38 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))
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
H A Direl.h36 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))
104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, ent))
105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \
106 ((irel)->get_by_orig((irel), orig, old, ent))
[all...]
H A Direl_ma.c27 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/mesa/src/src/mapi/mapi/
H A Dmapi_abi.py162 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
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dmapi_abi.py162 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
[all...]
/external/e2fsprogs/util/
H A Dsubst.c37 struct subst_entry *ent = 0; local
39 ent = (struct subst_entry *) malloc(sizeof(struct subst_entry));
40 if (!ent)
42 ent->name = (char *) malloc(strlen(name)+1);
43 if (!ent->name)
45 ent->value = (char *) malloc(strlen(value)+1);
46 if (!ent->value)
48 strcpy(ent->name, name);
49 strcpy(ent->value, value);
50 ent
63 struct subst_entry *ent; local
121 struct subst_entry *ent; local
[all...]
/external/e2fsprogs/resize/
H A Dextent.c82 struct ext2_extent_entry *ent; local
98 ent = extent->list + curr;
104 ent--;
105 if ((ent->old_loc + ent->size == old_loc) &&
106 (ent->new_loc + ent->size == new_loc)) {
107 ent->size++;
113 if (ent->old_loc + ent
199 struct ext2_extent_entry *ent; local
216 struct ext2_extent_entry *ent; local
[all...]
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.c37 inline static void *wine_ldt_get_base( const LDT_ENTRY *ent )
39 return (void *)(ent->BaseLow |
40 (unsigned long)ent->HighWord.Bits.BaseMid << 16 |
41 (unsigned long)ent->HighWord.Bits.BaseHi << 24);
43 inline static unsigned int wine_ldt_get_limit( const LDT_ENTRY *ent )
45 unsigned int limit = ent->LimitLow | (ent->HighWord.Bits.LimitHi << 16);
46 if (ent->HighWord.Bits.Granularity) limit = (limit << 12) | 0xfff;
/external/e2fsprogs/tests/progs/
H A Dtest_rel.c93 struct ext2_block_relocate_entry *ent)
95 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
96 ent->owner.block_ref, ent->offset);
103 struct ext2_inode_relocate_entry *ent,
111 ent->new, ent->orig, ent->max_refs);
176 struct ext2_block_relocate_entry ent; local
200 ent
92 display_brel_entry(blk_t old, struct ext2_block_relocate_entry *ent) argument
102 display_irel_entry(ext2_ino_t old, struct ext2_inode_relocate_entry *ent, int do_refs) argument
217 struct ext2_block_relocate_entry ent; local
255 struct ext2_block_relocate_entry ent; local
277 struct ext2_block_relocate_entry ent; local
385 struct ext2_inode_relocate_entry ent; local
421 struct ext2_inode_relocate_entry ent; local
447 struct ext2_inode_relocate_entry ent; local
487 struct ext2_inode_relocate_entry ent; local
509 struct ext2_inode_relocate_entry ent; local
[all...]
/external/oprofile/libutil/
H A Dop_file.c89 struct dirent * ent,
94 name_len = strlen(basedir) + strlen("/") + strlen(ent->d_name) + 1;
96 sprintf(name, "%s/%s", basedir, ent->d_name);
134 struct dirent * ent; local
141 while ((ent = readdir(dir)) != 0) {
142 if (is_dot_or_dotdot(ent->d_name))
144 if (fnmatch(filter, ent->d_name, 0) == 0)
155 getpathname(ent->d_name, name_list);
158 name = make_pathname_from_dirent(base_dir, ent,
173 name = make_pathname_from_dirent(base_dir, ent,
88 make_pathname_from_dirent(char const * basedir, struct dirent * ent, struct stat * st_buf) argument
[all...]
/external/chromium_org/sync/test/engine/
H A Dmock_connection_manager.cc255 sync_pb::SyncEntity* ent = AddUpdateMeta( local
259 ent->set_position_in_parent(position);
260 ent->mutable_specifics()->CopyFrom(specifics);
261 ent->set_folder(is_dir);
262 return ent;
276 sync_pb::SyncEntity* ent = AddUpdateSpecifics( local
278 ent->set_originator_cache_guid(originator_cache_guid);
279 ent->set_originator_client_item_id(originator_client_item_id);
280 return ent;
288 sync_pb::SyncEntity* ent local
309 sync_pb::SyncEntity* ent = local
325 sync_pb::SyncEntity* ent = local
335 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local
400 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local
430 sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries(); local
[all...]
/external/tagsoup/templates/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java294 int ent = h.getEntity();
295 // System.err.println("%% value = " + ent);
296 if (ent != 0) {
298 if (ent >= 0x80 && ent <= 0x9F) {
299 ent = theWinMap[ent-0x80];
301 if (ent < 0x20) {
303 ent = 0x20;
305 else if (ent >
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dgl_apitemp.py227 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)
[all...]
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_apitemp.py227 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)
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dentities.c820 * @ent: An entity
827 xmlCopyEntity(xmlEntityPtr ent) { argument
838 cur->etype = ent->etype;
839 if (ent->name != NULL)
840 cur->name = xmlStrdup(ent->name);
841 if (ent->ExternalID != NULL)
842 cur->ExternalID = xmlStrdup(ent->ExternalID);
843 if (ent->SystemID != NULL)
844 cur->SystemID = xmlStrdup(ent->SystemID);
845 if (ent
919 xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) argument
1005 xmlDumpEntityDeclScan(xmlEntityPtr ent, xmlBufferPtr buf) argument
[all...]
/external/libxml2/
H A Dentities.c903 * @ent: An entity
910 xmlCopyEntity(xmlEntityPtr ent) { argument
921 cur->etype = ent->etype;
922 if (ent->name != NULL)
923 cur->name = xmlStrdup(ent->name);
924 if (ent->ExternalID != NULL)
925 cur->ExternalID = xmlStrdup(ent->ExternalID);
926 if (ent->SystemID != NULL)
927 cur->SystemID = xmlStrdup(ent->SystemID);
928 if (ent
1002 xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) argument
1088 xmlDumpEntityDeclScan(xmlEntityPtr ent, xmlBufferPtr buf) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Dalphacpuid.pl8 .ent OPENSSL_cpuid_setup
16 .ent OPENSSL_wipe_cpu
69 .ent OPENSSL_atomic_add
82 .ent OPENSSL_rdtsc
91 .ent OPENSSL_cleanse
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dpscap.c48 struct dirent *ent; local
68 while (( ent = readdir(d) )) {
76 if(*ent->d_name<'0' || *ent->d_name>'9')
79 pid = strtol(ent->d_name, NULL, 10);

Completed in 699 milliseconds

12345678