Searched refs:tm (Results 151 - 175 of 683) sorted by relevance

1234567891011>>

/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
H A Dtestfrmw.c50 struct tm *now;
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
H A Dtestfrmw.c50 struct tm *now;
/external/python/cpython3/Include/
H A Dpytime.h189 PyAPI_FUNC(int) _PyTime_localtime(time_t t, struct tm *tm);
193 PyAPI_FUNC(int) _PyTime_gmtime(time_t t, struct tm *tm);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineFunctionAnalysis.h34 explicit MachineFunctionAnalysis(const TargetMachine &tm,
/external/icu/icu4c/source/tools/tzcode/
H A Dprivate.h245 extern char * asctime_r(struct tm const *, char *);
284 struct tm *gmtime(time_t const *);
285 struct tm *gmtime_r(time_t const *restrict, struct tm *restrict);
286 struct tm *localtime(time_t const *);
287 struct tm *localtime_r(time_t const *restrict, struct tm *restrict);
288 time_t mktime(struct tm *);
395 char *asctime_r(struct tm const *, char *);
H A Dasctime.c72 asctime_r(register const struct tm *timeptr, char *buf)
129 asctime(register const struct tm *timeptr)
/external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/
H A Dget_one.pass.cpp20 // ios_base::iostate& err, tm *t, char format, char modifier = 0) const;
47 std::tm t;
52 t = std::tm();
68 t = std::tm();
80 t = std::tm();
96 t = std::tm();
115 t = std::tm();
131 t = std::tm();
144 t = std::tm();
160 t = std::tm();
[all...]
H A Dget_one_wide.pass.cpp20 // ios_base::iostate& err, tm *t, char format, char modifier = 0) const;
47 std::tm t;
52 t = std::tm();
68 t = std::tm();
80 t = std::tm();
96 t = std::tm();
114 t = std::tm();
131 t = std::tm();
145 t = std::tm();
162 t = std::tm();
[all...]
/external/testng/src/main/java/org/testng/internal/
H A DTestMethodWorker.java75 ITestNGMethod tm = mi.getMethod();
76 if (tm.getTimeOut() > result) {
77 result = tm.getTimeOut();
120 protected void invokeTestMethods(ITestNGMethod tm, Object instance, argument
123 // Potential bug here: we look up the method index of tm among all
129 m_invoker.invokeTestMethods(tm,
214 ITestNGMethod tm= mi.getMethod();
215 if (m_classMethodMap.removeAndCheckIfLast(tm, mi.getInstance())) {
242 protected int indexOf(ITestNGMethod tm, ITestNGMethod[] allTestMethods) { argument
244 if (allTestMethods[i] == tm) {
[all...]
/external/webrtc/webrtc/base/
H A Dsslidentity.cc232 std::tm tm; local
233 tm.tm_year = year;
235 // Read out remaining ASN1 time data and store it in |tm| in documented
236 // std::tm format.
237 tm.tm_mon = ASN1ReadInt(&s, &bytes_left, 2) - 1;
238 tm.tm_mday = ASN1ReadInt(&s, &bytes_left, 2);
239 tm.tm_hour = ASN1ReadInt(&s, &bytes_left, 2);
240 tm.tm_min = ASN1ReadInt(&s, &bytes_left, 2);
241 tm
[all...]
/external/adhd/cras/src/tests/
H A Dstream_list_unittest.cc78 struct cras_tm *tm,
85 void cras_tm_cancel_timer(struct cras_tm *tm, struct cras_timer *t) { argument
77 cras_tm_create_timer( struct cras_tm *tm, unsigned int ms, void (*cb)(struct cras_timer *t, void *data), void *cb_data) argument
/external/e2fsprogs/lib/support/
H A Dplausible.c92 time_t tm; local
102 tm = sb->s_mtime;
108 ctime(&tm));
110 printf(_("\tlast mounted on %s"), ctime(&tm));
112 tm = sb->s_mkfs_time;
113 printf(_("\tcreated on %s"), ctime(&tm));
115 tm = sb->s_wtime;
116 printf(_("\tlast modified on %s"), ctime(&tm));
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelDAGToDAG.cpp40 WebAssemblyDAGToDAGISel(WebAssemblyTargetMachine &tm, argument
42 : SelectionDAGISel(tm, OptLevel), Subtarget(nullptr), ForCodeSize(false) {
/external/skia/samplecode/
H A DSampleShaderText.cpp58 static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
59 return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm);
62 static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
67 data.fPos, data.fCount, tm);
70 static sk_sp<SkShader> MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
77 static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
86 data.fColors, data.fPos, data.fCount, tm);
89 typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
/external/skqp/samplecode/
H A DSampleShaderText.cpp58 static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
59 return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm);
62 static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
67 data.fPos, data.fCount, tm);
70 static sk_sp<SkShader> MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
77 static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
86 data.fColors, data.fPos, data.fCount, tm);
89 typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
/external/strace/tests/
H A Dutime.c66 rc = k_utime(dummy_filename, (struct tm *) tail_u + 1);
68 dummy_filename, (struct tm *) tail_u + 1, sprintrc(rc));
/external/strace/tests-m32/
H A Dutime.c66 rc = k_utime(dummy_filename, (struct tm *) tail_u + 1);
68 dummy_filename, (struct tm *) tail_u + 1, sprintrc(rc));
/external/strace/tests-mx32/
H A Dutime.c66 rc = k_utime(dummy_filename, (struct tm *) tail_u + 1);
68 dummy_filename, (struct tm *) tail_u + 1, sprintrc(rc));

Completed in 877 milliseconds

1234567891011>>