Searched refs:times (Results 1 - 25 of 183) sorted by relevance

12345678

/external/icu/icu4c/source/test/perf/howExpensiveIs/
H A Dsieve.cpp81 double midpoint(double *times, double i, int n) { argument
86 return times[(int)fl];
88 return (times[(int)fl]+times[(int)ce])/2;
92 double medianof(double *times, int n, int type) { argument
95 return midpoint(times,n/4,n);
97 return midpoint(times,n/2,n);
99 return midpoint(times,(n/2)+(n/4),n);
104 double qs(double *times, int n, double *q1, double *q2, double *q3) { argument
105 *q1 = medianof(times,
111 uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError) argument
197 double times[SAMPLES]; local
[all...]
H A Dsieve.h23 * @param times array of times (modified/sorted)
28 U_INTERNAL double uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError);
/external/toybox/toys/posix/
H A Dwho.c37 char *times; local
40 times = ctime(&time);
41 time_size = strlen(times) - 2;
/external/compiler-rt/test/msan/
H A Dtimes.cc6 #include <sys/times.h>
11 clock_t res = times(&t);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DBoneTrack.java42 * Contains a list of transforms and times for each keyframe.
54 * Transforms and times for track.
59 private float[] times; field in class:BoneTrack
70 * @param times a float array with the time of each frame
74 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations) { argument
76 this.setKeyframes(times, translations, rotations);
82 * @param times a float array with the time of each frame
87 public BoneTrack(int targetBoneIndex, float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) { argument
89 this.setKeyframes(times, translations, rotations, scales);
128 return times;
145 setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations) argument
168 setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) argument
[all...]
H A DSpatialTrack.java37 * The times of the animations frames.
39 private float[] times; field in class:SpatialTrack
47 * @param times
56 public SpatialTrack(float[] times, Vector3f[] translations, argument
58 setKeyframes(times, translations, rotations, scales);
78 int lastFrame = times.length - 1;
87 } else if (time >= times[lastFrame]) {
99 for (int i = 0; i < lastFrame && times[i] < time; ++i) {
104 float blend = (time - times[startFrame]) / (times[endFram
146 setKeyframes(float[] times, Vector3f[] translations, Quaternion[] rotations, Vector3f[] scales) argument
[all...]
H A DPoseTrack.java51 private float[] times; field in class:PoseTrack
97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){ argument
99 this.times = times;
123 if (time < times[0]) {
125 } else if (time > times[times.length - 1]) {
126 applyFrame(target, times.length - 1, weight);
129 for (int i = 0; i < times.length; i++) {
130 if (times[
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DIdleConnectionHandler.java98 TimeValues times = connectionToTimes.remove(connection);
99 if(times == null) {
103 return System.currentTimeMillis() <= times.timeExpires;
134 TimeValues times = connectionToTimes.get(conn);
135 Long connectionTime = times.timeAdded;
162 TimeValues times = connectionToTimes.get(conn);
163 if(times.timeExpires <= now) {
165 log.debug("Closing connection, expired @: " + times.timeExpires);
/external/webrtc/src/common_audio/signal_processing/
H A Dget_scaling_square.c20 int WebRtcSpl_GetScalingSquare(WebRtc_Word16 *in_vector, int in_vector_length, int times) argument
22 int nbits = WebRtcSpl_GetSizeInBits(times);
/external/easymock/src/org/easymock/
H A DMockControl.java191 * number of times, and will react by returning silently.
193 * @param times
194 * the number of times that the call is expected.
200 public void setVoidCallable(int times) { argument
203 .times(times);
208 * number of times, and will react by throwing the provided Throwable.
212 * @param times
213 * the number of times that the call is expected.
223 public void setThrowable(Throwable throwable, int times) { argument
242 setReturnValue(Object value, int times) argument
[all...]
H A DIExpectationSetters.java111 * Expect the last invocation <code>count</code> times.
117 IExpectationSetters<T> times(int count); method in interface:IExpectationSetters
121 * <code>max</code> times.
129 IExpectationSetters<T> times(int min, int max); method in interface:IExpectationSetters
146 * Expect the last invocation any times.
/external/mockito/src/org/mockito/verification/
H A DVerificationWithTimeout.java14 * verify(mock, timeout(100).times(5)).foo();
29 * verify(mock, timeout(100).times(2)).someMethod("some arg");
38 public VerificationMode times(int wantedNumberOfInvocations); method in interface:VerificationWithTimeout
41 * Alias to times(0), see {@link #times(int)}
H A DTimeout.java73 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(0));
86 public VerificationMode times(int wantedNumberOfInvocations) { method in class:Timeout
87 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(wantedNumberOfInvocations));
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/server/
H A DAbstractFtpServer_MultipleStartAndStopTest.groovy23 * Test starting and stopping Abstract(Fake)FtpServer multiple times.
36 10.times {
53 5.times {
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/server/
H A DAbstractFtpServer_MultipleStartAndStopTest.groovy23 * Test starting and stopping Abstract(Fake)FtpServer multiple times.
36 10.times {
53 5.times {
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/core/server/
H A DAbstractFtpServer_MultipleStartAndStopTest.groovy23 * Test starting and stopping Abstract(Fake)FtpServer multiple times.
36 10.times {
53 5.times {
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/core/server/
H A DAbstractFtpServer_MultipleStartAndStopTest.groovy23 * Test starting and stopping Abstract(Fake)FtpServer multiple times.
36 10.times {
53 5.times {
/external/mockito/src/org/mockito/internal/verification/
H A DVerificationModeFactory.java24 public static Times times(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
/external/libvpx/libvpx/vp8/common/x86/
H A Dsubpixel_mmx.asm641 times 4 dw 0x40
646 times 8 dw 0
647 times 8 dw 0
648 times 8 dw 128
649 times 8 dw 0
650 times 8 dw 0
651 times 8 dw 0
653 times 8 dw 0
654 times 8 dw -6
655 times
[all...]
/external/deqp/framework/common/
H A DtcuCPUWarmup.cpp95 deInt64 times[numMeasurements]; local
101 times[i] = (deInt64)(deGetMicroseconds() - startTime);
104 if (floatMedian(times) >= singleMeasurementThreshold)
/external/easymock/src/org/easymock/internal/
H A DRecordState.java98 times(MocksControl.ONCE);
107 times(MocksControl.ONCE);
116 times(MocksControl.ONCE);
125 times(MocksControl.ONCE);
135 times(MocksControl.ONCE);
147 times(MocksControl.ONCE);
176 times(MocksControl.ONCE);
187 times(MocksControl.ONCE);
199 times(MocksControl.ONCE);
209 times(MocksContro
216 public void times(Range range) { method in class:RecordState
[all...]
H A DIMocksControlState.java44 void times(Range range); method in interface:IMocksControlState
H A DMocksControl.java218 public IExpectationSetters<Object> times(int times) { argument
220 state.times(new Range(times));
227 public IExpectationSetters<Object> times(int min, int max) { method in class:MocksControl
229 state.times(new Range(min, max));
238 state.times(ONCE);
247 state.times(AT_LEAST_ONCE);
256 state.times(ZERO_OR_MORE);
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_clock.c37 #include <sys/times.h>
/external/valgrind/exp-bbv/tests/amd64-linux/
H A 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

Completed in 682 milliseconds

12345678