HomeSort by relevance Sort by last modified time
    Searched defs:times (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /bionic/libc/arch-arm/syscalls/
times.S 5 ENTRY(times) function
16 END(times)
  /bionic/libc/arch-arm64/syscalls/
times.S 5 ENTRY(times) function
14 END(times)
  /bionic/libc/arch-mips/syscalls/
times.S 5 ENTRY(times) function
19 END(times)
  /bionic/libc/arch-mips64/syscalls/
times.S 5 ENTRY(times) function
25 END(times)
  /bionic/libc/arch-x86/syscalls/
times.S 5 ENTRY(times) function
29 END(times)
  /bionic/libc/arch-x86_64/syscalls/
times.S 5 ENTRY(times) function
15 END(times)
  /external/mockito/src/test/java/org/mockito/internal/progress/
VerificationModeBuilder.java 9 import org.mockito.internal.verification.Times;
14 private Integer times = 1; field in class:VerificationModeBuilder
16 public Times inOrder() {
17 return VerificationModeFactory.times(times);
20 public VerificationModeBuilder times(int times) { method in class:VerificationModeBuilder
21 this.times = times;
  /cts/tests/openglperf2/jni/reference/
ReferenceRenderer.cpp 31 // Reset the times.
48 double times[NUM_SETUP_TIMES]; local
50 times[0] = GLUtils::currentTimeMillis();
52 times[1] = GLUtils::currentTimeMillis();
54 times[2] = GLUtils::currentTimeMillis();
56 times[3] = GLUtils::currentTimeMillis();
59 // Add on the set up times.
60 mSetUpTimes[i] += times[i] - times[i - 1];
  /external/mockito/src/main/java/org/mockito/verification/
VerificationAfterDelay.java 34 VerificationMode times(int wantedNumberOfInvocations); method in interface:VerificationAfterDelay
VerificationWithTimeout.java 14 * verify(mock, timeout(100).times(5)).foo();
33 * verify(mock, timeout(100).times(2)).someMethod("some arg");
42 VerificationMode times(int wantedNumberOfInvocations); method in interface:VerificationWithTimeout
  /bionic/tests/
sys_stat_test.cpp 32 timespec times[2]; local
33 times[0].tv_sec = 123;
34 times[0].tv_nsec = 0;
35 times[1].tv_sec = 456;
36 times[1].tv_nsec = 0;
37 ASSERT_EQ(0, futimens(fd, times)) << strerror(errno);
41 ASSERT_EQ(times[0].tv_sec, static_cast<long>(sb.st_atime));
42 ASSERT_EQ(times[1].tv_sec, static_cast<long>(sb.st_mtime));
48 timespec times[2]; local
49 times[0].tv_sec = 123
    [all...]
  /cts/tests/openglperf2/jni/primitive/
GLPrimitive.cpp 68 // Sets the times in the Java array.
69 double times[] = {start, end}; local
70 env->SetDoubleArrayRegion(frameTimes, 0, 2, times);
  /external/easymock/src/org/easymock/
IExpectationSetters.java 111 * 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/grpc-grpc/src/core/lib/iomgr/
error_internal.h 50 uint8_t times[GRPC_ERROR_TIME_MAX]; member in struct:grpc_error
  /external/ltp/testcases/kernel/syscalls/utime/
utime04.c 25 * and access times of a file to the time specified by times argument, if
26 * the times argument is not null, and the user ID of the process is "root".
30 * times of the file to that specified by the times argument.
58 * -i n : Execute test n times.
92 struct utimbuf times; /* struct. buffer for utime() */ variable in typeref:struct:utimbuf
114 * modification times to that specified by
115 * times argument.
117 TEST(utime(TEMP_FILE, &times));
    [all...]
utime05.c 25 * and access times of a file to the value specified by the times argument
27 * - The times argument is not null,
33 * times of the file to that specified by the times argument.
61 * -i n : Execute test n times.
98 struct utimbuf times; /* struct. buffer for utime() */ variable in typeref:struct:utimbuf
120 * modification times to that specified by
121 * times argument.
123 TEST(utime(TEMP_FILE, &times));
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/verification/
VerificationModeFactory.java 24 public static Times times(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
25 return new Times(wantedNumberOfInvocations);
VerificationWrapper.java 24 public VerificationMode times(int wantedNumberOfInvocations) { method in class:VerificationWrapper
25 return copySelfWithNewVerificationMode(VerificationModeFactory.times(wantedNumberOfInvocations));
  /external/toybox/toys/pending/
gzip.c 150 struct timespec times[] = { sb.st_atim, sb.st_mtim }; local
152 if (utimensat(AT_FDCWD, out_name, times, 0)) perror_exit("utimensat");
  /external/deqp/framework/common/
tcuCPUWarmup.cpp 95 deInt64 times[numMeasurements]; local
101 times[i] = (deInt64)(deGetMicroseconds() - startTime);
104 if (floatMedian(times) >= singleMeasurementThreshold)
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
AlarmBroadcastReceiver.java 64 int times = intent.getIntExtra("times", -1); local
65 rcsStackAdaptor.startInitThread(times);
  /external/ltp/testcases/kernel/syscalls/futimesat/
futimesat01.c 59 int myfutimesat(int dirfd, const char *filename, struct timeval *times)
61 return ltp_syscall(__NR_futimesat, dirfd, filename, times);
67 struct timeval times[2]; local
80 gettimeofday(&times[0], NULL);
81 gettimeofday(&times[1], NULL);
82 TEST(myfutimesat(fds[i], filenames[i], times));
  /external/perfetto/tools/
profiling_sample_distribution.cc 56 uint64_t times = 1; local
74 PERFETTO_FATAL("Invalid times: %s", optarg);
76 times = static_cast<uint64_t>(times_arg);
88 PERFETTO_FATAL("%s [-t times] [-i interval] [-s seed]", argv[0]);
118 while (times-- > 0) {
126 // Sad times.
142 std::cout << times << " " << pair.first << " " << pair.second
  /external/Reactive-Extensions/RxCpp/Ix/CPP/samples/SampleCppLinq/
SampleCppLinq.cpp 70 auto times = from(g).select([](const item& i) { return i.time; }); local
73 auto sum = std::accumulate(times.begin(), times.end(), 0.0);
77 for (auto timeIter = times.begin(), end = times.end();
  /external/easymock/src/org/easymock/internal/
IMocksControlState.java 44 void times(Range range); method in interface:IMocksControlState

Completed in 839 milliseconds

1 2 3 4 5