/external/libjpeg-turbo/simd/x86_64/ |
D | jchuff-sse2.asm | 53 times 1 << 14 db 15 label 54 times 1 << 13 db 14 label 55 times 1 << 12 db 13 label 56 times 1 << 11 db 12 label 57 times 1 << 10 db 11 label 58 times 1 << 9 db 10 label 59 times 1 << 8 db 9 label 60 times 1 << 7 db 8 label 61 times 1 << 6 db 7 label 62 times 1 << 5 db 6 label [all …]
|
/external/libjpeg-turbo/simd/i386/ |
D | jchuff-sse2.asm | 52 times 1 << 14 db 15 label 53 times 1 << 13 db 14 label 54 times 1 << 12 db 13 label 55 times 1 << 11 db 12 label 56 times 1 << 10 db 11 label 57 times 1 << 9 db 10 label 58 times 1 << 8 db 9 label 59 times 1 << 7 db 8 label 60 times 1 << 6 db 7 label 61 times 1 << 5 db 6 label [all …]
|
/external/mockito/src/test/java/org/mockito/internal/progress/ |
D | VerificationModeBuilder.java | 14 private Integer times = 1; field in VerificationModeBuilder 20 public VerificationModeBuilder times(int times) { in times() argument
|
/external/icu/icu4c/source/test/perf/howExpensiveIs/ |
D | sieve.cpp | 85 double midpoint(double *times, double i, int n) { in midpoint() 96 double medianof(double *times, int n, int type) { in medianof() 108 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() 115 U_CAPI double uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError) { in uprv_getMeanTime() 201 double times[SAMPLES]; in uprv_getSieveTime() local
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | IdleConnectionHandler.java | 98 TimeValues times = connectionToTimes.remove(connection); in remove() local 134 TimeValues times = connectionToTimes.get(conn); in closeIdleConnections() local 162 TimeValues times = connectionToTimes.get(conn); in closeExpiredConnections() local
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_log.c | 116 struct times { struct 122 process_chunk(struct fd_context *ctx, struct fd_log_chunk *chunk, struct times *t) in process_chunk() argument 172 struct times times = {0}; in fd_log_process() local
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | UninterruptibleFutureTest.java | 181 private static void runUntimedInterruptsTest(int times) in runUntimedInterruptsTest() 189 private static void runTimedInterruptsTest(int times) in runTimedInterruptsTest() 198 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest()
|
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | UninterruptibleFutureTest.java | 181 private static void runUntimedInterruptsTest(int times) in runUntimedInterruptsTest() 189 private static void runTimedInterruptsTest(int times) in runTimedInterruptsTest() 198 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest()
|
/external/rust/crates/nix/src/sys/ |
D | stat.rs | 195 let times: [libc::timeval; 2] = [*atime.as_ref(), *mtime.as_ref()]; in utimes() localVariable 220 let times: [libc::timeval; 2] = [*atime.as_ref(), *mtime.as_ref()]; in lutimes() localVariable 235 let times: [libc::timespec; 2] = [*atime.as_ref(), *mtime.as_ref()]; in futimens() localVariable 277 let times: [libc::timespec; 2] = [*atime.as_ref(), *mtime.as_ref()]; in utimensat() localVariable
|
/external/ltp/testcases/kernel/syscalls/futimesat/ |
D | futimesat01.c | 59 int myfutimesat(int dirfd, const char *filename, struct timeval *times) in myfutimesat() 67 struct timeval times[2]; in main() local
|
/external/easymock/src/org/easymock/ |
D | IExpectationSetters.java | 117 IExpectationSetters<T> times(int count); in times() method 129 IExpectationSetters<T> times(int min, int max); in times() method
|
/external/caliper/caliper/src/main/java/com/google/caliper/util/ |
D | ShortDuration.java | 133 public abstract ShortDuration times(long multiplicand); in times() method in ShortDuration 142 public abstract ShortDuration times(BigDecimal multiplicand, RoundingMode roundingMode); in times() method in ShortDuration 227 @Override public ShortDuration times(long multiplicand) { in times() method in ShortDuration.PositiveShortDuration 237 @Override public ShortDuration times(BigDecimal multiplicand, RoundingMode roundingMode) { in times() method in ShortDuration.PositiveShortDuration
|
/external/easymock/src/org/easymock/internal/ |
D | MocksControl.java | 218 public IExpectationSetters<Object> times(int times) { in times() argument 227 public IExpectationSetters<Object> times(int min, int max) { in times() method in MocksControl
|
/external/ltp/testcases/kernel/syscalls/utime/ |
D | utime06.c | 60 static const struct utimbuf times; variable 69 const struct utimbuf *times; member
|
/external/grpc-grpc/test/core/profiling/ |
D | mark_timings.stp | 8 global starts, times, times_per_tag variable
|
/external/perfetto/tools/ |
D | touch_file.py | 25 def touch(fname, times=None): argument
|
/external/strace/ |
D | times.c | 41 SYS_FUNC(times) in SYS_FUNC() argument
|
/external/catch2/include/internal/benchmark/detail/ |
D | catch_estimate_clock.hpp | 32 std::vector<TimePoint<Clock>> times; in resolution() local 83 std::vector<double> times; in estimate_clock_cost() local
|
/external/skia/docs/examples/ |
D | Path_updateBoundsCache.cpp | 7 double times[2] = { 0, 0 }; in draw() local
|
/external/mockito/src/main/java/org/mockito/verification/ |
D | VerificationWithTimeout.java | 42 VerificationMode times(int wantedNumberOfInvocations); in times() method
|
/external/libchrome/base/timer/ |
D | hi_res_timer_manager_unittest.cc | 36 for (int times = 0; times != 3; ++times) { in TEST() local
|
/external/mockito/src/test/java/org/mockitousage/stacktrace/ |
D | ClickableStackTracesTest.java | 27 private void verifyTheMock(int times, String param) { in verifyTheMock()
|
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | TimeUtil.java | 329 public static Duration multiply(Duration duration, double times) { in multiply() 345 public static Duration multiply(Duration duration, long times) { in multiply() 350 public static Duration divide(Duration duration, long times) { in divide()
|
/external/python/pybind11/tests/ |
D | test_virtual_functions.cpp | 397 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, A_Repeat, say_… in say_something() 403 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, B_Repeat, say_… in say_something() 410 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, C_Repeat, say_… in say_something() 417 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, D_Repeat, say_… in say_something() 440 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, Base, say_some… in say_something()
|
/external/bc/ |
D | karatsuba.py | 89 times = [] variable 220 times = times[0:i] variable
|