Searched refs:times (Results 26 - 50 of 183) sorted by relevance

12345678

/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dmillion.S12 dec %rcx # repeat count times
H A Drep_prefix.S3 # only count as one instruction, even though they repeat many times
58 rep stosb # store d 16384 times, auto-increment
64 rep lodsb # load byte 16384 times, auto-increment
75 rep stosw # store 8192 times, auto-increment
81 rep lodsw # load 8192 times, auto-increment
92 rep stosl # store 4096 times, auto-increment
98 rep lodsl # load 4096 times, auto-increment
109 rep stosq # store 2048 times, auto-increment
115 rep lodsq # load 2048 times, auto-increment
/external/valgrind/exp-bbv/tests/x86-linux/
H A 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/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
H A Dmain.py140 times=[],
144 times = []
148 struct[-1]['times'].append((name, None))
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[
[all...]
H A Dwrite.py116 times = dict((
118 ) for idx, (port, time) in enumerate(benched['times']))
124 if port not in times:
127 time, size = times[port]
260 times = []
261 space = max([len(uni(port)) for port, _ in single['times']])
262 for idx, (port, time) in enumerate(single['times']):
267 times.append(time)
279 if len(times) > 1:
281 '%.2f' % (timed / time) for timed in times[
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Dmain.py153 times=[],
157 times = []
161 struct[-1]['times'].append((name, None))
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[
[all...]
H A Dwrite.py119 times = dict((
121 ) for idx, (port, time) in enumerate(benched['times']))
127 if port not in times:
130 time, size = times[port]
263 times = []
264 space = max([len(uni(port)) for port, _ in single['times']])
265 for idx, (port, time) in enumerate(single['times']):
270 times.append(time)
282 if len(times) > 1:
284 '%.2f' % (timed / time) for timed in times[
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DBlenderTrack.java98 * @param times
107 public void setKeyframes(float[] times, Vector3f[] translations, argument
110 boneTrack.setKeyframes(times, translations, rotations, scales);
112 spatialTrack.setKeyframes(times, translations, rotations, scales);
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
H A DTestSpatialAnim.java57 float[] times = new float[totalFrames];
62 times[i] = t;
69 SpatialTrack spatialTrack = new SpatialTrack(times, translations, rotations, scales);
/external/ceres-solver/internal/ceres/
H A Dexecution_summary.h45 // information about their execution. e.g., ExecutionSummary::times
46 // can be used for reporting times associated with various activities.
59 const map<string, double>& times() const { return times_; } function in class:ceres::internal::ExecutionSummary
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DIpo.java133 float[] times = new float[framesAmount + 1];
146 times[index] = start + (frame - 1) * timeBetweenFrames;
229 calculatedTrack = new SpatialTrack(times, translations, rotations, scales);
231 calculatedTrack = new BoneTrack(targetIndex, times, translations, rotations, scales);
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_int.h28 #include <sys/times.h>
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_int.h28 #include <sys/times.h>
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DSyncSampleIntersectFinderImpl.java73 List<long[]> times = getSyncSamplesTimestamps(movie, track);
74 final long[] commonIndices = getCommonIndices(track.getSyncSamples(), getTimes(track, movie), track.getTrackMetaData().getTimescale(), times.toArray(new long[times.size()][]));
163 List<long[]> times = new LinkedList<long[]>();
169 times.add(currentTrackTimes);
173 return times;
183 for (long[] times : otherTracksTimes) {
184 foundInEveryRef &= (Arrays.binarySearch(times, syncSampleTimes[i]) >= 0);
195 // nuSyncSampleTimes: Contains the times of all sync samples
/external/valgrind/exp-bbv/tests/x86/
H A 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
H A Dmillion.S12 dec %ecx # repeat count times
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DTabber.java18 * Repeats a string n times
20 * @param times
23 public static String repeat(String source, int times) { argument
24 if (times <= 0) return "";
25 if (times == 1) return source;
27 for (; times > 0; --times) {
/external/mockito/src/org/mockito/
H A DMockito.java129 * of how many times it is called. </li>
132 * the same arguments many times.
207 * mockedList.add("three times");
208 * mockedList.add("three times");
209 * mockedList.add("three times");
211 * //following two verifications work exactly the same - times(1) is used by default
213 * verify(mockedList, times(1)).add("once");
216 * verify(mockedList, times(2)).add("twice");
217 * verify(mockedList, times(3)).add("three times");
1937 public static VerificationMode times(int wantedNumberOfInvocations) { method in class:Mockito
[all...]
/external/toybox/toys/posix/
H A Dcpio.c195 struct timespec times[2]; local
197 memset(times, 0, sizeof(struct timespec)*2);
198 times[0].tv_sec = times[1].tv_sec = timestamp;
199 err = utimensat(AT_FDCWD, name, times, AT_SYMLINK_NOFOLLOW);
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddct_mmx.asm226 times 4 dw 1
229 times 4 dw 7
232 times 2 dd 14500
235 times 2 dd 7500
238 times 2 dd 12000
241 times 2 dd 51000
/external/skia/tools/
H A DPictureResultsWriter.h231 SkTArray<double> times; variable
235 times.push_back((*vals).asDouble());
237 qsort(static_cast<void*>(times.begin()), times.count(),
239 data["value"] = times[static_cast<int>(times.count() * 0.25f)];
/external/vogar/test/vogar/target/
H A DJUnitRunnerTest.java24 import static org.mockito.Mockito.times;
93 verify(monitor, times(4)).outcomeFinished(Result.SUCCESS);
108 verify(monitor, times(3)).outcomeFinished(Result.SUCCESS);
132 verify(monitor, times(2)).outcomeFinished(Result.SUCCESS);
205 verify(monitor, times(2)).outcomeFinished(Result.EXEC_FAILED);
238 verify(monitor, times(8)).outcomeFinished(Result.SUCCESS);
/external/libvpx/libvpx/vp8/common/x86/
H A 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
[all...]
/external/bison/lib/
H A Dsys_stat.in.h396 _GL_FUNCDECL_RPL (futimens, int, (int fd, struct timespec const times[2]));
397 _GL_CXXALIAS_RPL (futimens, int, (int fd, struct timespec const times[2]));
400 _GL_FUNCDECL_SYS (futimens, int, (int fd, struct timespec const times[2]));
402 _GL_CXXALIAS_SYS (futimens, int, (int fd, struct timespec const times[2]));
701 struct timespec const times[2], int flag)
704 struct timespec const times[2], int flag));
708 struct timespec const times[2], int flag)
712 struct timespec const times[2], int flag));
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh95 #include <sys/times.h>

Completed in 754 milliseconds

12345678