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

1 2 3 4 5 6 7 8 91011>>

  /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)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
pr2404b.c 5 int times = -1; variable
11 printf ("times: %d\n", times);
12 times = 20;
13 printf ("times: %d\n", 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;
  /external/syslinux/com32/include/sys/
times.h 2 * sys/times.h
21 static inline clock_t times(struct tms *buf) function
  /external/toybox/toys/posix/
who.c 37 char *times; local
40 times = ctime(&time);
41 time_size = strlen(times) - 2;
  /system/core/logd/
FlushCommand.cpp 40 LastLogTimes& times = mReader.logbuf().mTimes; local
43 LastLogTimes::iterator it = times.begin();
44 while (it != times.end()) {
76 if (it == times.end()) {
84 times.push_front(entry);
  /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 33 timespec times[2]; local
34 times[0].tv_sec = 123;
35 times[0].tv_nsec = 0;
36 times[1].tv_sec = 456;
37 times[1].tv_nsec = 0;
38 ASSERT_EQ(0, futimens(fd, times)) << strerror(errno);
42 ASSERT_EQ(times[0].tv_sec, static_cast<long>(sb.st_atime));
43 ASSERT_EQ(times[1].tv_sec, static_cast<long>(sb.st_mtime));
49 timespec times[2]; local
50 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/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));
  /prebuilts/jdk/jdk8/darwin-x86/sample/forkjoin/mergesort/
MergeDemo.java 189 // which should produce somewhat more fair times
192 long[][] times = config.createTimesArray(); local
195 runForSize(parallelism, sizes.get(size), times, size);
198 printResults(sizes, parallelism, times);
205 * @param times the median times for the different sizes / parallelism
207 private void printResults(Range sizes, Range parallelism, long[][] times) {
209 long[] sums = new long[times[0].length];
211 for (int i = 0; i < times[0].length; i++) {
217 for (int i = 0; i < times[size].length; i++)
246 long[] times = new long[iterations]; local
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/forkjoin/mergesort/
MergeDemo.java 189 // which should produce somewhat more fair times
192 long[][] times = config.createTimesArray(); local
195 runForSize(parallelism, sizes.get(size), times, size);
198 printResults(sizes, parallelism, times);
205 * @param times the median times for the different sizes / parallelism
207 private void printResults(Range sizes, Range parallelism, long[][] times) {
209 long[] sums = new long[times[0].length];
211 for (int i = 0; i < times[0].length; i++) {
217 for (int i = 0; i < times[size].length; i++)
246 long[] times = new long[iterations]; local
    [all...]
  /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);

Completed in 711 milliseconds

1 2 3 4 5 6 7 8 91011>>