HomeSort by relevance Sort by last modified time
    Searched full:live (Results 351 - 375 of 1611) sorted by null

<<11121314151617181920>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
symtab.h 59 unsigned int nelements; /* Number of live elements. */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
symtab.h 59 unsigned int nelements; /* Number of live elements. */
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
symtab.h 59 unsigned int nelements; /* Number of live elements. */
  /dalvik/vm/alloc/
HeapBitmap.cpp 186 unsigned long *live = liveHb->bits; local
189 unsigned long garbage = live[i] & ~mark[i];
Visit.cpp 121 * A '1' bit indicates a live reference.
132 * Register is marked as live, it's a valid root.
HeapSource.cpp 159 * The live object bitmap.
719 * Get the bitmap representing all live objects.
755 * Copy the contents of the live bit vector for immune object
773 /* Compute the starting offset in the live and mark bits. */
776 /* Compute the number of bytes of the live bitmap to copy. */
    [all...]
Heap.cpp 159 * heap as a side-effect if the live set is large.
225 * many live objects. Try a foreground GC. This will have no
586 * Live objects have a bit set in the mark bitmap, swap the mark
587 * and live bitmaps. The sweep can proceed concurrently viewing
588 * the new live bitmap as the old mark bitmap, and vice versa.
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 99 // The incoming URI matches the Live Folder URI pattern
130 // live folder operation
160 * Creates an initializes a projection map for handling Live Folders
166 // Maps "_ID" to "_ID AS _ID" for a live folder
282 // If the incoming URI is from a live folder, chooses the live folder projection.
340 // If the pattern is for notes or live folders, returns the general content type.
380 // If the pattern is for notes or live folders, return null. Data streams are not
  /external/libvpx/vp8/common/
onyx.h 114 //(0)=Realtime/Live Encoding. This mode is optimized for realtim encoding (for example, capturing
115 // a television signal or feed from a live camera). ( speed setting controls how fast )
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 120 /// there's no other convenient place for it to live right now.
210 /// LiveOutRegInfo - Information about live out vregs.
  /external/llvm/include/llvm/MC/
MCSectionMachO.h 119 /// S_ATTR_LIVE_SUPPORT - Blocks are live if they reference live blocks.
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.h 123 /// LoopLiveInRegs - Track which regs are live into a loop, to help guide
175 /// the terminator or are live-out are properly scheduled. This is
Spiller.cpp 73 /// Add spill ranges for every use/def of the live interval, inserting loads
174 /// Spills any live range using the spill-everywhere method with no attempt at
RegAllocLinearScan.cpp 156 /// live range active for the current point.
271 /// weight is the lowest among all the registers whose live intervals
442 /// register is not defined during live time of the interval. If the interval is
452 // We cannot handle complicated live ranges. Simple linear stuff only.
545 assert(unhandled_.empty() && "Unhandled live intervals remain!");
642 // Add live-ins to every BB except for entry. Also perform trivial coalescing.
655 // Ignore splited live intervals.
823 /// live interval and defs and uses of Reg weighted by loop depthes.
842 /// weight is the lowest among all the registers whose live intervals
    [all...]
RegAllocFast.cpp 71 // Everything we know about a live virtual register.
124 // completely after spilling all live registers. LiveRegMap entries should
560 // Redefining a live register - kill at the last use, unless it is this
738 // using all of the live-out values in the function. Things marked both call
750 "Cannot have a live-out virtual register.");
752 // Add live-out registers as implicit uses.
762 // Add live-in registers as live.
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 73 // Mark the FramePtr as live-in in every block except the entry.
197 // Add the callee-saved register as live-in. It's killed at the spill.
  /frameworks/base/core/java/com/android/internal/backup/
IBackupTransport.aidl 55 * "live" backup services without interfering with the live bookkeeping. The
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 86 * Test creating with a live cursor
108 * Test changeCursor() with live cursor
  /frameworks/base/media/libmediaplayerservice/nuplayer/
RTSPSource.cpp 241 // This is a live stream, we didn't receive any normal
245 LOGV("This is a live stream, assuming time = 0");
  /external/libpcap/
pcap.3 431 This is not a minimum number; when reading a live capture, only one
437 live capture, or all the packets in the file when reading a
486 0 is returned if no packets were read from a live capture (if, for
508 when reading a live capture,
529 return when live read timeouts occur.
563 is returned if an error occured, or if no packets were read from a live
580 packets are being read from a live capture, and the timeout expired
620 if the signal interrupted a call reading packets in a live capture,
825 machine on which the packets are captured; if a live capture is being
1159 is supported only on live captures, not on ``savefiles''; no statistic
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 103 * a Node was tenured while live, which generational GCs have a
177 * A node from which the first live (non-deleted) node (if any)
180 * - all live nodes are reachable from head via succ()
290 // and for newNode to become "live".
300 // jump to head, from which all live nodes are always
352 * Returns the first live (non-deleted) node on list, or null if none.
512 // jump to head, from which all live nodes are always
  /external/qemu/audio/
dsoundaudio.c 568 static int dsound_run_out (HWVoiceOut *hw, int live)
600 len = live << hwshift;
762 int live, len, dead; local
777 live = audio_pcm_hw_get_live_in (hw);
778 dead = hw->samples - live;
ossaudio.c 424 static int oss_run_out (HWVoiceOut *hw, int live)
445 decr = audio_MIN (bytes >> hw->info.shift, live);
471 decr = audio_MIN (abinfo.bytes >> hw->info.shift, live);
744 int live = audio_pcm_hw_get_live_in (hw); local
745 int dead = hw->samples - live;
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.cpp 151 // Dead resource capacity is whatever space is not occupied by live resources, bounded by an independent minimum and maximum.
160 // Live resource capacity is whatever is left over after calculating dead resource capacity.
178 // Destroy any decoded data in live objects that we can.
582 void MemoryCache::adjustSize(bool live, int delta)
584 if (live) {
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java 153 * The component name of the currently set live wallpaper.
383 // let's not let it crash the system and just live with no
829 // No such live wallpaper or other failure; fall back to the default
830 // live wallpaper (since the profile being restored indicated that the
831 // user had selected a live rather than static one).
    [all...]

Completed in 909 milliseconds

<<11121314151617181920>>