HomeSort by relevance Sort by last modified time
    Searched full:live (Results 76 - 100 of 2712) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/download/
download_file.h 20 // These objects live exclusively on the download thread and handle the writing
21 // operations for one download. These objects live only for the duration that
save_file.h 17 // These objects live exclusively on the file thread and handle the writing
18 // operations for one save item. These objects live only for the duration that
  /external/chromium/chrome/browser/profiles/
profile_dependency_manager.h 21 // Adds/Removes a component from our list of live components. Removing will
22 // also remove live dependency links.
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_user_image.css 59 * .camera: camera (live or photo) is selected;
60 * .live: camera is in live mode (no photo taken yet/last photo removed).
105 .camera.live #user-image-preview-img {
126 .camera.live .user-image-stream-area {
198 .camera:not(.live) #discard-photo {
204 .camera.live.online #take-photo {
235 .camera.live:not(.online) .user-image-stream-area .spinner {
  /external/llvm/lib/CodeGen/
SpillPlacement.h 16 // Given a variable that is live across multiple basic blocks, and given
17 // constraints on the basic blocks where the variable is live, determine which
72 DontCare, ///< Block doesn't care / variable not live.
85 /// True when this block changes the value of the live range. This means
86 /// the block has a non-PHI def. When this is false, a live-in value on
87 /// the stack can be live-out on the stack without inserting a spill.
102 /// @param LiveBlocks Constraints for blocks that have the variable live in or
103 /// live out.
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)
32 "Live Stack Slot Analysis", false, false)
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)
109 return; // We already know the block is live
142 // live range by updating the kill instruction.
176 // Update all dominating blocks to mark them as "known live"
    [all...]
  /external/llvm/test/CodeGen/X86/GC/
erlang-gc.ll 14 ; CHECK64-NEXT: .short 0 # live root count
22 ; CHECK32-NEXT: .short 0 # live root count
  /frameworks/base/core/java/android/app/
IWallpaperManager.aidl 34 * Set the live wallpaper.
45 * Get information about a live wallpaper.
  /external/llvm/test/Transforms/DeadArgElim/
multdeadretval.ll 25 %LIVE = extractvalue {i16, i32} %ret, 1
26 ret i32 %LIVE
33 ; Multiple return values, multiple live return values
51 %LIVE = extractvalue {i32, i16} %ret, 0
53 %Y = add i32 %LIVE, -123 ; <i32> [#uses=1]
  /external/v8/src/
lithium-allocator.cc 212 // We cannot spill a live range that has a use requiring a register
306 // Partition original use intervals to the two live ranges.
334 // Partition original use positions to the two live ranges.
343 // to the use that no longer belongs to this live range.
347 // Link the new live range in the chain before any of the other
360 // This implements an ordering on live ranges so that they are ordered by their
362 // allocation algorithm. If two live ranges start at the same offset then there
380 LAllocator::TraceAlloc("Shorten live range %d to [%d\n", id_, start.Value());
391 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n",
416 LAllocator::TraceAlloc("Add to live range %d interval [%d %d[\n"
1232 BitVector* live = live_in_sets_[block->block_id()]; local
1254 BitVector* live = ComputeLiveOut(block); local
    [all...]
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...]
  /frameworks/base/docs/html/training/multiple-apks/
index.jd 43 and know how to catch mistakes <em>before</em> your app goes live.</p>
53 configuration using the <code>aapt</code> tool before pushing live.</dd>
58 using the <code>aapt</code> tool before pushing live.</dd>
63 configuration using the <code>aapt</code> tool before pushing live.</dd>
70 pushing live.</dd>
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 91 * Gets the time-to-live (TTL) for multicast packets sent on this socket.
93 * @return the time-to-live option as a byte value.
95 * if an error occurs while getting the time-to-live option
104 * Gets the time-to-live (TTL) for multicast packets sent on this socket.
108 * @return the time-to-live option as an integer value.
110 * if an error occurs while getting the time-to-live option
208 * Sets the time-to-live (TTL) option for multicast packets sent on this
212 * the time-to-live option value. Valid values are 0 &lt; ttl
220 * Sets the time-to-live (TTL) option for multicast packets sent on this
224 * the time-to-live option value. Valid values are 0 &lt; tt
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 89 enum Liveness { Live, MaybeLive };
102 /// arguments it uses. This allows the MaybeLive values to be marked live
103 /// when any of its users is marked live.
120 /// This set contains all values that have been determined to be live.
410 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
413 // We're live if our use or its Function is already marked as live.
415 return Live;
417 // We're maybe live otherwise, but remember that we must become live i
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.h 218 // live range that owns it. The interval must contain the position.
273 // Representation of SSA values' live ranges as a collection of (continuous)
298 // Returns use position in this live range that follows both start
300 // Modifies internal state of live range!
303 // Returns use position for which register is required in this live
305 // Modifies internal state of live range!
308 // Returns use position for which register is beneficial in this live
310 // Modifies internal state of live range!
313 // Returns use position for which register is beneficial in this live
317 // Can this live range be spilled at this position
    [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...]
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 30 * Calculate the live ranges for register {@code reg}.<p>
45 * {@code non-null;} set of blocks remaing to visit as "live out as block"
80 * live in/out information in {@code SsaBasicBlock} instances and
193 * "v is live-out at n."
205 // Live out at last statement in blockN
212 * "v is live-in at s."
217 // v is live-in at n
231 * "v is live-out at s."
252 * 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/chromium_org/sync/js/
README.js 38 The following objects live on the UI thread:
43 The following objects live on the sync thread:
48 live, since they interact via WeakHandles.
  /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/chromium_org/chrome/browser/resources/net_internals/
sockets_view.html 10 <li><a href='#events&q=type:SOCKET%20is:active'>View live sockets</a>

Completed in 357 milliseconds

1 2 34 5 6 7 8 91011>>