/external/valgrind/main/coregrind/m_debuginfo/ |
tytypes.c | 219 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->Te.Bound.boundL == 0) 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/ |
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...] |
/build/tools/atree/ |
fs.cpp | 57 struct dirent *ent; local 58 while (NULL != (ent = readdir(d))) { 59 if (0 == strcmp(".", ent->d_name) 60 || 0 == strcmp("..", ent->d_name)) { 65 full += ent->d_name; 67 bool is_directory = (ent->d_type == DT_DIR);
|
/frameworks/base/core/java/com/android/internal/os/ |
PkgUsageStats.java | 89 for (Map.Entry<String, Long> ent : componentResumeTimes.entrySet()) { 90 dest.writeString(ent.getKey()); 91 dest.writeLong(ent.getValue());
|
/frameworks/base/core/jni/ |
android_server_Watchdog.cpp | 81 struct dirent * ent; local 82 while ((ent = readdir(taskdir)) != NULL) { 83 int tid = atoi(ent->d_name);
|
/bionic/libc/arch-mips/bionic/ |
futex_mips.S | 41 .ent __futex_wait 69 .ent __futex_wake 96 .ent __futex_syscall3 123 .ent __futex_syscall4
|
memcmp16.S | 36 .ent __memcmp16
|
pipe.S | 44 .ent pipe
|
vfork.S | 38 .ent vfork
|
clone.S | 37 .ent __pthread_clone 109 .ent __bionic_clone
|
ffs.S | 43 .ent ffs
|
/bootable/recovery/tools/ota/ |
check-lost+found.c | 105 struct dirent *ent; local 106 while ((ent = readdir(dir))) { 107 if (strcmp(ent->d_name, ".") && strcmp(ent->d_name, ".."))
|
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/ |
ml_sysfs_helper.c | 48 const struct dirent *ent; local 62 while (ent = readdir(dp), ent != NULL) { 63 if (strcmp(ent->d_name, ".") != 0 && 64 strcmp(ent->d_name, "..") != 0 && 65 strlen(ent->d_name) > strlen(type) && 66 strncmp(ent->d_name, type, strlen(type)) == 0) { 67 numstrlen = sscanf(ent->d_name + strlen(type), 71 if (strncmp(ent->d_name + strlen(type) + numstrlen,
|
/external/llvm/test/MC/Mips/ |
hilo-addressing.s | 3 .ent hilo_test
|
/external/compiler-rt/lib/tsan/go/ |
tsan_go.cc | 39 ReportStack *ent = (ReportStack*)internal_alloc(MBlockReportStack, local 41 internal_memset(ent, 0, sizeof(*ent)); 42 ent->pc = addr; 43 return ent;
|
/external/openssh/ |
fixprogs | 17 # 'undocumented' option - run ent (in second param) on the output 60 # now try to run ent on the command 63 @ent = qx{$path $mostargs | $entcmd -b -t}; 64 @ent = grep(/^1,/, @ent); 65 ($null, $null, $rate) = split(/,/, $ent[0]);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
HTMLScanner.java | 456 int ent = h.getEntity(); local 457 // System.err.println("%% value = " + ent); 458 if (ent != 0) { 460 if (ent >= 0x80 && ent <= 0x9F) { 461 ent = theWinMap[ent-0x80]; 463 if (ent < 0x20) { 465 ent = 0x20; 467 else if (ent >= 0xD800 && ent <= 0xDFFF) [all...] |
/external/libcap-ng/libcap-ng-0.7/utils/ |
netcap.c | 51 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/ |
base.hpp | 257 keys(const std::pair<T, S> &ent) { 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) { 272 return ent.second;
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
TriangleCollector.java | 134 for (Entry<VertexBuffer> ent : bufs){ 135 VertexBuffer vb = ent.getValue(); 194 for (Entry<VertexBuffer> ent : inbufs){ 195 VertexBuffer vb = ent.getValue(); 222 for (Entry<VertexBuffer> ent : outbufs){ 223 VertexBuffer vb = ent.getValue();
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
base.hpp | 257 keys(const std::pair<T, S> &ent) { 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) { 272 return ent.second;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
SearchDialogBase.py | 22 self.ent.delete(0,"end") 23 self.ent.insert("end",searchphrase) 24 self.ent.focus_set() 25 self.ent.selection_range(0, "end") 26 self.ent.icursor(0) 79 self.ent = self.make_entry("Find:", self.engine.patvar)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
SearchDialogBase.py | 22 self.ent.delete(0,"end") 23 self.ent.insert("end",searchphrase) 24 self.ent.focus_set() 25 self.ent.selection_range(0, "end") 26 self.ent.icursor(0) 79 self.ent = self.make_entry("Find:", self.engine.patvar)
|
/external/e2fsprogs/debugfs/ |
htree.c | 118 struct ext2_dx_entry *ent, 126 limit = *((struct ext2_dx_countlimit *) ent); 134 hash = i ? ext2fs_le32_to_cpu(ent[i].hash) : 0; 137 ext2fs_le32_to_cpu(ent[i].block)); 143 e.hash = ext2fs_le32_to_cpu(ent[i].hash); 144 e.block = ext2fs_le32_to_cpu(ent[i].block); 205 struct ext2_dx_entry *ent; local 280 ent = (struct ext2_dx_entry *) (buf + 24 + rootnode->info_length); 281 limit = (struct ext2_dx_countlimit *) ent; 283 htree_dump_int_node(current_fs, ino, &inode, rootnode, ent, [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
ProcessStatsUi.java | 482 ProcStatsEntry ent = entriesMap.get(proc.mName, proc.mUid); local 483 if (ent == null) { 484 ent = new ProcStatsEntry(proc, st.mPackageName, totals, mUseUss, 486 if (ent.mDuration > 0) { 488 + proc.mUid + ": time=" + makeDuration(ent.mDuration) + " (" 489 + ((((double)ent.mDuration) / memTotalTime) * 100) + "%)" 490 + " pss=" + ent.mAvgPss); 491 entriesMap.put(proc.mName, proc.mUid, ent); 492 entries.add(ent); 495 ent.addPackage(st.mPackageName) 512 ProcStatsEntry ent = entriesMap.get(ss.mProcessName, uids.keyAt(iu)); local [all...] |