Home
last modified time | relevance | path

Searched refs:times (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DBoneTrack.java59 private float[] times; field in BoneTrack
74 …public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotatio… in BoneTrack() argument
76 this.setKeyframes(times, translations, rotations); in BoneTrack()
87 …public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotatio… in BoneTrack() argument
89 this.setKeyframes(times, translations, rotations, scales); in BoneTrack()
128 return times; in getTimes()
145 public void setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations) { in setKeyframes() argument
146 if (times.length == 0) { in setKeyframes()
150 assert times.length == translations.length && times.length == rotations.length; in setKeyframes()
152 this.times = times; in setKeyframes()
[all …]
DSpatialTrack.java39 private float[] times; field in SpatialTrack
56 public SpatialTrack(float[] times, Vector3f[] translations, in SpatialTrack() argument
58 setKeyframes(times, translations, rotations, scales); in SpatialTrack()
78 int lastFrame = times.length - 1; in setTime()
87 } else if (time >= times[lastFrame]) { in setTime()
99 for (int i = 0; i < lastFrame && times[i] < time; ++i) { in setTime()
104 float blend = (time - times[startFrame]) / (times[endFrame] - times[startFrame]); in setTime()
146 public void setKeyframes(float[] times, Vector3f[] translations, in setKeyframes() argument
148 if (times.length == 0) { in setKeyframes()
152 this.times = times; in setKeyframes()
[all …]
DPoseTrack.java51 private float[] times; field in PoseTrack
97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){ in PoseTrack() argument
99 this.times = times; in PoseTrack()
147 return times == null ? 0 : times[times.length - 1] - times[0]; in getLength()
158 result.times = this.times.clone(); in clone()
176 out.write(times, "times", null); in write()
184 times = in.readFloatArray("times", null); in read()
/external/libpng/contrib/pngsuite/
DREADME42 Filter 0 was used 32 times
44 Filter 0 was used 32 times
46 Filter 0 was used 32 times
48 Filter 1 was used 9 times
49 Filter 4 was used 23 times
51 Filter 1 was used 1 times
52 Filter 2 was used 31 times
54 Filter 1 was used 5 times
55 Filter 4 was used 27 times
57 Filter 1 was used 1 times
[all …]
/external/qemu/
Doslib-posix.c113 int qemu_utimensat(int dirfd, const char *path, const struct timespec *times, in qemu_utimensat() argument
122 ret = utimensat(dirfd, path, times, flags); in qemu_utimensat()
130 if (times[0].tv_nsec == UTIME_OMIT && times[1].tv_nsec == UTIME_OMIT) { in qemu_utimensat()
133 if (times[0].tv_nsec == UTIME_NOW && times[1].tv_nsec == UTIME_NOW) { in qemu_utimensat()
138 if (times[0].tv_nsec == UTIME_NOW || times[1].tv_nsec == UTIME_NOW) { in qemu_utimensat()
141 if (times[0].tv_nsec == UTIME_OMIT || times[1].tv_nsec == UTIME_OMIT) { in qemu_utimensat()
146 if (times[i].tv_nsec == UTIME_NOW) { in qemu_utimensat()
149 } else if (times[i].tv_nsec == UTIME_OMIT) { in qemu_utimensat()
153 tv[i].tv_sec = times[i].tv_sec; in qemu_utimensat()
154 tv[i].tv_usec = times[i].tv_nsec / 1000; in qemu_utimensat()
/external/icu4c/data/rbnf/
Dfil.txt25 "%%number-times:",
37 "20: <%%number-times< p\u00FB[\u2019t >>];",
38 "100: <%%number-times< da\u00E1n[ at >>];",
39 "1000: <%%number-times< lib\u00F3[\u2019t >>];",
55 "20: <%%number-times< p\u00FB[\u2019t >>];",
56 "100: <%%number-times< da\u00E1n[ at >>];",
57 "1000: <%%number-times< lib\u00F3[\u2019t >>];",
58 "1000000: <%%number-times< mily\u00F3n[ at >>];",
59 "1000000000: <%%number-times< bily\u00F3n[ at >>];",
60 "1000000000000: <%%number-times< trily\u00F3n[ at >>];",
[all …]
/external/webkit/PerformanceTests/SunSpider/resources/
Dsunspider-standalone-driver.js31 var times = [];
32 times.length = tests.length;
38 times[j] = checkSyntax(testName);
40 times[j] = run(testName);
44 function recordResults(tests, times) argument
49 output += ' "' + tests[j] + '": ' + times[j] + ',\n';
57 recordResults(tests, times);
/external/chromium/chrome/browser/history/
Dtext_database_manager_unittest.cc66 std::vector<Time>* times) { in AddAllPages() argument
84 times->push_back(visit_row.visit_time); in AddAllPages()
93 times->push_back(visit_row.visit_time); in AddAllPages()
102 times->push_back(visit_row.visit_time); in AddAllPages()
112 times->push_back(visit_row.visit_time); in AddAllPages()
121 times->push_back(visit_row.visit_time); in AddAllPages()
131 times->push_back(visit_row.visit_time); in AddAllPages()
178 std::vector<Time> times; in TEST_F() local
179 AddAllPages(manager, &visit_db, &times); in TEST_F()
182 options.begin_time = times[0] - TimeDelta::FromDays(100); in TEST_F()
[all …]
/external/easymock/src/org/easymock/
DMockControl.java200 public void setVoidCallable(int times) { in setVoidCallable() argument
203 .times(times); in setVoidCallable()
223 public void setThrowable(Throwable throwable, int times) { in setThrowable() argument
226 .andThrow(throwable).times(times); in setThrowable()
242 public void setReturnValue(Object value, int times) { in setReturnValue() argument
245 .andReturn(value).times(times); in setReturnValue()
348 .times(minCount, maxCount); in setVoidCallable()
379 .andThrow(throwable).times(minCount, maxCount); in setThrowable()
408 .andReturn(value).times(minCount, maxCount); in setReturnValue()
512 EasyMock.expectLastCall().andReturn(value).times(count); in expectAndReturn()
[all …]
/external/webkit/PerformanceTests/Parser/resources/
Drunner.js16 var times = []; variable
61 function logStatistics(times) { argument
63 log("avg " + computeAverage(times));
64 log("median " + computeMedian(times));
65 log("stdev " + computeStdev(times));
66 log("min " + computeMin(times));
67 log("max " + computeMax(times));
79 times.push(time);
85 logStatistics(times);
/external/apache-http/src/org/apache/http/impl/conn/
DIdleConnectionHandler.java93 TimeValues times = connectionToTimes.remove(connection); in remove() local
94 if(times == null) { in remove()
98 return System.currentTimeMillis() <= times.timeExpires; in remove()
129 TimeValues times = connectionToTimes.get(conn); in closeIdleConnections() local
130 Long connectionTime = times.timeAdded; in closeIdleConnections()
157 TimeValues times = connectionToTimes.get(conn); in closeExpiredConnections() local
158 if(times.timeExpires <= now) { in closeExpiredConnections()
160 log.debug("Closing connection, expired @: " + times.timeExpires); in closeExpiredConnections()
/external/llvm/test/Analysis/Profiling/
Dprofiling-tool-chain.ll71 ; PROF:;;; %oneblock called 2 times.
76 ; PROF: ;;; Basic block executed 2 times.
83 ; PROF:;;; %main called 2 times.
88 ; PROF: ;;; Basic block executed 2 times.
107 ; PROF: ;;; Basic block executed 6 times.
115 ; PROF: ;;; Basic block executed 3 times.
122 ; PROF: ;;; Basic block executed 9 times.
131 ; PROF: ;;; Basic block executed 9 times.
144 ; PROF: ;;; Basic block executed 9 times.
154 ; PROF: ;;; Basic block executed 12 times.
[all …]
/external/easymock/src/org/easymock/internal/
DRecordState.java98 times(MocksControl.ONCE); in andReturn()
107 times(MocksControl.ONCE); in andThrow()
116 times(MocksControl.ONCE); in andAnswer()
125 times(MocksControl.ONCE); in andDelegateTo()
135 times(MocksControl.ONCE); in andStubReturn()
147 times(MocksControl.ONCE); in setDefaultReturnValue()
176 times(MocksControl.ONCE); in andStubThrow()
187 times(MocksControl.ONCE); in setDefaultThrowable()
199 times(MocksControl.ONCE); in andStubAnswer()
209 times(MocksControl.ONCE); in andStubDelegateTo()
[all …]
DMocksControl.java218 public IExpectationSetters<Object> times(int times) { in times() argument
220 state.times(new Range(times)); in times()
227 public IExpectationSetters<Object> times(int min, int max) { in times() method in MocksControl
229 state.times(new Range(min, max)); in times()
238 state.times(ONCE); in once()
247 state.times(AT_LEAST_ONCE); in atLeastOnce()
256 state.times(ZERO_OR_MORE); in anyTimes()
/external/bison/m4/
Dtimevar.m424 [AC_CHECK_HEADERS([sys/time.h sys/times.h])
31 # include <sys/times.h>
34 AC_CHECK_FUNCS([times])
36 AC_CHECK_DECLS([getrusage, times, clock, sysconf], [], [],
42 # include <sys/times.h>
55 # include <sys/times.h>
/external/stlport/test/unit/
Dtimes_test.cpp17 CPPUNIT_TEST(times);
21 void times();
29 void TimesTest::times() in times() function in TimesTest
/external/libvpx/vp8/common/x86/
Dpostproc_mmx.asm528 times 16 dw 16
529 times 8 dw 64
530 times 16 dw 16
531 times 8 dw 0
534 times 4 dw 0x40
/external/icu4c/test/intltest/
Dtzfmttst.cpp245 UDate *times; member
292 UDate times[NUM_PATTERNS]; in run() local
294 times[i] = 0; in run()
302 data.times[i] += times[i]; in run()
322 times[patidx] = 0; in run()
423 times[patidx] += (Calendar::getNow() - timer); in run()
471 UDate times[NUM_PATTERNS]; in TestTimeRoundTrip() local
473 times[i] = 0; in TestTimeRoundTrip()
503 data.times = times; in TestTimeRoundTrip()
545 logln(UnicodeString("") + data.times[i] + "ms (" + PATTERNS[i] + ")"); in TestTimeRoundTrip()
[all …]
/external/valgrind/main/exp-bbv/tests/amd64-linux/
Dclone_test.S15 dec %rcx # repeat count times
63 dec %rcx # repeat count times
72 dec %rcx # repeat count times
87 dec %rcx # repeat count times
/external/valgrind/main/exp-bbv/tests/x86-linux/
Dclone_test.S15 dec %ecx # repeat count times
63 dec %ecx # repeat count times
72 dec %ecx # repeat count times
87 dec %ecx # repeat count times
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DForwardingCheckedFutureTest.java49 expect(delegate.checkedGet()).andReturn(VALUE).times(2); in testCheckedGet()
57 expect(delegate.checkedGet(100, TIME_UNIT)).andReturn(VALUE).times(2); in testTimedCheckedGet()
67 .andThrow(new TimeoutException()).times(2); in testTimedCheckedGet_timeout()
82 expect(delegate.checkedGet()).andThrow(expected).times(2); in testCheckedGetException()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
DSyncSampleIntersectFinderImpl.java73 List<long[]> times = getSyncSamplesTimestamps(movie, track); in sampleNumbers() local
74 …Times(track, movie), track.getTrackMetaData().getTimescale(), times.toArray(new long[times.size()]… in sampleNumbers()
163 List<long[]> times = new LinkedList<long[]>(); in getSyncSamplesTimestamps() local
169 times.add(currentTrackTimes); in getSyncSamplesTimestamps()
173 return times; in getSyncSamplesTimestamps()
183 for (long[] times : otherTracksTimes) { in getCommonIndices()
184 foundInEveryRef &= (Arrays.binarySearch(times, syncSampleTimes[i]) >= 0); in getCommonIndices()
/external/valgrind/main/exp-bbv/tests/x86/
Drep_prefix.S3 # only count as one instruction, even though they repeat many times
43 rep stosb # store d 16384 times, auto-increment
49 rep lodsb # load byte 16384 times, auto-increment
60 rep stosw # store 8192 times, auto-increment
66 rep lodsw # load 8192 times, auto-increment
77 rep stosl # store 4096 times, auto-increment
83 rep lodsl # load 4096 times, auto-increment
/external/oprofile/events/arm/xscale1/
Devents16 event:0x0d counters:1,2 um:zero minimum:500 name:PC_CHANGE : number of times the program counter wa…
19 event:0x12 counters:1,2 um:zero minimum:500 name:BCU_DRAIN : number of times the BCU queues were dr…
20 event:0x14 counters:1,2 um:zero minimum:500 name:BCU_ECC_NO_ELOG : number of times the BCU detected…
21 event:0x15 counters:1,2 um:zero minimum:500 name:BCU_1_BIT_ERR : number of times the BCU detected a…
22 event:0x16 counters:1,2 um:zero minimum:500 name:RMW : number of times an RMW cycle occurred due to…
/external/oprofile/events/arm/xscale2/
Devents16 event:0x0d counters:1,2,3,4 um:zero minimum:500 name:PC_CHANGE : number of times the program counte…
19 event:0x12 counters:1,2,3,4 um:zero minimum:500 name:BCU_DRAIN : number of times the BCU queues wer…
20 event:0x14 counters:1,2,3,4 um:zero minimum:500 name:BCU_ECC_NO_ELOG : number of times the BCU dete…
21 event:0x15 counters:1,2,3,4 um:zero minimum:500 name:BCU_1_BIT_ERR : number of times the BCU detect…
22 event:0x16 counters:1,2,3,4 um:zero minimum:500 name:RMW : number of times an RMW cycle occurred du…

12345678910>>...18