HomeSort by relevance Sort by last modified time
    Searched defs:tm (Results 1 - 25 of 355) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/asan/TestCases/
time_interceptor.cc 13 time_t *tm = (time_t*)malloc(sizeof(time_t)); local
14 free(tm);
15 time_t t = time(tm);
  /external/compiler-rt/test/msan/
mktime.cc 10 struct tm tm; local
11 tm.tm_year = 2014;
12 tm.tm_mon = 3;
13 tm.tm_mday = 28;
15 tm.tm_hour = 13;
17 tm.tm_min = 4;
18 tm.tm_sec = 42;
19 tm.tm_isdst = -1;
20 time_t t = mktime(&tm);
    [all...]
  /external/ltrace/
summary.h 27 struct timeval tm; member in struct:timedelta
  /external/valgrind/main/none/tests/s390x/
tm.c 44 void tm(void) function
50 asm volatile( "tm %[v],15\n\t" : : [v] "R"(v) : "cc");
55 asm volatile( "tm %[v],0\n\t" : : [v] "R"(v) : "cc");
60 asm volatile( "tm %[v],0xf0\n\t" : : [v] "R"(v) : "cc");
65 asm volatile( "tm %[v],0x70\n\t" : : [v] "R"(v) : "cc");
70 asm volatile( "tm %[v],0x81\n\t" : : [v] "R"(v) : "cc");
76 tm();
  /external/chromium_org/third_party/skia/src/animator/
SkTime.cpp 46 tm syst;
47 time_t tm; local
49 time(&tm);
50 localtime_r(&tm, &syst);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock_posix-inl.h 50 struct timespec tm; local
51 tm.tv_sec = 0;
52 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
53 nanosleep(&tm, NULL);
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock_posix-inl.h 50 struct timespec tm; local
51 tm.tv_sec = 0;
52 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
53 nanosleep(&tm, NULL);
  /external/chromium_org/third_party/webrtc/voice_engine/
transmit_mixer_unittest.cc 31 TransmitMixer* tm = NULL; local
32 ASSERT_EQ(0, TransmitMixer::Create(tm, 0));
33 ASSERT_TRUE(tm != NULL);
35 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(NULL,
37 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
39 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
41 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
43 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
45 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
47 EXPECT_EQ(-1, tm->DeRegisterExternalMediaProcessing(kPlaybackPerChannel))
    [all...]
  /external/libcxx/test/language.support/support.runtime/
ctime.pass.cpp 28 std::tm tm = {0}; local
31 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
33 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
35 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /external/libcxx/test/utilities/date.time/
tested_elsewhere.pass.cpp 26 std::tm tm = {0}; local
30 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
32 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
34 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
35 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
  /external/skia/src/animator/
SkTime.cpp 46 tm syst;
47 time_t tm; local
49 time(&tm);
50 localtime_r(&tm, &syst);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
ctime.pass.cpp 28 std::tm tm = {0}; local
31 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
33 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
35 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/date.time/
tested_elsewhere.pass.cpp 26 std::tm tm = {0}; local
30 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
32 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
34 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
35 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 79 TreeMap tm; field in class:OldTreeMapTest
107 TreeMap myTreeMap = new TreeMap(new HashMap(tm));
158 assertTrue("Returned false for valid key", tm.containsKey("95"));
159 assertTrue("Returned true for invalid key", !tm.containsKey("XXXXX"));
162 tm.containsKey(new Double(3.14));
169 tm.containsKey(null);
178 assertEquals("Returned incorrect first key", "0", tm.firstKey());
179 tm = new TreeMap();
181 tm.firstKey();
192 tm.put("Hello", o)
    [all...]
OldAndroidTreeMapTest.java 42 TreeMap<Integer, String> tm = new TreeMap<Integer, String>(); local
57 tm.put(new Integer(val), "V:" + val);
60 if (SPEW) System.out.println("tm = " + tm);
62 if (SPEW) System.out.println("tm.size() = " + tm.size());
64 assertEquals(tm.size(), hm.size());
66 if (SPEW) System.out.println("tm.firstKey() = " + tm.firstKey());
68 if (SPEW) System.out.println("tm.lastKey() = " + tm.lastKey())
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
TrustManagerImplTest.java 77 TrustManagerImpl tm = new TrustManagerImpl(ks); local
78 assertEquals(0, tm.getAcceptedIssuers().length);
79 checkTrustManager(tm);
85 TrustManagerImpl tm = new TrustManagerImpl(ks); local
86 assertEquals(1, tm.getAcceptedIssuers().length);
87 checkTrustManager(tm);
90 private void checkTrustManager(TrustManagerImpl tm) throws Exception {
92 tm.checkClientTrusted(null, "RSA");
98 tm.checkClientTrusted(new X509Certificate[0], "RSA");
104 tm.checkClientTrusted(untrustedChain, "RSA")
    [all...]
  /external/libcxx/test/depr/depr.c.headers/
wchar_h.pass.cpp 35 tm *tm = 0; local
95 static_assert((std::is_same<decltype(wcsftime(ws, s, L"", tm)), size_t>::value), "");
  /external/libcxx/test/strings/c.strings/
cwchar.pass.cpp 35 std::tm *tm = 0; local
100 static_assert((std::is_same<decltype(std::wcsftime(ws, s, L"", tm)), std::size_t>::value), "");
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
CSemaphore.cpp 70 struct timespec tm; local
73 clock_gettime(CLOCK_REALTIME, &tm);
74 tm.tv_sec += sec;
79 rc = pthread_cond_timedwait(&m_cond, &m_mutex, &tm);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
wchar_h.pass.cpp 35 tm *tm = 0; local
95 static_assert((std::is_same<decltype(wcsftime(ws, s, L"", tm)), size_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cwchar.pass.cpp 35 std::tm *tm = 0; local
100 static_assert((std::is_same<decltype(std::wcsftime(ws, s, L"", tm)), std::size_t>::value), "");
  /system/extras/tests/icachetest/
icache_main.c 11 struct timeval now, tm; local
21 gettimeofday(&tm, 0);
22 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
28 gettimeofday(&tm, 0);
29 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
PixelPerfectTreeView.java 51 IToolBarManager tm = actionBars.getToolBarManager(); local
52 tm.removeAll();
53 tm.add(RefreshPixelPerfectTreeAction.getAction());
PixelPerfectView.java 55 IToolBarManager tm = actionBars.getToolBarManager(); local
56 tm.removeAll();
57 tm.add(SavePixelPerfectAction.getAction(getSite().getShell()));
58 tm.add(RefreshPixelPerfectAction.getAction());
59 tm.add(LoadOverlayAction.getAction(getSite().getShell()));
  /bionic/libc/include/
time.h 46 struct tm { struct
65 extern char* asctime(const struct tm*) __LIBC_ABI_PUBLIC__;
66 extern char* asctime_r(const struct tm*, char*) __LIBC_ABI_PUBLIC__;
69 extern time_t mktime(struct tm*) __LIBC_ABI_PUBLIC__;
71 extern struct tm* localtime(const time_t*) __LIBC_ABI_PUBLIC__;
72 extern struct tm* localtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
74 extern struct tm* gmtime(const time_t*) __LIBC_ABI_PUBLIC__;
75 extern struct tm* gmtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__
    [all...]

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>