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

1 2

  /system/vold/
Loop.h 21 #include <linux/loop.h>
25 class Loop {
  /external/chromium_org/third_party/WebKit/public/web/
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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 232 function Loop() {
248 Loop();
323 Loop();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 232 function Loop() {
248 Loop();
323 Loop();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
3d-cube.js 232 function Loop() {
248 Loop();
323 Loop();
  /external/chromium_org/v8/test/cctest/
test-thread-termination.cc 52 void Loop(const v8::FunctionCallbackInfo<v8::Value>& args) {
113 global->Set(v8::String::NewFromUtf8(isolate, "loop"),
114 v8::FunctionTemplate::New(isolate, Loop));
131 // Run a loop that will be infinite if thread termination does not work.
133 CcTest::isolate(), "try { loop(); fail(); } catch(e) { fail(); }");
142 // itself in a loop that performs no calls.
151 // Run a loop that will be infinite if thread termination does not work.
153 CcTest::isolate(), "try { loop(); fail(); } catch(e) { fail(); }");
191 // Run a loop that will be infinite if thread termination does not work.
193 CcTest::isolate(), "try { loop(); fail(); } catch(e) { fail(); }")
    [all...]
  /external/lldb/tools/lldb-perf/lib/
TestCase.cpp 142 TestCase::Loop ()
325 test.Loop();
  /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/chromium_org/third_party/skia/include/utils/
SkThreadPool.h 83 static void Loop(void*); // Static because we pass in this.
91 // Create count threads, all running SkTThreadPool::Loop.
93 SkThread* thread = SkNEW_ARGS(SkThread, (&SkTThreadPool::Loop, this));
170 /*static*/ void SkTThreadPool<T>::Loop(void* arg) {
  /external/skia/include/utils/
SkThreadPool.h 83 static void Loop(void*); // Static because we pass in this.
91 // Create count threads, all running SkTThreadPool::Loop.
93 SkThread* thread = SkNEW_ARGS(SkThread, (&SkTThreadPool::Loop, this));
170 /*static*/ void SkTThreadPool<T>::Loop(void* arg) {
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 53 Loop, ///< Instr is a loop (backwards branch).
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 302 // If OuterLoop is an irreducible loop, we can't actually handle this.
311 // If "Pred" is a loop header, then this isn't really a backedge; rather,
313 // secondary loop headers.
324 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) {
326 for (const auto &I : Loop.Exits)
327 if (!addToDist(Dist, OuterLoop, Loop.getHeader(), I.first,
335 /// \brief Get the maximum allowed loop scale.
337 /// Gives the maximum number of estimated iterations allowed for a loop. Very
341 /// \brief Compute the loop scale for a loop
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 41 static const char *const LoopIntrinsic = "llvm.SI.loop";
63 Constant *Loop;
142 Loop = M.getOrInsertFunction(
205 /// \brief Recursively handle the condition leading to a loop
257 llvm_unreachable("Unhandled loop condition!");
262 /// \brief Handle a back edge (loop)
278 Term->setCondition(CallInst::Create(Loop, Arg, "", Term));
SILowerControlFlow.cpp 83 void Loop(MachineInstr &MI);
260 void SILowerControlFlowPass::Loop(MachineInstr &MI) {
293 // If these aren't equal, this is probably an infinite loop.
354 // Read the next variant into VCC (lower 32 bits) <- also loop target
380 // Loop back to V_READFIRSTLANE_B32 if there are still variants to cover
491 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...]
BlockFrequencyInfoImpl.h 146 class Loop;
204 /// \brief Data about a loop.
206 /// Contains the data necessary to represent represent a loop as a
211 LoopData *Parent; ///< The parent loop.
215 NodeList Nodes; ///< Header and the members of the loop.
216 BlockMass BackedgeMass; ///< Mass returned to loop header.
247 /// \brief Index of loop information.
250 LoopData *Loop; ///< The loop this block is inside.
253 WorkingData(const BlockNode &Node) : Node(Node), Loop(nullptr) {
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 184 // Loop over basic blocks where CurLI is live.
283 // Loop over basic blocks where li is live.
693 const MachineLoop *Loop = Loops.getLoopFor(MBB);
695 // MBB isn't in a loop, it doesn't get any better. All dominators have a
697 if (!Loop) {
704 if (Loop == DefLoop) {
706 << MBB->getNumber() << " in the same loop\n");
711 unsigned Depth = Loop->getLoopDepth();
719 // Leave loop by going to the immediate dominator of the loop header
    [all...]
  /external/clang/lib/Parse/
ParsePragma.cpp 146 PragmaLoopHintHandler() : PragmaHandler("loop") {}
603 Token Loop;
615 IdentifierLoc::create(Actions.Context, Info->Loop.getLocation(),
616 Info->Loop.getIdentifierInfo());
626 // FIXME: We should allow non-type template parameters for the loop hint
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 396 // are not called in the encoding loop, so we need to call it here to
552 // Set up the loop segment data
586 /* MB loop to set local segmentation map */
626 /* Set up the loop segment data */
888 /* Only do recode loop on key frames, golden frames and
898 sf->recode_loop = 0; /* recode loop off */
905 sf->auto_filter = 0; /* Faster selection of loop filter */
928 sf->auto_filter = 0; /* Faster selection of loop filter */
938 sf->auto_filter = 0; /* Faster selection of loop filter */
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 982 void Loop(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c) {
987 void Loop(clang::Stmt* a, clang::Stmt* b) {
1026 block.Loop(stmt->getCond(), stmt->getBody());
1034 block.Loop(stmt->getBody(), stmt->getCond());
1042 block.Loop(stmt->getCond(),
    [all...]

Completed in 716 milliseconds

1 2