HomeSort by relevance Sort by last modified time
    Searched defs:Loop (Results 1 - 25 of 25) sorted by null

  /system/vold/
Loop.h 21 #include <linux/loop.h>
25 class Loop {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
LoopMode.java 44 Loop,
47 * The animation will not loop. It will play until the last frame, and then
  /external/skia/src/utils/
SkThreadPool.cpp 14 // Create count threads, all running SkThreadPool::Loop.
16 SkThread* thread = SkNEW_ARGS(SkThread, (&SkThreadPool::Loop, this));
35 /*static*/ void SkThreadPool::Loop(void* arg) {
  /external/webkit/Source/WebKit/chromium/public/
WebMediaPlayerAction.h 41 Loop,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I_s.s 90 Loop
134 BGT Loop
omxVCM4P2_QuantInvIntra_I_s.s 126 Loop
170 BGT Loop
omxVCM4P2_DecodePadMV_PVOP_s.s 204 Loop
322 BLT Loop ;// If BlkCount<Count Continue the Loop
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 232 function Loop() {
248 Loop();
323 Loop();
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 232 function Loop() {
248 Loop();
323 Loop();
  /external/v8/test/cctest/
test-thread-termination.cc 55 v8::Handle<v8::Value> Loop(const v8::Arguments& args) {
115 global->Set(v8::String::New("loop"), v8::FunctionTemplate::New(Loop));
130 // Run a loop that will be infinite if thread termination does not work.
132 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }");
142 // itself in a loop that performs no calls.
150 // Run a loop that will be infinite if thread termination does not work.
152 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }");
189 // Run a loop that will be infinite if thread termination does not work.
191 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }")
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
LabelScope.h 41 enum Type { Loop, Switch, NamedLabel };
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I_s.s 119 Loop
152 BGT Loop
omxVCM4P2_DecodePadMV_PVOP_s.s 204 Loop
322 BLT Loop ;// If BlkCount<Count Continue the Loop
omxVCM4P2_QuantInvIntra_I_s.s 160 Loop
193 BGT Loop
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 51 Loop, ///< Instr is a loop (backwards branch).
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 37 static const char *LoopIntrinsic = "llvm.SI.loop";
59 Constant *Loop;
139 Loop = M.getOrInsertFunction(
202 /// \brief Recursively handle the condition leading to a loop
254 assert(0 && "Unhandled loop condition!");
258 /// \brief Handle a back edge (loop)
278 Term->setCondition(CallInst::Create(Loop, Arg, "", Term));
SILowerControlFlow.cpp 82 void Loop(MachineInstr &MI);
256 void SILowerControlFlowPass::Loop(MachineInstr &MI) {
335 // Read the next variant into VCC (lower 32 bits) <- also loop target
360 // Loop back to V_READFIRSTLANE_B32 if there are still variants to cover
448 Loop(MI);
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 1 //===- llvm/Analysis/LoopInfo.h - Natural Loop Calculator -------*- C++ -*-===//
11 // and determine the loop depth of various nodes of the CFG. A natural loop
16 // each natural loop identified, this analysis identifies natural loops
17 // contained entirely within the loop and the basic blocks the make up the loop.
21 // * whether there is a preheader for the loop
23 // * whether or not a particular block branches out of the loop
24 // * the successor blocks of the loop
25 // * the loop dept
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 41 * called via rsForEach() or "foreach_<NAME>". We create an inner loop for the
160 * invokes <NAME>() in a loop with the appropriate parameters.
267 // Note that we load any loop-invariant arguments before entering the Loop.
315 llvm::BasicBlock *Loop = llvm::BasicBlock::Create(*C, "Loop", ExpandedFunc);
318 // if (x1 < x2) goto Loop; else goto Exit;
320 Builder.CreateCondBr(Cond, Loop, Exit);
322 // Loop:
323 Builder.SetInsertPoint(Loop);
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 185 // Loop over basic blocks where CurLI is live.
284 // Loop over basic blocks where li is live.
691 const MachineLoop *Loop = Loops.getLoopFor(MBB);
693 // MBB isn't in a loop, it doesn't get any better. All dominators have a
695 if (!Loop) {
702 if (Loop == DefLoop) {
704 << MBB->getNumber() << " in the same loop\n");
709 unsigned Depth = Loop->getLoopDepth();
717 // Leave loop by going to the immediate dominator of the loop header
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 432 // Set up the loop segment data
466 /* MB loop to set local segmentation map */
506 /* Set up the loop segment data */
770 /* Only do recode loop on key frames, golden frames and
780 sf->recode_loop = 0; /* recode loop off */
787 sf->auto_filter = 0; /* Faster selection of loop filter */
810 sf->auto_filter = 0; /* Faster selection of loop filter */
820 sf->auto_filter = 0; /* Faster selection of loop filter */
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 984 void Loop(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c) {
989 void Loop(clang::Stmt* a, clang::Stmt* b) {
1028 block.Loop(stmt->getCond(), stmt->getBody());
1036 block.Loop(stmt->getBody(), stmt->getCond());
1044 block.Loop(stmt->getCond(),
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
wavefront.h 444 u8 Loop:1;
468 u8 Loop:1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
wavefront.h 444 u8 Loop:1;
468 u8 Loop:1;

Completed in 621 milliseconds