HomeSort by relevance Sort by last modified time
    Searched full:tend (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webrtc/src/system_wrappers/source/
event_posix.cc 138 timespec tEnd;
141 clock_gettime(CLOCK_REALTIME, &tEnd);
143 clock_gettime(CLOCK_MONOTONIC, &tEnd);
151 TIMEVAL_TO_TIMESPEC(&tVal,&tEnd);
153 tEnd.tv_sec += timeout / 1000;
154 tEnd.tv_nsec += (timeout - (timeout / 1000) * 1000) * E6;
156 if (tEnd.tv_nsec >= E9)
158 tEnd.tv_sec++;
159 tEnd.tv_nsec -= E9;
161 retVal = pthread_cond_timedwait(&cond, &mutex, &tEnd);
    [all...]
  /external/expat/tests/benchmark/
benchmark.c 33 clock_t tstart, tend; local
102 tend = clock();
103 cpuTime += ((double) (tend - tstart)) / CLOCKS_PER_SEC;
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
UserCredentialHash.java 7 * tend to prefer to store information in user accounts using such a
  /frameworks/compile/mclinker/lib/Support/
TargetRegistry.cpp 23 TargetListTy::const_iterator TIter, TEnd = s_TargetList.end();
24 for (TIter=s_TargetList.begin(); TIter!=TEnd; ++TIter) {
  /external/openssl/crypto/bn/
bnspeed.c 132 static struct tms tstart,tend; local
141 times(&tend);
142 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
146 static struct timeb tstart,tend; local
156 ftime(&tend);
157 i=(long)tend.millitm-(long)tstart.millitm;
158 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
expspeed.c 158 static struct tms tstart,tend; local
167 times(&tend);
168 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
172 static struct timeb tstart,tend; local
182 ftime(&tend);
183 i=(long)tend.millitm-(long)tstart.millitm;
184 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
  /external/openssl/crypto/rc4/
rc4speed.c 142 static struct tms tstart,tend; local
151 times(&tend);
152 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
156 static struct timeb tstart,tend; local
166 ftime(&tend);
167 i=(long)tend.millitm-(long)tstart.millitm;
168 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BaseResourceLoader.java 38 * tend to assume they are the only ResourceLoader in use. Or at least that the filename is the
  /external/llvm/docs/HistoricalNotes/
2000-12-06-EncodingIdea.txt 21 numbers would tend to stay small, even at the end of the procedure (where
2000-12-06-MeetingSummary.txt 68 is that it would tend to splinter that 'standard' LLVM definition.
  /external/strace/
README-linux 13 using development kernels. These tend to have headers that conflict with
  /system/core/sh/
token.h 25 #define TEND 24
  /external/openssl/crypto/des/
speed.c 147 static struct tms tstart,tend; local
156 times(&tend);
157 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
161 static struct timeb tstart,tend; local
171 ftime(&tend);
172 i=(long)tend.millitm-(long)tstart.millitm;
173 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
des_opts.c 364 static struct tms tstart,tend; local
373 times(&tend);
374 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
378 static struct timeb tstart,tend; local
388 ftime(&tend);
389 i=(long)tend.millitm-(long)tstart.millitm;
390 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
  /external/openssl/crypto/rc2/
rc2speed.c 142 static struct tms tstart,tend; local
151 times(&tend);
152 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
156 static struct timeb tstart,tend; local
166 ftime(&tend);
167 i=(long)tend.millitm-(long)tstart.millitm;
168 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
  /external/freetype/src/autofit/
afcjk.h 36 * CJK glyphs tend to fill the square. So we have both vertical and
  /external/clang/include/clang/Analysis/Analyses/
CFGReachabilityAnalysis.h 29 // tend to have a common destination, so we lazily do a predecessor search
  /external/llvm/docs/CommandGuide/
llvm-diff.rst 33 which tend to stop any downstream changes from being detected.
  /frameworks/compile/mclinker/include/mcld/Support/
TargetRegistry.h 247 llvm::TargetRegistry::iterator TIter, TEnd = llvm::TargetRegistry::end();
249 for( TIter=llvm::TargetRegistry::begin(); TIter!=TEnd; ++TIter ) {
254 if (TIter != TEnd)
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_tanf.c 51 * non-sequential machines (the lowest degree terms tend to be ready
  /dalvik/dx/src/com/android/dx/ssa/
SetFactory.java 31 * sets are kept per basic block until phi placement and tend to be,
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SetFactory.java 31 * sets are kept per basic block until phi placement and tend to be,
  /external/llvm/tools/llvm-config/
Makefile 34 # LDFLAGS tend not to be portable, and we don't currently require the
  /external/qemu/distrib/sdl-1.2.15/src/audio/dummy/
SDL_dummyaudio.c 147 * gate, like other SDL drivers tend to do.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
BaseTypes.h 73 // to allocate variables in. Since built-ins tend to go to different registers

Completed in 667 milliseconds

1 2 3 4 5 6 7 8 9