Home
last modified time | relevance | path

Searched refs:cycle (Results 1 – 25 of 173) sorted by relevance

1234567

/external/jmonkeyengine/engine/src/core/com/jme3/math/
DSpline.java30 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/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dsummary-mock.js59 cycle: function() method in Cycler
112 result[builders.cycle()] = { actual: expectations.cycle() };
126 summary: bugTitles.cycle(),
127 author: people.cycle(),
128 reviewer: people.cycle()
132 testName: testNames.cycle(),
143 builderNameList.push(builders.cycle());
/external/llvm/lib/CodeGen/
DScoreboardHazardRecognizer.cpp123 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/
DIteratorsTest.java486 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/clang/test/SemaObjC/
Dwarn-retain-cycle.m12 …]; // 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/qemu/distrib/sdl-1.2.15/src/audio/
DSDL_audiodev.c151 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/chromium_org/tools/page_cycler/indexed_db/
Dhead.js10 var cycle; variable
68 if (cycle == iterations) {
79 var url = doc + '?n=' + iterations + '&i=' + cycle +
108 cycle = f[1] - 0 + 1;
/external/chromium_org/tools/page_cycler/database/
Dhead.js10 var cycle; variable
68 if (cycle == iterations) {
79 var url = doc + '?n=' + iterations + '&i=' + cycle +
108 cycle = f[1] - 0 + 1;
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp1932 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/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp1932 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/
DFragmentedMp4Builder.java85 …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/chromium_org/third_party/WebKit/Source/wtf/
DAutodrainedPool.h46 WTF_EXPORT void cycle();
50 void cycle() { }
/external/smack/src/org/xbill/DNS/
DRRset.java113 iterator(boolean data, boolean cycle) { in iterator() argument
126 if (!cycle) in iterator()
155 rrs(boolean cycle) { in rrs() argument
156 return iterator(true, cycle); in rrs()
/external/llvm/lib/Target/X86/
DX86SchedSandyBridge.td17 // instructions per cycle.
27 // Sandy Bridge can issue micro-ops to 6 different ports in one cycle.
68 // Register variant is using a single cycle on ExePort.
71 // Memory variant also uses a cycle on port 2/3 and adds 4 cycles to the
78 // A folded store needs a cycle on port 4 for the store data, but it does not
79 // need an extra port 2/3 cycle to recompute the address.
DX86SchedHaswell.td17 // instructions per cycle.
26 // Haswell can issue micro-ops to 8 different ports in one cycle.
73 // Register variant is using a single cycle on ExePort.
76 // Memory variant also uses a cycle on port 2/3 and adds 4 cycles to the
83 // A folded store needs a cycle on port 4 for the store data, but it does not
84 // need an extra port 2/3 cycle to recompute the address.
/external/dropbear/libtomcrypt/src/prngs/
Dsober128.c72 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammarSanity.java181 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/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
Dsha1-armv4-large.S180 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
252 eor r11,r11,r12 @ 1 cycle stall
268 eor r11,r11,r12 @ 1 cycle stall
284 eor r11,r11,r12 @ 1 cycle stall
300 eor r11,r11,r12 @ 1 cycle stall
316 eor r11,r11,r12 @ 1 cycle stall
339 eor r11,r11,r12 @ 1 cycle stall
[all …]
/external/openssl/crypto/sha/asm/
Dsha1-armv4-large.S180 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
252 eor r11,r11,r12 @ 1 cycle stall
268 eor r11,r11,r12 @ 1 cycle stall
284 eor r11,r11,r12 @ 1 cycle stall
300 eor r11,r11,r12 @ 1 cycle stall
316 eor r11,r11,r12 @ 1 cycle stall
339 eor r11,r11,r12 @ 1 cycle stall
[all …]
/external/llvm/lib/Target/ARM/
DARMScheduleA8.td96 // 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_org/content/public/test/
Ddownload_test_observer.cc397 void DownloadTestFlushObserver::PingFileThread(int cycle) { in PingFileThread() argument
400 base::Bind(&DownloadTestFlushObserver::PingIOThread, this, cycle)); in PingFileThread()
403 void DownloadTestFlushObserver::PingIOThread(int cycle) { in PingIOThread() argument
404 if (--cycle) { in PingIOThread()
407 base::Bind(&DownloadTestFlushObserver::PingFileThread, this, cycle)); in PingIOThread()
/external/chromium_org/third_party/smhasher/src/
DKeysetTest.h261 uint8_t * cycle = new uint8_t[cycleLen + 16]; in CyclicKeyTest() local
268 r.rand_p(cycle,cycleLen); in CyclicKeyTest()
270 *(uint32_t*)cycle = f3mix(i ^ 0x746a94f1); in CyclicKeyTest()
274 key[j] = cycle[j % cycleLen]; in CyclicKeyTest()
287 delete [] cycle; in CyclicKeyTest()
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_folder_target_unittest.mm23 // 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/chromium_org/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_folder_target_unittest.mm25 // retain cycle (see below; search for "retain cycle").
78 // 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/
Drewrite-block-var.m.result14 __weak Foo *x = p; // __block used just to break cycle.
38 __weak Foo *x = p; // __block used just to break cycle.

1234567