Home
last modified time | relevance | path

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

12345678910>>...21

/external/icu/icu4c/source/test/perf/howExpensiveIs/
Dsieve.cpp81 double midpoint(double *times, double i, int n) { in midpoint() argument
86 return times[(int)fl]; in midpoint()
88 return (times[(int)fl]+times[(int)ce])/2; in midpoint()
92 double medianof(double *times, int n, int type) { in medianof() argument
95 return midpoint(times,n/4,n); in medianof()
97 return midpoint(times,n/2,n); in medianof()
99 return midpoint(times,(n/2)+(n/4),n); in medianof()
104 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() argument
105 *q1 = medianof(times,n,1); in qs()
106 *q2 = medianof(times,n,2); in qs()
[all …]
/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/
DREADME62 Filter 0 was used 32 times
64 Filter 0 was used 32 times
66 Filter 0 was used 32 times
68 Filter 1 was used 9 times
69 Filter 4 was used 23 times
71 Filter 1 was used 1 times
72 Filter 2 was used 31 times
74 Filter 1 was used 5 times
75 Filter 4 was used 27 times
77 Filter 1 was used 1 times
[all …]
/external/icu/icu4c/source/data/rbnf/
Dfil.txt22 "%%number-times:",
34 "20: <%%number-times< p\u00FB[\u2019t >>];",
35 "100: <%%number-times< da\u00E1n[ at >>];",
36 "1000: <%%number-times< lib\u00F3[\u2019t >>];",
52 "20: <%%number-times< p\u00FB[\u2019t >>];",
53 "100: <%%number-times< da\u00E1n[ at >>];",
54 "1000: <%%number-times< lib\u00F3[\u2019t >>];",
55 "1000000: <%%number-times< mily\u00F3n[ at >>];",
56 "1000000000: <%%number-times< bily\u00F3n[ at >>];",
57 "1000000000000: <%%number-times< trily\u00F3n[ at >>];",
[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/clang/test/SemaObjC/
Darc-repeated-weak.mm22 …use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this …
57 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}}
66 …); // expected-warning{{weak property 'weakProp' may be accessed multiple times in this function a…
71 …trongProp.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times}}
76 …licitProp); // expected-warning{{weak implicit property 'implicitProp' is accessed multiple times}}
81 …Test.weakProp); // expected-warning{{weak implicit property 'weakProp' is accessed multiple times}}
92 …e(a->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times}}
98 use(a); // expected-warning{{weak variable 'a' is accessed multiple times}}
103 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times}}
114 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times}}
[all …]
/external/apache-http/src/org/apache/http/impl/conn/
DIdleConnectionHandler.java98 TimeValues times = connectionToTimes.remove(connection); in remove() local
99 if(times == null) { in remove()
103 return System.currentTimeMillis() <= times.timeExpires; in remove()
134 TimeValues times = connectionToTimes.get(conn); in closeIdleConnections() local
135 Long connectionTime = times.timeAdded; in closeIdleConnections()
162 TimeValues times = connectionToTimes.get(conn); in closeExpiredConnections() local
163 if(times.timeExpires <= now) { in closeExpiredConnections()
165 log.debug("Closing connection, expired @: " + times.timeExpires); in closeExpiredConnections()
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
Dmain.py140 times=[],
144 times = []
171 times.append(result / xcount)
174 print_("%8.2f ms" % times[-1], end=" ")
176 if len(times) <= 1:
180 '%.2f' % (timed / times[-1]) for timed in times[:-1]
182 struct[-1]['times'].append((name, times[-1]))
Dwrite.py116 times = dict((
124 if port not in times:
127 time, size = times[port]
260 times = []
267 times.append(time)
279 if len(times) > 1:
281 '%.2f' % (timed / time) for timed in times[:-1]
/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/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
Dmain.py153 times=[],
157 times = []
184 times.append(result / xcount)
187 print_("%8.2f ms" % times[-1], end=" ")
189 if len(times) <= 1:
193 '%.2f' % (timed / times[-1]) for timed in times[:-1]
195 struct[-1]['times'].append((name, times[-1]))
Dwrite.py119 times = dict((
127 if port not in times:
130 time, size = times[port]
263 times = []
270 times.append(time)
282 if len(times) > 1:
284 '%.2f' % (timed / time) for timed in times[:-1]
/external/bison/m4/
Dtimevar.m422 [AC_CHECK_HEADERS([sys/time.h sys/times.h])
29 # include <sys/times.h>
32 AC_CHECK_FUNCS([times])
34 AC_CHECK_DECLS([getrusage, times, clock, sysconf], [], [],
40 # include <sys/times.h>
53 # include <sys/times.h>
/external/mesa3d/src/gallium/docs/source/
Dtgsi.rst122 dst.x = src0.x \times src1.x
124 dst.y = src0.y \times src1.y
126 dst.z = src0.z \times src1.z
128 dst.w = src0.w \times src1.w
150 dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z
159 dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z + src0.w \times src1.w
168 dst.y = src0.y \times src1.y
231 dst.x = src0.x \times src1.x + src2.x
233 dst.y = src0.y \times src1.y + src2.y
235 dst.z = src0.z \times src1.z + src2.z
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dsubpel_variance_sse2.asm14 pw_8: times 8 dw 8
15 bilin_filter_m_sse2: times 8 dw 16
16 times 8 dw 0
17 times 8 dw 14
18 times 8 dw 2
19 times 8 dw 12
20 times 8 dw 4
21 times 8 dw 10
22 times 8 dw 6
23 times 16 dw 8
[all …]
/external/toybox/toys/posix/
Dwho.c37 char *times; in who_main() local
40 times = ctime(&time); in who_main()
41 time_size = strlen(times) - 2; in who_main()
/external/valgrind/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/valgrind/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/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/libvpx/libvpx/vp8/common/x86/
Dsubpixel_ssse3.asm1468 times 8 dw 0x40
1472 times 8 db 0, 0 ;placeholder
1473 times 8 db 0, 0
1474 times 8 db 2, 1
1475 times 8 db 0, 0
1476 times 8 db 3, 3
1477 times 8 db 0, 0
1478 times 8 db 1, 2
1479 times 8 db 0, 0
1481 times 8 db 0, 0 ;placeholder
[all …]
/external/libpng/contrib/libtests/
Dtarith.c616 png_int_32 times, div; in validation_muldiv() local
632 times = div = 0; in validation_muldiv()
651 if (times < 0) u2 = -times, n = !n; else u2 = times; in validation_muldiv()
663 fp *= times; in validation_muldiv()
667 a, times, hi, lo, fp); in validation_muldiv()
690 fprintf(stderr, "TEST %d * %d / %d -> %lld (%s)\n", a, times, div, in validation_muldiv()
694 if (png_muldiv(&result, a, times, div) != ok) in validation_muldiv()
699 times, div, fp); in validation_muldiv()
702 times, div, result, fp); in validation_muldiv()
707 fprintf(stderr, "%d * %d / %d -> %d not %lld\n", a, times, div, result, in validation_muldiv()
[all …]
/external/valgrind/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

12345678910>>...21