Searched defs:ts (Results 1 - 25 of 97) sorted by relevance

1234

/external/webkit/WebCore/rendering/
H A DSVGRenderTreeAsText.h73 TextStream& operator<<(TextStream& ts, const Vector<Item*>& v) argument
75 ts << "[";
78 ts << *v[i];
80 ts << ", ";
83 ts << "]";
84 return ts;
88 TextStream& operator<<(TextStream& ts, const Vector<Item>& v) argument
90 ts << "[";
93 ts << v[i];
95 ts << ", ";
103 operator <<(TextStream& ts, Pointer* t) argument
[all...]
/external/webkit/WebCore/svg/graphics/filters/
H A DSVGLightSource.cpp32 static TextStream& operator<<(TextStream& ts, const FloatPoint3D& p) argument
34 ts << "x=" << p.x() << " y=" << p.y() << " z=" << p.z();
35 return ts;
38 TextStream& PointLightSource::externalRepresentation(TextStream& ts) const
40 ts << "[type=POINT-LIGHT] ";
41 ts << "[position=\"" << position() << "\"]";
42 return ts;
45 TextStream& SpotLightSource::externalRepresentation(TextStream& ts) const
47 ts << "[type=SPOT-LIGHT] ";
48 ts << "[positio
[all...]
/external/blktrace/btt/
H A Daqd.c59 void aqd_issue(void *info, double ts) argument
64 fprintf(ap->fp, "%lf %d\n%lf %d\n", ts, ap->na, ts, ap->na + 1);
69 void aqd_complete(void *info, double ts) argument
76 ts, ap->na, ts, ap->na - 1);
H A Dplat.c67 void plat_x2c(void *info, __u64 ts, __u64 latency) argument
69 double now = TO_SEC(ts);
/external/libffi/testsuite/libffi.call/
H A Dstruct1.c17 static test_structure_1 struct1(test_structure_1 ts) argument
19 ts.uc++;
20 ts.d--;
21 ts.ui++;
23 return ts;
H A Dstruct2.c16 static test_structure_2 struct2(test_structure_2 ts) argument
18 ts.d1--;
19 ts.d2--;
21 return ts;
H A Dstruct3.c15 static test_structure_3 struct3(test_structure_3 ts) argument
17 ts.si = -(ts.si*2);
19 return ts;
H A Dstruct4.c17 static test_structure_4 struct4(test_structure_4 ts) argument
19 ts.ui3 = ts.ui1 * ts.ui2 * ts.ui3;
21 return ts;
H A Dstruct6.c15 static test_structure_6 struct6 (test_structure_6 ts) argument
17 ts.f += 1;
18 ts.d += 1;
20 return ts;
H A Dstruct7.c16 static test_structure_7 struct7 (test_structure_7 ts) argument
18 ts.f1 += 1;
19 ts.f2 += 1;
20 ts.d += 1;
22 return ts;
H A Dstruct8.c17 static test_structure_8 struct8 (test_structure_8 ts) argument
19 ts.f1 += 1;
20 ts.f2 += 1;
21 ts.f3 += 1;
22 ts.f4 += 1;
24 return ts;
H A Dstruct9.c16 static test_structure_9 struct9 (test_structure_9 ts) argument
18 ts.f += 1;
19 ts.i += 1;
21 return ts;
/external/openssl/crypto/asn1/
H A Da_time.c109 struct tm *ts; local
112 ts=OPENSSL_gmtime(&t,&data);
113 if (ts == NULL)
120 if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
123 if((ts->tm_year >= 50) && (ts->tm_year < 150))
H A Da_gentm.c221 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
[all...]
H A Da_utctm.c196 struct tm *ts; local
205 ts=OPENSSL_gmtime(&t, &data);
206 if (ts == NULL)
211 if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
215 if((ts->tm_year < 50) || (ts->tm_year >= 150))
232 BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100,
233 ts->tm_mon+1,ts->tm_mday,ts
[all...]
/external/strace/
H A Dterm.c197 struct ttysize ts; local
312 if (!verbose(tcp) || umove(tcp, arg, &ts) < 0)
315 ts.ts_lines, ts.ts_cols);
/external/ipsec-tools/src/racoon/
H A Dlogger.c185 char ts[256]; local
198 strftime(ts, sizeof(ts), "%B %d %T", tm);
199 fprintf(fp, "%s: %s\n", ts, p->buf[j]);
/external/chromium/base/
H A Dtime_posix.cc156 struct timespec ts; local
157 if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0) {
163 (static_cast<int64>(ts.tv_sec) * Time::kMicrosecondsPerSecond) +
164 (static_cast<int64>(ts.tv_nsec) / Time::kNanosecondsPerMicrosecond);
/external/chromium/third_party/icu/source/test/compat/
H A Dtzdate.c111 struct tm ts; local
115 ts = *localtime(&now);
118 memset(&ts, 0, sizeof(ts));
119 ts.tm_year = year;
120 ts.tm_mon = month - OFFSET_MONTH;
121 ts.tm_mday = day;
122 ts.tm_hour = hour;
123 ts.tm_min = minute;
125 now = mktime(&ts);
[all...]
/external/chromium/third_party/libevent/test/
H A Dbench.c87 static struct timeval ts, te; local
106 gettimeofday(&ts, NULL);
116 evutil_timersub(&te, &ts, &te);
/external/icu4c/test/compat/
H A Dtzdate.c111 struct tm ts; local
115 ts = *localtime(&now);
118 memset(&ts, 0, sizeof(ts));
119 ts.tm_year = year;
120 ts.tm_mon = month - OFFSET_MONTH;
121 ts.tm_mday = day;
122 ts.tm_hour = hour;
123 ts.tm_min = minute;
125 now = mktime(&ts);
[all...]
/external/openssl/crypto/rand/
H A Drand_unix.c145 struct timespec ts; local
160 clock_gettime (CLOCK_REALTIME, &ts);
163 seed = ts.tv_sec ^ ts.tv_nsec ^ curr_pid ^ curr_uid;
/external/qemu/
H A Dqemu-thread.c51 static void timespec_add_ms(struct timespec *ts, uint64_t msecs) argument
53 ts->tv_sec = ts->tv_sec + (long)(msecs / 1000);
54 ts->tv_nsec = (ts->tv_nsec + ((long)msecs % 1000) * 1000000);
55 if (ts->tv_nsec >= 1000000000) {
56 ts->tv_nsec -= 1000000000;
57 ts->tv_sec++;
64 struct timespec ts; local
66 clock_gettime(CLOCK_REALTIME, &ts);
122 struct timespec ts; local
[all...]
/external/webkit/WebCore/platform/graphics/android/
H A DFontPlatformDataAndroid.cpp149 float ts = mTextSize; local
150 if (!(ts > 0))
151 ts = 12;
156 paint->setTextSize(SkFloatToScalar(ts));
/external/webkit/WebCore/svg/graphics/
H A DSVGResource.cpp111 TextStream& SVGResource::externalRepresentation(TextStream& ts) const
113 return ts;
132 TextStream& operator<<(TextStream& ts, const SVGResource& r) argument
134 return r.externalRepresentation(ts);

Completed in 581 milliseconds

1234