/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/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | IteratorsTest.java | 470 Iterator<String> cycle = Iterators.<String>cycle(); in testCycleOfEmpty() local 471 assertFalse(cycle.hasNext()); in testCycleOfEmpty() 475 Iterator<String> cycle = Iterators.cycle("a"); in testCycleOfOne() local 477 assertTrue(cycle.hasNext()); in testCycleOfOne() 478 assertEquals("a", cycle.next()); in testCycleOfOne() 484 Iterator<String> cycle = Iterators.cycle(iterable); in testCycleOfOneWithRemove() local 485 assertTrue(cycle.hasNext()); in testCycleOfOneWithRemove() 486 assertEquals("a", cycle.next()); in testCycleOfOneWithRemove() 487 cycle.remove(); in testCycleOfOneWithRemove() 489 assertFalse(cycle.hasNext()); in testCycleOfOneWithRemove() [all …]
|
/external/llvm/lib/CodeGen/ |
D | ScoreboardHazardRecognizer.cpp | 124 int cycle = Stalls; in getHazardType() local 141 int StageCycle = cycle + (int)i; in getHazardType() 173 cycle += IS->getNextCycles(); in getHazardType() 192 unsigned cycle = 0; in EmitInstruction() local 201 assert(((cycle + i) < RequiredScoreboard.getDepth()) && in EmitInstruction() 208 freeUnits &= ~ReservedScoreboard[cycle + i]; in EmitInstruction() 212 freeUnits &= ~RequiredScoreboard[cycle + i]; in EmitInstruction() 224 RequiredScoreboard[cycle + i] |= freeUnit; in EmitInstruction() 226 ReservedScoreboard[cycle + i] |= freeUnit; in EmitInstruction() 230 cycle += IS->getNextCycles(); in EmitInstruction()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | IteratorsTest.java | 534 Iterator<String> cycle = Iterators.<String>cycle(); in testCycleOfEmpty() local 535 assertFalse(cycle.hasNext()); in testCycleOfEmpty() 539 Iterator<String> cycle = Iterators.cycle("a"); in testCycleOfOne() local 541 assertTrue(cycle.hasNext()); in testCycleOfOne() 542 assertEquals("a", cycle.next()); in testCycleOfOne() 548 Iterator<String> cycle = Iterators.cycle(iterable); in testCycleOfOneWithRemove() local 549 assertTrue(cycle.hasNext()); in testCycleOfOneWithRemove() 550 assertEquals("a", cycle.next()); in testCycleOfOneWithRemove() 551 cycle.remove(); in testCycleOfOneWithRemove() 553 assertFalse(cycle.hasNext()); in testCycleOfOneWithRemove() [all …]
|
D | FluentIterableTest.java | 136 FluentIterable<String> cycle = FluentIterable.from(asList("a", "b")).cycle(); in testCycle() local 139 for (String string : cycle) { in testCycle() 149 assertEquals("a", cycle.iterator().next()); in testCycle() 153 FluentIterable<Integer> cycle = fluent(1, 2).cycle(); in testCycle_removingAllElementsStopsCycle() local 154 Iterator<Integer> iterator = cycle.iterator(); in testCycle_removingAllElementsStopsCycle() 160 assertFalse(cycle.iterator().hasNext()); in testCycle_removingAllElementsStopsCycle()
|
/external/clang/test/SemaObjC/ |
D | warn-retain-cycle.m | 12 …]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 14 …}; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 17 …]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} 31 … // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} \ 48 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will … 49 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b… 63 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block… 69 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will… 71 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl… 74 …// expected-warning {{capturing 'self' strongly in this block is likely to lead to a retain cycle}} [all …]
|
/external/mesa3d/src/gallium/drivers/nvc0/codegen/ |
D | nv50_ir_emit_nvc0.cpp | 1932 void print(int cycle) in print() 1935 if (rd.r[i] > cycle) in print() 1937 if (wr.r[i] > cycle) in print() 1941 if (rd.p[i] > cycle) in print() 1943 if (wr.p[i] > cycle) in print() 1946 if (rd.c > cycle) in print() 1948 if (wr.c > cycle) in print() 1950 if (res.sfu > cycle) in print() 1952 if (res.imul > cycle) in print() 1954 if (res.tex > cycle) in print() [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/llvm/lib/Target/PowerPC/ |
D | PPCScheduleP7.td | 47 // Each LSU pipeline can complete a load or store in one cycle. 52 // FX loads have a two cycle load-to-use latency (so one "bubble" cycle). 53 // VSU loads have a three cycle load-to-use latency (so two "bubble" cycle). 55 // Frequent FX ops. take only one cycle and results can be used again in the 56 // next cycle (there is a self-bypass). Getting results from the other FX 57 // pipeline takes an additional cycle. 62 // (either to a float or XC op). prevents dispatch in that cycle to VS2 of any 70 // share the same write-back, and have a 5-cycle latency difference, so the 376 let IssueWidth = 6; // 4 (non-branch) instructions are dispatched per cycle. 379 // cycle (from all queues) is 8.
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | Scanner.java | 137 public void scanStarted(int cycle) throws Exception; in scanStarted() argument 138 public void scanEnded(int cycle) throws Exception; in scanEnded() argument 707 private void reportScanStart(int cycle) 715 ((ScanCycleListener)listener).scanStarted(cycle); 720 LOG.warn(listener + " failed on scan start for cycle " + cycle, e); 728 private void reportScanEnd(int cycle) 736 ((ScanCycleListener)listener).scanEnded(cycle); 741 LOG.warn(listener + " failed on scan end for cycle " + cycle, e);
|
/external/llvm/lib/Target/X86/ |
D | X86ScheduleBtVer2.td | 18 // decode 2 instructions per cycle. 21 let LoadLatency = 5; // FPU latency (worse case cf Integer 3 cycle latency) 33 // Jaguar can issue up to 6 micro-ops in one cycle 80 // Register variant is using a single cycle on ExePort. 83 // Memory variant also uses a cycle on JLAGU and adds 3 cycles to the 93 // Register variant is using a single cycle on ExePort. 96 // Memory variant also uses a cycle on JLAGU and adds 5 cycles to the 103 // A folded store needs a cycle on the SAGU for the store data.
|
D | X86SchedSandyBridge.td | 17 // instructions per cycle. 34 // Sandy Bridge can issue micro-ops to 6 different ports in one cycle. 75 // Register variant is using a single cycle on ExePort. 78 // Memory variant also uses a cycle on port 2/3 and adds 4 cycles to the 85 // A folded store needs a cycle on port 4 for the store data, but it does not 86 // need an extra port 2/3 cycle to recompute the address.
|
D | X86ScheduleSLM.td | 17 // instructions per cycle. 62 // Register variant is using a single cycle on ExePort. 65 // Memory variant also uses a cycle on MEC_RSV and adds 3 cycles to the 72 // A folded store needs a cycle on MEC_RSV for the store data, but it does not 73 // need an extra port cycle to recompute the address.
|
/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/llvm/test/Verifier/ |
D | alias.ll | 17 ; CHECK: Aliases cannot form a cycle 19 ; CHECK-NEXT: Aliases cannot form a cycle
|
/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/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | StripedBenchmark.java | 19 import static com.google.common.collect.Iterables.cycle; 86 bulkGetSet = ImmutableList.copyOf(limit(cycle(asList), 10)); in setUp()
|
/external/valgrind/memcheck/tests/ |
D | leak-cycle.vgtest | 1 prog: leak-cycle
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | ChineseCalendar.java | 447 int cycle = internalGet(ERA, 1) - 1; // 0-based cycle in handleGetExtendedYear() local 449 year = cycle * 60 + internalGet(YEAR, 1) - (epochYear - CHINESE_EPOCH_YEAR); in handleGetExtendedYear() 907 int cycle = floorDivide(cycle_year-1, 60, yearOfCycle); in computeChineseFields() local 908 internalSet(ERA, cycle+1); in computeChineseFields()
|
/external/libxml2/result/relaxng/ |
D | tutor4_4_1.err | 1 ./test/relaxng/tutor4_4.rng:25: element ref: Relax-NG parser error : Detected a cycle in inline ref…
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64.td | 37 "Has zero-cycle register moves">; 41 "Has zero-cycle zeroing instructions">;
|
/external/v8/test/webkit/fast/js/ |
D | Promise-resolve-with-itself-expected.txt | 6 PASS result is "TypeError: Chaining cycle detected for promise #<Promise>"
|