/frameworks/base/docs/html/training/multiple-apks/ |
index.jd | 44 and know how to catch mistakes <em>before</em> your app goes live.</p> 54 configuration using the <code>aapt</code> tool before pushing live.</dd> 59 using the <code>aapt</code> tool before pushing live.</dd> 64 configuration using the <code>aapt</code> tool before pushing live.</dd> 71 pushing live.</dd>
|
/external/llvm/lib/CodeGen/ |
LiveInterval.cpp | 1 //===-- LiveInterval.cpp - Live Interval Representation -------------------===// 12 // live interval for register v if there is no instruction with number j' > j 13 // such that v is live at j' and there is no instruction with number i' < i such 14 // that v is live at i'. In this implementation intervals can have holes, 66 // overlaps - Return true if the intersection of the two live intervals is 75 // The live intervals should look like: 125 /// overlaps - Return true if the live interval overlaps a range specified 156 assert(!VNI->isUnused() && "Unused valno used by live range"); 242 // Check to make sure that we are not overlapping two live ranges with 264 // Check to make sure that we are not overlapping two live ranges wit [all...] |
SplitKit.cpp | 1 //===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===// 11 // live range splitting. 36 STATISTIC(NumRepairs, "Number of invalid live ranges repaired"); 68 // current live interval. 91 // If CurLI is live into a landing pad successor, move the last split point 102 // really be live-in to the landing pad. This can happen if the landing pad 108 // Value is properly live-in to the landing pad. 148 // Compute per-live block info. 150 // FIXME: calcLiveBlockInfo found inconsistencies in the live range. 154 DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n") [all...] |
LiveVariables.cpp | 1 //===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===// 17 // This class computes live variables using a sparse implementation based on 18 // the machine code SSA form. This class computes live variable information for 20 // uses the dominance properties of SSA form to efficiently compute live 22 // live within a single basic block (allowing it to do a single local analysis 47 "Live Variable Analysis", false, false) 50 "Live Variable Analysis", false, false) 107 return; // We already know the block is live 140 // live range by updating the kill instruction. 174 // Update all dominating blocks to mark them as "known live" [all...] |
RegAllocGreedy.cpp | 50 STATISTIC(NumGlobalSplits, "Number of split global live ranges"); 51 STATISTIC(NumLocalSplits, "Number of split local live ranges"); 56 cl::desc("Spill mode for splitting live ranges"), 88 // Live ranges pass through a number of stages as we try to allocate them. 89 // Some of the stages may also create new live ranges: 98 // that are unlikely to give any results. It also guarantees that the live 102 /// Newly created live range that has never been queued. 108 /// Attempt live range splitting if assignment is impossible. 111 /// Attempt more aggressive live range splitting that is guaranteed to make 116 /// Live range will be spilled. No more splitting will be attempted [all...] |
LiveStackAnalysis.cpp | 1 //===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===// 10 // This file implements the live stack slot analysis pass. It is analogous to 11 // live interval analysis except it's analyzing liveness of stack slots rather 29 "Live Stack Slot Analysis", false, false)
|
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | 86 enum Liveness { Live, MaybeLive }; 99 /// arguments it uses. This allows the MaybeLive values to be marked live 100 /// when any of its users is marked live. 117 /// This set contains all values that have been determined to be live. 354 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined 357 // We're live if our use or its Function is already marked as live. 359 return Live; 361 // We're maybe live otherwise, but remember that we must become live i [all...] |
/external/qemu/audio/ |
winaudio.c | 254 winaudio_out_run (HWVoiceOut *hw, int live)
260 if (!live) {
269 while (live > 0) {
272 int wav_samples = audio_MIN(wav_bytes >> hw->info.shift, live);
273 int hw_samples = audio_MIN(hw->samples - hw->rpos, live);
283 //D("run_out: buffer:%d pos:%d size:%d wsamples:%d wbytes:%d live:%d rpos:%d hwsamples:%d\n", s->write_index,
284 // s->write_pos, s->write_size, wav_samples, wav_bytes, live, hw->rpos, hw->samples);
290 live -= wav_samples;
310 live = 0;
511 int live = hw->samples - hw->total_samples_captured; local [all...] |
noaudio.c | 41 static int no_run_out (HWVoiceOut *hw, int live) 56 decr = audio_MIN (live, samples); 100 int live = audio_pcm_hw_get_live_in (hw); local 101 int dead = hw->samples - live;
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
LivenessAnalyzer.java | 31 * Calculate the live ranges for register {@code reg}.<p> 46 * {@code non-null;} set of blocks remaing to visit as "live out as block" 81 * live in/out information in {@code SsaBasicBlock} instances and 194 * "v is live-out at n." 206 // Live out at last statement in blockN 213 * "v is live-in at s." 218 // v is live-in at n 232 * "v is live-out at s." 253 * generate moves that over-write the live result.
|
/dalvik/libdex/ |
DexDebugInfo.cpp | 117 bool live; member in struct:LocalInfo 123 if (localCb != NULL && localInReg[reg].live) { 170 localInReg[argReg].live = true; 207 localInReg[reg].live = true; 248 localInReg[reg].live = true; 259 localInReg[reg].live = false; 276 * If the register is live, the "restart" is superfluous, 279 if (!localInReg[reg].live) { 281 localInReg[reg].live = true;
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
LivenessAnalyzer.java | 31 * Calculate the live ranges for register {@code reg}.<p> 46 * {@code non-null;} set of blocks remaing to visit as "live out as block" 81 * live in/out information in {@code SsaBasicBlock} instances and 194 * "v is live-out at n." 206 // Live out at last statement in blockN 213 * "v is live-in at s." 218 // v is live-in at n 232 * "v is live-out at s." 253 * generate moves that over-write the live result.
|
/external/v8/src/ |
lithium-allocator.h | 218 // live range that owns it. The interval must contain the position. 274 // Representation of SSA values' live ranges as a collection of (continuous) 299 // Returns use position in this live range that follows both start 301 // Modifies internal state of live range! 304 // Returns use position for which register is required in this live 306 // Modifies internal state of live range! 309 // Returns use position for which register is beneficial in this live 311 // Modifies internal state of live range! 314 // Can this live range be spilled at this position. 317 // Split this live range at the given position which must follow the start o [all...] |
/cts/tests/tests/webkitsecurity/assets/ |
stop-crash.html | 21 REGRESSION: Crash closing live web cam viewer page</i>.
|
/external/chromium/chrome/browser/sync/engine/ |
model_safe_worker.h | 23 GROUP_UI, // Models that live on UI thread and are being synced. 24 GROUP_DB, // Models that live on DB thread and are being synced. 25 GROUP_HISTORY, // Models that live on history thread and are being 27 GROUP_PASSWORD, // Models that live on the password thread and are
|
/external/chromium/chrome/common/extensions/docs/examples/apps/background-simple/ |
README | 9 index.html and background.html live.
|
/external/clang/test/Preprocessor/ |
macro_paste_msextensions.c | 12 #define comment /##/ dead tokens live here
|
/external/iptables/extensions/ |
libipt_TTL.man | 2 how many hops (routers) a packet can traverse until it's time to live is
|
/external/llvm/include/llvm/CodeGen/ |
LiveStackAnalysis.h | 1 //===-- LiveStackAnalysis.h - Live Stack Slot Analysis ----------*- C++ -*-===// 10 // This file implements the live stack slot analysis pass. It is analogous to 11 // live interval analysis except it's analyzing liveness of stack slots rather 34 /// S2IMap - Stack slot indices to live interval mapping.
|
/external/llvm/test/CodeGen/PowerPC/ |
2010-10-11-Fast-Varargs.ll | 7 ; lowering code needs to use virtual registers when storing live-in registers on
|
/external/llvm/test/CodeGen/X86/ |
2003-08-03-CallArgLiveRanges.ll | 3 ; it makes a ton of annoying overlapping live ranges. This code should not
|
overlap-shift.ll | 1 ;; X's live range extends beyond the shift, so the register allocator
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
exit_compare_live_range.ll | 2 ; having overlapping live ranges that result in copies. We want the setcc
|
/external/qemu/ |
migration-dummy-android.c | 2 * QEMU live migration
|
/external/valgrind/main/docs/internals/ |
m_syswrap.txt | 12 and a great deal of commentary. The wrappers themselves live in
|