Searched refs:ent (Results 26 - 50 of 177) sorted by relevance

12345678

/external/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/valgrind/main/coregrind/m_debuginfo/
H A Dtytypes.c219 TyEnt* ent = ML_(TyEnts__index_by_cuOff)( tyents, NULL, cuOff ); local
220 if (!ent) {
224 vg_assert(ent->tag == Te_Bound);
225 if (ent->Te.Bound.knownL && ent->Te.Bound.knownU
226 && ent->Te.Bound.boundL == 0) {
227 VG_(printf)("[%lld]", 1 + ent->Te.Bound.boundU);
230 if (ent->Te.Bound.knownL && (!ent->Te.Bound.knownU)
231 && ent
241 TyEnt* ent = ML_(TyEnts__index_by_cuOff)( tyents, NULL, cuOff ); local
674 TyEnt* ent = ML_(TyEnts__index_by_cuOff)(tyents, NULL, cuOff); local
[all...]
/external/e2fsprogs/e2fsck/
H A Drehash.c88 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
404 struct hash_entry *ent; local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbrel_ma.c30 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];
104 bma_put(ext2_brel brel, blk64_t old, struct ext2_block_relocate_entry *ent) argument
116 bma_get(ext2_brel brel, blk64_t old, struct ext2_block_relocate_entry *ent) argument
136 bma_next(ext2_brel brel, blk64_t *old, struct ext2_block_relocate_entry *ent) argument
/external/libxml2/
H A Dsave.h27 void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
/external/llvm/test/MC/Mips/
H A Dsym-expr.s7 .ent __start
H A Dmips_gprel16.s23 .ent testvar1
47 .ent testvar2
H A Dmicromips-el-fixup-data.s14 .ent main
H A Delf-tls.s22 .ent f1
54 .ent f2
86 .ent f3
H A Delf-N64.s24 .ent main
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java515 int ent = h.getEntity();
516 // System.err.println("%% value = " + ent);
517 if (ent != 0) {
519 if (ent >= 0x80 && ent <= 0x9F) {
520 ent = theWinMap[ent-0x80];
522 if (ent < 0x20) {
524 ent = 0x20;
526 else if (ent >
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-inject.c255 struct event_entry *ent; local
257 list_for_each_entry(ent, &inject->samples, node) {
258 if (sample->tid == ent->tid) {
259 list_del_init(&ent->node);
260 free(ent);
275 struct event_entry *ent; local
279 ent = malloc(event->header.size + sizeof(struct event_entry));
280 if (ent == NULL) {
286 ent->tid = sample->tid;
287 memcpy(&ent
298 struct event_entry *ent; local
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/alpha/lib/
H A Dmemset.S24 .ent __memset
109 .ent __memsetw
/external/e2fsprogs/debugfs/
H A Dhtree.c117 struct ext2_dx_entry *ent,
125 limit = *((struct ext2_dx_countlimit *) ent);
133 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0;
136 ext2fs_le32_to_cpu(ent[i].block));
142 e.hash = ext2fs_le32_to_cpu(ent[i].hash);
143 e.block = ext2fs_le32_to_cpu(ent[i].block);
202 struct ext2_dx_entry *ent; local
255 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length);
257 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent,
114 htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode, struct ext2_dx_root_info * rootnode, struct ext2_dx_entry *ent, char *buf, int level) argument
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dnetcap.c51 struct dirent *ent; local
57 while (( ent = readdir(d) )) {
66 if(*ent->d_name<'0' || *ent->d_name>'9')
69 pid = strtol(ent->d_name, NULL, 10);
161 while (( ent = readdir(f) )) {
167 if (ent->d_name[0] == '.')
169 snprintf(ln, 256, "%s/%s", buf, ent->d_name);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dbase.hpp257 keys(const std::pair<T, S> &ent) { argument
258 return ent.first;
264 return [=](const std::pair<T, S> &ent) {
265 return ent.first == x;
271 values(const std::pair<T, S> &ent) { argument
272 return ent.second;
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dbase.hpp257 keys(const std::pair<T, S> &ent) { argument
258 return ent.first;
264 return [=](const std::pair<T, S> &ent) {
265 return ent.first == x;
271 values(const std::pair<T, S> &ent) { argument
272 return ent.second;
/external/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp210 struct regmap_ent *ent; local
214 ent = i386_register_map;
219 ent = x86_64_register_map;
222 for (i = 0; i < count; i++, ent++)
224 const RegisterInfo *ri = reg_ctx->GetRegisterInfoByName (ent->name);
226 ent->lldb_regno = ri->kinds[eRegisterKindLLDB];
445 struct regmap_ent *ent; local
449 ent = i386_register_map;
454 ent = x86_64_register_map;
457 for (i = 0; i < count; i++, ent
[all...]
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc43 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local
45 internal_memset(ent, 0, sizeof(*ent));
46 ent->pc = addr;
47 return ent;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc67 for (ReportStack *ent = stack; ent; ent = ent->next) {
68 if (ent->func && 0 == internal_strncmp(ent->func, prefix, prefix_len))
69 ent->func += prefix_len;
70 if (ent->file && (pos = internal_strstr(ent->file, path_prefix)))
71 ent
135 ReportStack *ent = SymbolizeCode(pc1); local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.c10 struct cmdname *ent = malloc(sizeof(*ent) + len + 1); local
12 ent->len = len;
13 memcpy(ent->name, name, len);
14 ent->name[len] = 0;
17 cmds->names[cmds->cnt++] = ent;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dremap_helper.py49 for ent in func.entry_points:
50 spec.append("gl" + ent)
/external/mesa3d/src/mapi/glapi/gen/
H A Dremap_helper.py49 for ent in func.entry_points:
50 spec.append("gl" + ent)
/external/valgrind/main/exp-sgcheck/
H A Dh_main.c578 TempMapEnt ent; local
580 ent.kind = kind;
581 ent.shadow = IRTemp_INVALID;
582 newIx = VG_(addToXA)( pce->qmpMap, &ent );
649 TempMapEnt ent; local
650 ent.kind = NonShad;
651 ent.shadow = IRTemp_INVALID;
652 VG_(addToXA)( pce.qmpMap, &ent );
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
H A Dprogram.cpp198 map([](const std::pair<device *, module> &ent) {
201 ent.second.serialize(s);
209 map([](const std::pair<device *, module> &ent) {
212 ent.second.serialize(s);

Completed in 614 milliseconds

12345678