HomeSort by relevance Sort by last modified time
    Searched refs:ent (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/libusb-compat/libusb/
usbi.h 25 #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->prev->next = ent->next;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 40 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->file = internal_strdup(info.file)
    [all...]
tsan_report.cc 94 void PrintStack(const ReportStack *ent) {
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->col)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
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))
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))
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))
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...]
brel_ma.c 30 struct ext2_block_relocate_entry *ent);
32 struct ext2_block_relocate_entry *ent);
35 struct ext2_block_relocate_entry *ent);
105 struct ext2_block_relocate_entry *ent)
112 ma->entries[(unsigned)old] = *ent;
117 struct ext2_block_relocate_entry *ent)
126 *ent = ma->entries[old];
137 struct ext2_block_relocate_entry *ent)
146 *ent = ma->entries[(unsigned)brel->current];
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/webrtc/base/
linuxfdwalk.c 45 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/boringssl/src/crypto/x509/
by_dir.c 179 static void by_dir_entry_free(BY_DIR_ENTRY *ent)
181 if (ent->dir)
182 OPENSSL_free(ent->dir);
183 if (ent->hashes)
184 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
185 OPENSSL_free(ent);
217 BY_DIR_ENTRY *ent; local
224 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
225 if (strlen(ent->dir) == (size_t)len &&
226 strncmp(ent->dir,ss,(unsigned int)len) == 0
324 BY_DIR_ENTRY *ent; local
    [all...]
  /external/openssl/crypto/x509/
by_dir.c 187 static void by_dir_entry_free(BY_DIR_ENTRY *ent)
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->dir,ss,(unsigned int)len) == 0
326 BY_DIR_ENTRY *ent; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
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
    [all...]
  /external/mesa3d/src/mapi/mapi/
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
    [all...]
  /external/e2fsprogs/util/
subst.c 37 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->next = subst_table
63 struct subst_entry *ent; local
121 struct subst_entry *ent; local
    [all...]
  /external/e2fsprogs/resize/
extent.c 82 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->size > old_loc
199 struct ext2_extent_entry *ent; local
216 struct ext2_extent_entry *ent; local
    [all...]
  /external/e2fsprogs/tests/progs/
test_rel.c 93 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.new = new
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/
op_file.c 89 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,
    [all...]
  /device/samsung/manta/libsensors/
SensorBase.cpp 109 const struct dirent *ent; local
124 while (ent = readdir(dp), ent != NULL) {
125 if (strcmp(ent->d_name, ".") != 0 &&
126 strcmp(ent->d_name, "..") != 0 &&
127 strlen(ent->d_name) > strlen(type) &&
128 strncmp(ent->d_name, type, strlen(type)) == 0) {
129 if (sscanf(ent->d_name + strlen(type), "%d", &iio_id) != 1)
  /external/chromium_org/sync/test/engine/
mock_connection_manager.cc 255 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 = GetUpdateResponse()->add_entries() 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/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
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)
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
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)
    [all...]
  /external/chromium_org/third_party/libxml/src/
entities.c 820 * @ent: An entity
827 xmlCopyEntity(xmlEntityPtr ent) {
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->content != NULL
    [all...]
  /external/libxml2/
entities.c 903 * @ent: An entity
910 xmlCopyEntity(xmlEntityPtr ent) {
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->content != NULL
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 48 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);
  /external/openssl/crypto/
alphacpuid.pl 8 .ent OPENSSL_cpuid_setup
16 .ent OPENSSL_wipe_cpu
69 .ent OPENSSL_atomic_add
82 .ent OPENSSL_rdtsc
91 .ent OPENSSL_cleanse
  /external/e2fsprogs/e2fsck/
rehash.c 88 struct hash_entry *new_array, *ent; local
149 ent = fd->harray + fd->num_array++;
150 ent->dir = dirent;
152 ent->ino = dirent->inode;
154 ent->hash = ent->minor_hash = 0;
159 &ent->hash, &ent->minor_hash);
335 struct hash_entry *ent, *prev; local
351 ent = fd->harray + i
404 struct hash_entry *ent; local
    [all...]

Completed in 958 milliseconds

1 2 3 4 5 6