HomeSort by relevance Sort by last modified time
    Searched refs:ts (Results 151 - 175 of 549) sorted by null

1 2 3 4 5 67 8 91011>>

  /ndk/sources/host-tools/make-3.81/
filedef.h 132 #define FILE_TIMESTAMP_S(ts) (((ts) - ORDINARY_MTIME_MIN) \
134 #define FILE_TIMESTAMP_NS(ts) ((int) (((ts) - ORDINARY_MTIME_MIN) \
158 extern void file_timestamp_sprintf PARAMS ((char *p, FILE_TIMESTAMP ts));
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.cpp 173 static void writeIndent(TextStream& ts, int indent)
176 ts << " ";
179 void RenderSurfaceChromium::dumpSurface(TextStream& ts, int indent) const
181 writeIndent(ts, indent);
182 ts << name() << "\n";
184 writeIndent(ts, indent+1);
185 ts << "contentRect: (" << m_contentRect.x() << ", " << m_contentRect.y() << ", " << m_contentRect.width() << ", " << m_contentRect.height() << "\n";
ContentLayerChromium.cpp 226 static void writeIndent(TextStream& ts, int indent)
229 ts << " ";
232 void ContentLayerChromium::dumpLayerProperties(TextStream& ts, int indent) const
234 LayerChromium::dumpLayerProperties(ts, indent);
235 writeIndent(ts, indent);
236 ts << "skipsDraw: " << m_tiler->skipsDraw() << "\n";
  /external/valgrind/main/coregrind/
m_redir.c 396 TopSpec* ts; local
492 for (ts = topSpecs; ts; ts = ts->next)
493 vg_assert(ts->seginfo != newdi);
659 for (ts = topSpecs; ts; ts = ts->next)
984 TopSpec* ts; local
1609 TopSpec* ts; local
    [all...]
  /external/openssl/crypto/asn1/
a_gentm.c 221 struct tm *ts; local
230 ts=OPENSSL_gmtime(&t, &data);
231 if (ts == NULL)
236 if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
255 BIO_snprintf(p,len,"%04d%02d%02d%02d%02d%02dZ",ts->tm_year + 1900,
256 ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec)
    [all...]
  /external/qemu/
qemu-timer.h 47 void qemu_free_timer(QEMUTimer *ts);
48 void qemu_del_timer(QEMUTimer *ts);
49 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
50 int qemu_timer_pending(QEMUTimer *ts);
122 struct timespec ts; local
123 clock_gettime(CLOCK_MONOTONIC, &ts);
124 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
135 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
136 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
    [all...]
qemu-timer.c 531 QEMUTimer *ts; local
533 ts = qemu_mallocz(sizeof(QEMUTimer));
534 ts->clock = clock;
535 ts->cb = cb;
536 ts->opaque = opaque;
537 ts->scale = scale;
538 return ts;
541 void qemu_free_timer(QEMUTimer *ts)
543 qemu_free(ts);
547 void qemu_del_timer(QEMUTimer *ts)
626 QEMUTimer **ptimer_head, *ts; local
    [all...]
  /system/extras/tests/bionic/libc/common/
test_pthread_rwlock.c 75 struct timespec ts[1]; local
77 clock_gettime(CLOCK_MONOTONIC, ts);
78 return (double)ts->tv_sec + ts->tv_nsec/1e9;
84 struct timespec ts; local
87 ts.tv_sec = (time_t)delay;
88 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
91 ret = nanosleep(&ts, &ts);
    [all...]
test_pthread_mutex.c 76 struct timespec ts[1]; local
78 clock_gettime(CLOCK_MONOTONIC, ts);
79 return (double)ts->tv_sec + ts->tv_nsec/1e9;
85 struct timespec ts; local
88 ts.tv_sec = (time_t)delay;
89 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
92 ret = nanosleep(&ts, &ts);
    [all...]
  /bionic/libc/bionic/
pthread.c 809 /* initialize 'ts' with the difference between 'abstime' and the current time
813 __timespec_to_absolute(struct timespec* ts, const struct timespec* abstime, clockid_t clock)
815 clock_gettime(clock, ts);
816 ts->tv_sec = abstime->tv_sec - ts->tv_sec;
817 ts->tv_nsec = abstime->tv_nsec - ts->tv_nsec;
818 if (ts->tv_nsec < 0) {
819 ts->tv_sec--;
820 ts->tv_nsec += 1000000000
848 struct timespec ts; local
907 struct timespec ts; local
1139 struct timespec ts; local
1187 struct timespec ts; local
    [all...]
  /external/srtp/test/
rtp.c 36 sender->message.header.ts = ntohl(sender->message.header.ts) + 1;
37 sender->message.header.ts = htonl(sender->message.header.ts);
109 sender->message.header.ts = 0;
133 rcvr->message.header.ts = 0;
  /system/core/libcutils/
zygote.c 190 struct timespec ts; local
192 memset(&ts, 0, sizeof(ts));
193 ts.tv_nsec = ZYGOTE_RETRY_MILLIS * 1000 * 1000;
196 err = nanosleep (&ts, &ts);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 98 long ts = Long.parseLong(timeStamp); local
99 if (ts < 0)
101 this.timeStamp = ts;
131 throw new IllegalArgumentException("negative ts");
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh 112 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
119 ts = 0;
145 {ts = p;}
200 {ts = 0;}
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 100 TestSuite ts= (TestSuite) test; local
101 String name= ts.getName() == null ? createSuiteDescription(ts) : ts.getName();
103 int n= ts.testCount();
105 Description made= makeDescription(ts.testAt(i));
121 private static String createSuiteDescription(TestSuite ts) {
122 int count= ts.countTestCases();
123 String example = count == 0 ? "" : String.format(" [example: %s]", ts.testAt(0));
  /external/openssl/crypto/
o_time.c 83 struct tm *ts = NULL; local
89 ts = result;
91 ts = gmtime(timer);
92 if (ts == NULL)
95 memcpy(result, ts, sizeof(struct tm));
96 ts = result;
99 if (ts == NULL)
221 ts = result;
225 return ts;
  /external/linux-tools-perf/scripts/python/
sched-migration.py 230 def get_time_slice(self, ts):
232 slice = TimeSlice(ts, TimeSlice(-1, None))
234 slice = self.data[-1].next(ts)
237 def find_time_slice(self, ts):
247 if self.data[i].start <= ts and self.data[i].end >= ts:
252 if self.data[i].end < ts:
255 elif self.data[i].start > ts:
268 ts = self[idx]
269 rq = ts.rqs[cpu
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java 115 String ts = Long.toString(System.currentTimeMillis()); local
118 mTestServer, FILE_SIZE, mDeviceId, ts);
132 results.putString("timestamp", ts);
167 String ts = Long.toString(System.currentTimeMillis()); local
169 mTestServer, FILE_SIZE, mDeviceId, ts);
173 ts = Long.toString(System.currentTimeMillis());
176 assertTrue(BandwidthTestUtil.postFileToServer(mTestServer, mDeviceId, ts, tmpSaveFile));
186 results.putString("timestamp", ts);
229 String ts = Long.toString(System.currentTimeMillis()); local
231 mTestServer, FILE_SIZE, mDeviceId, ts);
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuite.java 86 public void setTokens(CommonTokenStream ts) { tokens = ts; }
  /external/clang/test/Analysis/
taint-generic.c 140 size_t ts; local
141 scanf("%zd", &ts);
143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}}
144 char *dst = (char*)calloc(ts, sizeof(char)); //expected-warning {{Untrusted data is used to specify the buffer size}}
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
146 __builtin_memcpy(dst, buf1, (ts + 4)*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
149 char *dst2 = (char*)malloc(ts*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
150 strncat(dst2, dst, ts); // no-warning
  /external/clang/test/Preprocessor/
pragma_diagnostic_sections.cpp 20 struct TS {
26 TS<int> ts; local
27 ts.m();
  /external/elfutils/
Makefile.am 49 rpmbuild -ts --sign elfutils-@PACKAGE_VERSION@.tar.gz
  /external/valgrind/main/memcheck/tests/linux/
syscalls-2007.c 40 struct timespec ts = { .tv_sec = 1, .tv_nsec = 0 }; local
54 ppoll (pfd, 2, &ts, &mask);
  /external/libpcap/
pcap-win32.c 198 ULONGLONG ts; local
302 ts = header->ts;
303 pcap_header.ts.tv_sec = (int)(ts >> 32);
304 ts = (ts & 0xffffffffi64) * 1000000;
305 ts += 0x80000000; /* rounding */
306 pcap_header.ts.tv_usec = (int)(ts >> 32)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.cpp 453 static TextStream& operator<<(TextStream& ts, const EdgeModeType& type)
457 ts << "UNKNOWN";
460 ts << "DUPLICATE";
463 ts << "WRAP";
466 ts << "NONE";
469 return ts;
472 TextStream& FEConvolveMatrix::externalRepresentation(TextStream& ts, int indent) const
474 writeIndent(ts, indent);
475 ts << "[feConvolveMatrix";
476 FilterEffect::externalRepresentation(ts);
    [all...]

Completed in 1959 milliseconds

1 2 3 4 5 67 8 91011>>