Searched refs:times (Results 76 - 100 of 183) sorted by relevance

12345678

/external/toybox/
H A Dtoys.h38 #include <sys/times.h>
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_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 1
[all...]
H A Dintrapred_sse2.asm14 pw_4: times 8 dw 4
15 pw_8: times 8 dw 8
16 pw_16: times 8 dw 16
17 pw_32: times 8 dw 32
18 dc_128: times 16 db 128
19 pw2_4: times 8 dw 2
20 pw2_8: times 8 dw 4
21 pw2_16: times 8 dw 8
22 pw2_32: times 8 dw 16
H A Dhighbd_intrapred_sse2.asm14 pw_4: times 8 dw 4
15 pw_8: times 8 dw 8
16 pw_16: times 4 dd 16
17 pw_32: times 4 dd 32
/external/strace/
H A Dresource.c33 #include <sys/times.h>
320 SYS_FUNC(times)
/external/toybox/lib/
H A Dportability.h147 int futimens(int fd, const struct timespec times[2]);
148 int utimensat(int fd, const char *path, const struct timespec times[2], int flag);
/external/valgrind/gdbserver_tests/
H A Dmcwatchpoints.stdoutB.exp38 $1 = 'p' <repeats 50000 times>
/external/guava/guava-tests/test/com/google/common/reflect/
H A DInvokableTest.java98 assertEquals(1, prepender.times);
106 assertEquals(1, prepender.times);
555 private final int times; field in class:InvokableTest.Prepender
557 Prepender(@NotBlank String prefix, int times) throws NullPointerException { argument
559 this.times = times;
577 return Iterables.concat(Collections.nCopies(times, prefix), tail);
/external/blktrace/btt/doc/
H A Dbtt.tex108 \item[average component times across all IOs] The time line of each IO
118 This is also broken down into two component times\footnote{On
121 will see these listed as \texttt{S2G} times.}:
158 \item \emph{Q2C} which measures the times for the complete life cycle
164 currently average the queue-to-insert and queue-to-merge times,
185 \emph{Q2A} and \emph{Q2C} times for those IOs.
265 such times the IO request queue elements are not able to be processed
368 Here is a sample portion of this type of chart, showing Q2Q times
385 the issued to complete times (D2C).
404 \item[Q2D Histogram] A display of histogram buckets for the Q to D times
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java148 public UnsignedInteger times(UnsignedInteger val) { method in class:UnsignedInteger
H A DUnsignedLong.java150 public UnsignedLong times(UnsignedLong val) { method in class:UnsignedLong
/external/libexif/contrib/examples/
H A Dcam_features.c14 #include <sys/times.h>
/external/libvpx/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2_x86_64.asm794 times 16 db 0xe0
797 times 16 db 0x7f
800 times 16 db 0xfe
803 times 16 db 0x1f
806 times 16 db 0x80
809 times 16 db 0x01
812 times 16 db 0x03
815 times 16 db 0x04
H A Didctllm_mmx.asm289 times 4 dw 0x8A8C
292 times 4 dw 0x4E7B
295 times 4 dw 0x0004
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCursorWrapperTest.java45 method.invoke(verify(mockCursor, times(1)), params);
/external/ant-glob/
H A DNOTICE241 all times remain with copyright holders.
/external/dnsmasq/src/
H A Dutil.c24 #include <sys/times.h>
314 return (time_t)(times(&dummy)/tps);
/external/skia/bench/
H A Dbench_util.py140 times = config.group(2)
141 for new_time in TIME_RE_COMPILED.finditer(times):
/external/skia/tools/lua/
H A Dpaths.lua9 -- This script is designed to count the number of times we fall back to software
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java291 long[] times = new long[10]; field in class:DB_Results.LogWriter
299 System.arraycopy(this.times, 0, this.times = new long[this.depth+10], 0, this.depth);
313 this.times[this.depth] += System.currentTimeMillis() - this.starts[this.depth];
320 print(this.times[this.depth]);
325 this.times = new long[10];
/external/icu/icu4c/source/i18n/
H A Dolsontz.cpp746 UDate* times = (UDate*)uprv_malloc(sizeof(UDate)*transCount); /* large enough to store all transition times */ local
747 if (times == NULL) {
753 // Gather all start times for each pair of offsets
760 times[nTimes++] = tt;
774 uprv_free(times);
783 raw, dst, times, nTimes, DateTimeRule::UTC_TIME);
792 uprv_free(times);
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp955 SkTDArray<SortByTime*> times; local
958 *times.append() = (SortByTime*) &allResults[index];
967 if (times.count()) {
968 SkTQSort<SortByTime>(times.begin(), times.end() - 1);
970 *state.fSlowest.append() = *times[allCount - inner - 1];
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java72 * verify(mockFoo, times(3)).aString(anyInt()); // This will fail, was called once only.
203 public static <T> T verify(T mock) { return verify(mock, times(1)); }
246 public static CallCount times(long n) { return new CallCount(n, n); } method in class:LittleMock
616 * The number of times a given call should be verified.
688 expect(mHowManyTimes != null, "verifying mock doesn't know how many times");
1001 /** Encapsulates the number of times a method is called, between upper and lower bounds. */
1042 /** Encapsulates adding number of times behaviour to a call count with timeout. */
1056 public CallCount times(int times) { return setLowerBound(times) argument
[all...]
/external/libavc/common/arm/
H A Dih264_padding_neon.s51 @* The top row of a 2d array is replicated for pad_size times at the top
120 @* The left column of a 2d array is replicated for pad_size times at the left
256 @* The left column of a 2d array is replicated for pad_size times at the left
384 @* The right column of a 2d array is replicated for pad_size times at the right
530 @* The right column of a 2d array is replicated for pad_size times at the right
/external/ceres-solver/internal/ceres/
H A Dprogram_evaluator.h305 return execution_summary_.times();

Completed in 3357 milliseconds

12345678