/external/llvm/lib/Target/MBlaze/ |
D | MBlazeSchedule5.td | 18 // The instruction takes one cycle to execute in each of the stages. The 22 [ InstrStage<1,[IF]> // one cycle in fetch stage 23 , InstrStage<1,[ID]> // one cycle in decode stage 24 , InstrStage<1,[EX]> // one cycle in execute stage 25 , InstrStage<1,[MA]> // one cycle in memory access stage 26 , InstrStage<1,[WB]>], // one cycle in write back stage 28 , 1 // first operand read after one cycle 29 , 1 ]>, // second operand read after one cycle 33 // operand. The instruction takes one cycle to execute in each of the 37 [ InstrStage<1,[IF]> // one cycle in fetch stage [all …]
|
D | MBlazeSchedule3.td | 18 // The instruction takes one cycle to execute in each of the stages. The 22 [ InstrStage<1,[IF]> // one cycle in fetch stage 23 , InstrStage<1,[ID]> // one cycle in decode stage 24 , InstrStage<1,[EX]>], // one cycle in execute stage 26 , 1 // first operand read after one cycle 27 , 1 ]>, // second operand read after one cycle 31 // operand. The instruction takes one cycle to execute in each of the 36 [ InstrStage<1,[IF]> // one cycle in fetch stage 37 , InstrStage<1,[ID]> // one cycle in decode stage 40 , 1 // first operand read after one cycle [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Spline.java | 30 private boolean cycle; field in Spline 55 …public Spline(SplineType splineType, Vector3f[] controlPoints, float curveTension, boolean cycle) { in Spline() argument 65 this.cycle = cycle; in Spline() 84 …ic Spline(SplineType splineType, List<Vector3f> controlPoints, float curveTension, boolean cycle) { in Spline() argument 91 this.cycle = cycle; in Spline() 131 if (cycle) { in initCatmullRomWayPoints() 141 if (cycle) { in initCatmullRomWayPoints() 154 if (controlPoints.size() > 2 && this.cycle) { in addControlPoint() 158 if (controlPoints.size() >= 2 && this.cycle) { in addControlPoint() 301 return cycle; in isCycle() [all …]
|
/external/llvm/lib/CodeGen/ |
D | ScoreboardHazardRecognizer.cpp | 123 int cycle = Stalls; in getHazardType() local 140 int StageCycle = cycle + (int)i; in getHazardType() 172 cycle += IS->getNextCycles(); in getHazardType() 191 unsigned cycle = 0; in EmitInstruction() local 200 assert(((cycle + i) < RequiredScoreboard.getDepth()) && in EmitInstruction() 207 freeUnits &= ~ReservedScoreboard[cycle + i]; in EmitInstruction() 211 freeUnits &= ~RequiredScoreboard[cycle + i]; in EmitInstruction() 223 RequiredScoreboard[cycle + i] |= freeUnit; in EmitInstruction() 225 ReservedScoreboard[cycle + i] |= freeUnit; in EmitInstruction() 229 cycle += IS->getNextCycles(); in EmitInstruction()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | IteratorsTest.java | 486 Iterator<String> cycle = Iterators.<String>cycle(); in testCycleOfEmpty() local 487 assertFalse(cycle.hasNext()); in testCycleOfEmpty() 491 Iterator<String> cycle = Iterators.cycle("a"); in testCycleOfOne() local 493 assertTrue(cycle.hasNext()); in testCycleOfOne() 494 assertEquals("a", cycle.next()); in testCycleOfOne() 500 Iterator<String> cycle = Iterators.cycle(iterable); in testCycleOfOneWithRemove() local 501 assertTrue(cycle.hasNext()); in testCycleOfOneWithRemove() 502 assertEquals("a", cycle.next()); in testCycleOfOneWithRemove() 503 cycle.remove(); in testCycleOfOneWithRemove() 505 assertFalse(cycle.hasNext()); in testCycleOfOneWithRemove() [all …]
|
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
D | SDL_audiodev.c | 151 int cycle; in SDL_OpenAudioPath() local 158 cycle = 0; in SDL_OpenAudioPath() 159 while( devsettings[cycle][0] != '\0' ) { in SDL_OpenAudioPath() 162 devsettings[cycle][0], in SDL_OpenAudioPath() 163 devsettings[cycle][1], in SDL_OpenAudioPath() 164 devsettings[cycle][2]); in SDL_OpenAudioPath()
|
/external/clang/test/SemaObjC/ |
D | warn-retain-cycle.m | 10 …]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 12 …}; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 15 …]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 29 … // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} \ 46 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will … 47 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b… 61 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block… 67 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will… 69 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl… 72 …// expected-warning {{capturing 'self' strongly in this block is likely to lead to a retain cycle}} [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
D | FragmentedMp4Builder.java | 85 …protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, l… in sortTracksInSequence() argument 90 long startSample1 = startSamples1[cycle]; in sortTracksInSequence() 92 …long endSample1 = cycle + 1 < startSamples1.length ? startSamples1[cycle + 1] : o1.getSamples().si… in sortTracksInSequence() 94 long startSample2 = startSamples2[cycle]; in sortTracksInSequence() 96 …long endSample2 = cycle + 1 < startSamples2.length ? startSamples2[cycle + 1] : o2.getSamples().si… in sortTracksInSequence() 127 for (int cycle = 0; cycle < maxNumberOfFragments; cycle++) { in createMoofMdat() 129 … final List<Track> sortedTracks = sortTracksInSequence(movie.getTracks(), cycle, intersectionMap); in createMoofMdat() 135 if (cycle < startSamples.length) { in createMoofMdat() 137 long startSample = startSamples[cycle]; in createMoofMdat() 139 …long endSample = cycle + 1 < startSamples.length ? startSamples[cycle + 1] : track.getSamples().si… in createMoofMdat()
|
/external/webkit/Source/WebCore/platform/ |
D | AutodrainedPool.h | 48 void cycle(); 61 inline void AutodrainedPool::cycle() { } in cycle() function
|
/external/dropbear/libtomcrypt/src/prngs/ |
D | sober128.c | 72 static void cycle(ulong32 *R) in cycle() function 161 cycle(c->R); in s128_genkonst() 226 cycle(c->R); in sober128_add_entropy() 253 cycle(c->R); in sober128_add_entropy() 340 cycle(c->R); in sober128_read() 349 cycle(c->R); in sober128_read()
|
/external/openssl/crypto/sha/asm/ |
D | sha1-armv4-large.s | 180 eor r11,r11,r12 @ 1 cycle stall 197 eor r11,r11,r12 @ 1 cycle stall 214 eor r11,r11,r12 @ 1 cycle stall 231 eor r11,r11,r12 @ 1 cycle stall 253 eor r11,r11,r12 @ 1 cycle stall 269 eor r11,r11,r12 @ 1 cycle stall 285 eor r11,r11,r12 @ 1 cycle stall 301 eor r11,r11,r12 @ 1 cycle stall 317 eor r11,r11,r12 @ 1 cycle stall 340 eor r11,r11,r12 @ 1 cycle stall [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | GrammarSanity.java | 181 Set cycle = new HashSet(); in addRulesToCycle() local 182 cycle.add(targetRule); in addRulesToCycle() 183 cycle.add(enclosingRule); in addRulesToCycle() 184 listOfRecursiveCycles.add(cycle); in addRulesToCycle()
|
/external/llvm/lib/Target/ARM/ |
D | ARMScheduleA8.td | 96 // Result written in E5, but that is relative to the last cycle of multicycle, 125 // FIXME: lsl by 2 takes 1 cycle. 152 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. 230 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. 394 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers. 780 // Result written in N5, but that is relative to the last cycle of multicycle, 799 // Result written in N5, but that is relative to the last cycle of multicycle, 821 // Result written in N2, but that is relative to the last cycle of multicycle, 855 // Result written in N2, but that is relative to the last cycle of multicycle, 860 // Quad-register Permute (3 cycle issue) [all …]
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_folder_target_unittest.mm | 23 // retain cycle (see below; search for "retain cycle"). 79 // true. Note this creates a retain cycle in OCMockObject; we 95 // creates a retain cycle, since OCMock retains all objects used in
|
/external/clang/test/ARCMT/ |
D | rewrite-block-var.m | 14 __block Foo *x = p; // __block used just to break cycle. 38 __block Foo *x = p; // __block used just to break cycle.
|
D | rewrite-block-var.m.result | 14 __weak Foo *x = p; // __block used just to break cycle. 38 __weak Foo *x = p; // __block used just to break cycle.
|
/external/llvm/include/llvm/Target/ |
D | TargetItinerary.td | 91 // that can issue per cycle. 93 // OperandCycles are optional "cycle counts". They specify the cycle after 105 // In this example, the instruction of IIC_iLoadi reads its input on cycle 1 106 // (after issue) and the result of the load is available on cycle 3. The result
|
/external/quake/quake/src/QW/client/ |
D | view.c | 115 float cycle; in V_CalcBob() local 124 cycle = bobtime - (int)(bobtime/cl_bobcycle.value)*cl_bobcycle.value; in V_CalcBob() 125 cycle /= cl_bobcycle.value; in V_CalcBob() 126 if (cycle < cl_bobup.value) in V_CalcBob() 127 cycle = M_PI * cycle / cl_bobup.value; in V_CalcBob() 129 cycle = M_PI + M_PI*(cycle-cl_bobup.value)/(1.0 - cl_bobup.value); in V_CalcBob() 135 bob = bob*0.3 + bob*0.7*sin(cycle); in V_CalcBob()
|
/external/quake/quake/src/WinQuake/ |
D | view.cpp | 115 float cycle; in V_CalcBob() local 117 cycle = cl.time - (int)(cl.time/cl_bobcycle.value)*cl_bobcycle.value; in V_CalcBob() 118 cycle /= cl_bobcycle.value; in V_CalcBob() 119 if (cycle < cl_bobup.value) in V_CalcBob() 120 cycle = M_PI * cycle / cl_bobup.value; in V_CalcBob() 122 cycle = M_PI + M_PI*(cycle-cl_bobup.value)/(1.0 - cl_bobup.value); in V_CalcBob() 129 bob = bob*0.3 + bob*0.7*sin(cycle); in V_CalcBob()
|
/external/webkit/Source/WebCore/platform/brew/ |
D | EventLoopBrew.cpp | 31 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|
/external/webkit/Source/WebCore/platform/efl/ |
D | EventLoopEfl.cpp | 30 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|
/external/webkit/Source/WebCore/platform/android/ |
D | EventLoopAndroid.cpp | 33 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|
/external/webkit/Source/WebCore/platform/haiku/ |
D | EventLoopHaiku.cpp | 34 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|
/external/webkit/Source/WebCore/platform/qt/ |
D | EventLoopQt.cpp | 27 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | EventLoopGtk.cpp | 27 void EventLoop::cycle() in cycle() function in WebCore::EventLoop
|