HomeSort by relevance Sort by last modified time
    Searched refs:times (Results 101 - 125 of 712) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
opt-struc.asm 24 times HOSTENT.Name-($-..@44.strucstart) db 0 label
26 times HOSTENT.Aliases-($-..@44.strucstart) db 0 label
28 times HOSTENT.AddrList-($-..@44.strucstart) db 0 label
30 times HOSTENT_size-($-..@44.strucstart) db 0 label
34 times HOSTENT.Name-($-..@45.strucstart) db 0 label
36 times HOSTENT.Aliases-($-..@45.strucstart) db 0 label
38 times HOSTENT_size-($-..@45.strucstart) db 0 label
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
times.hpp 9 // Preprocessed version of "boost/mpl/times.hpp" header
68 struct times struct in namespace:boost::mpl
69 : times< times< times< times< N1,N2 >, N3>, N4>, N5>
73 , times
81 struct times< N1,N2,N3,N4,na > struct in namespace:boost::mpl
83 : times< times< times< N1,N2 >, N3>, N4
95 struct times< N1,N2,N3,na,na > struct in namespace:boost::mpl
109 struct times< N1,N2,na,na,na > struct in namespace:boost::mpl
    [all...]
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
sieve.cpp 81 double midpoint(double *times, double i, int n) {
86 return times[(int)fl];
88 return (times[(int)fl]+times[(int)ce])/2;
92 double medianof(double *times, int n, int type) {
95 return midpoint(times,n/4,n);
97 return midpoint(times,n/2,n);
99 return midpoint(times,(n/2)+(n/4),n);
104 double qs(double *times, int n, double *q1, double *q2, double *q3) {
105 *q1 = medianof(times,n,1)
197 double times[SAMPLES]; local
    [all...]
sieve.h 23 * @param times array of times (modified/sorted)
28 U_INTERNAL double uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utime.c 50 utime(const char *path, const struct utimbuf *times)
56 if (times == (struct utimbuf *) NULL)
59 tv[0].tv_sec = times->actime;
60 tv[1].tv_sec = times->modtime;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
strucalign.asm 2 times (64-$) resb 1 label
4 times (128-($-$$)) resb 1 label
  /bionic/libc/arch-arm/syscalls/
times.S 5 ENTRY(times) function
14 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-x86_64/syscalls/
times.S 5 ENTRY(times) function
15 END(times)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
jmp64-5.asm 5 times 0x10001 db 0x0 label
  /external/compiler-rt/test/msan/
times.cc 6 #include <sys/times.h>
11 clock_t res = times(&t);
  /bionic/libc/arch-x86/syscalls/
times.S 5 ENTRY(times) function
21 END(times)
  /external/qemu/include/sysemu/
os-posix.h 48 int qemu_utimens(const char *path, const qemu_timespec *times);
51 int qemu_utimensat(int dirfd, const char *path, const qemu_timespec *times,
  /system/core/toolbox/
touch.c 45 struct timespec specified_time, times[2]; local
96 times[0] = specified_time;
98 times[0].tv_nsec = UTIME_OMIT;
101 times[1] = specified_time;
103 times[1].tv_nsec = UTIME_OMIT;
107 fprintf(stderr, "times[0].tv_sec = %ld, times[0].tv_nsec = %ld\n", times[0].tv_sec, times[0].tv_nsec);
108 fprintf(stderr, "times[1].tv_sec = %ld, times[1].tv_nsec = %ld\n", times[1].tv_sec, times[1].tv_nsec)
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/
ReferenceRenderer.cpp 30 // Reset the times.
47 double times[NUM_SETUP_TIMES]; local
49 times[0] = GLUtils::currentTimeMillis();
51 times[1] = GLUtils::currentTimeMillis();
53 times[2] = GLUtils::currentTimeMillis();
55 times[3] = GLUtils::currentTimeMillis();
58 // Add on the set up times.
59 mSetUpTimes[i] += times[i] - times[i - 1];
  /system/core/logd/
FlushCommand.cpp 50 LastLogTimes &times = mReader.logbuf().mTimes; local
53 LastLogTimes::iterator it = times.begin();
54 while(it != times.end()) {
68 if (it == times.end()) {
75 times.push_back(entry);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Resource.java 55 public void acquire(int times) {
59 if (times <= 0) {
60 throw new IllegalArgumentException("Must acquire a number of times >= 0");
65 acquired += times;
  /frameworks/base/tools/preload/
LoadedClass.java 90 int[] times = new int[size]; local
92 times[i] = operations.get(i).exclusiveTimeMicros();
95 Arrays.sort(times);
99 return times[middle];
102 return (times[middle - 1] + times[middle]) / 2;
  /bionic/libc/arch-mips64/syscalls/
times.S 5 ENTRY(times) function
25 END(times)
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 93 TimeValues times = connectionToTimes.remove(connection); local
94 if(times == null) {
98 return System.currentTimeMillis() <= times.timeExpires;
129 TimeValues times = connectionToTimes.get(conn); local
130 Long connectionTime = times.timeAdded;
157 TimeValues times = connectionToTimes.get(conn); local
158 if(times.timeExpires <= now) {
160 log.debug("Closing connection, expired @: " + times.timeExpires);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
get_scaling_square.c 20 int WebRtcSpl_GetScalingSquare(int16_t *in_vector, int in_vector_length, int times)
22 int nbits = WebRtcSpl_GetSizeInBits(times);
  /external/webrtc/src/common_audio/signal_processing/
get_scaling_square.c 20 int WebRtcSpl_GetScalingSquare(WebRtc_Word16 *in_vector, int in_vector_length, int times)
22 int nbits = WebRtcSpl_GetSizeInBits(times);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeListImpl.java 31 TimeListImpl(ArrayList<Time> times) {
32 mTimes = times;
  /bionic/libc/bionic/
clock.cpp 31 #include <sys/times.h>

Completed in 1618 milliseconds

1 2 3 45 6 7 8 91011>>