HomeSort by relevance Sort by last modified time
    Searched defs:tm (Results 76 - 100 of 289) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/rtc/
rtctest.c 116 struct rtc_time tm; local
121 rc = ioctl(self->fd, RTC_RD_TIME, &tm);
124 secs = timegm((struct tm *)&tm) + ALARM_DELTA;
125 gmtime_r(&secs, (struct tm *)&tm);
127 rc = ioctl(self->fd, RTC_ALM_SET, &tm);
134 rc = ioctl(self->fd, RTC_ALM_READ, &tm);
138 tm.tm_hour, tm.tm_min, tm.tm_sec)
172 struct rtc_time tm; local
    [all...]
  /external/ltp/pan/
reporter.c 88 struct tm *tm; local
136 tm = gmtime(&clock);
137 strftime(key_get, KEYSIZE, "%x", tm);
  /external/skia/gm/
blurroundrect.cpp 96 SkShader::TileMode tm = SkShader::kClamp_TileMode; local
109 colors, pos, SK_ARRAY_COUNT(colors), tm,
  /external/skqp/gm/
blurroundrect.cpp 96 SkShader::TileMode tm = SkShader::kClamp_TileMode; local
109 colors, pos, SK_ARRAY_COUNT(colors), tm,
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGList.cpp 69 const TargetMachine &tm = mf.getTarget(); local
70 HazardRec = tm.getInstrInfo()->CreateTargetHazardRecognizer(&tm, this);
  /external/toybox/toys/pending/
last.c 90 time_t tm[3] = {0,}; //array for time avlues, previous, current local
98 *tm = time(tm+1);
110 *tm = ut.ut_tv.tv_sec;
129 tm[1] = tm[2] = (time_t)ut.ut_tv.tv_sec;
133 seize_duration(tm[0], tm[1]);
140 tm[2] = (time_t)ut.ut_tv.tv_sec;
146 seize_duration(tm[0], u->ut_tv.tv_sec)
    [all...]
  /external/u-boot/drivers/ddr/marvell/a38x/
ddr3_init.c 40 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
106 if (MV_DDR_IS_64BIT_DRAM_MODE(tm->bus_act_mask) ||
107 MV_DDR_IS_32BIT_IN_64BIT_DRAM_MODE(tm->bus_act_mask, octets_per_if_num))
125 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
131 VALIDATE_BUS_ACTIVE(tm->bus_act_mask, bus_cnt);
136 if (tm->interface_params[0].bus_width/* supports only single interface */ == MV_DDR_DEV_WIDTH_16BIT)
138 if (tm->interface_params[0].bus_width/* supports only single interface */ == MV_DDR_DEV_WIDTH_8BIT)
142 memory_size_per_cs = (uint64_t)mem_size[tm->interface_params[0].memory_size] * (uint64_t)num_of_active_bus
164 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
166 if (DDR3_IS_ECC_PUP4_MODE(tm->bus_act_mask) |
185 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
    [all...]
  /external/u-boot/drivers/spi/
mpc8xx_spi.c 290 int tm; local
321 for (tm = 0; tm < 1000; ++tm) {
328 if (tm >= 1000)
mpc8xxx_spi.c 80 int tm, isRead = 0; local
133 for (tm = 0, isRead = 0; tm < SPI_TIMEOUT; ++tm) {
155 if (tm >= SPI_TIMEOUT)
  /external/v8/src/base/platform/
platform-aix.cc 50 struct tm tm; local
51 struct tm* t = localtime_r(&tv, &tm);
57 // On AIX, struct tm does not contain a tm_gmtoff field.
60 struct tm tm; local
61 struct tm* loc = localtime_r(&utc, &tm);
  /external/webrtc/webrtc/base/
timeutils_unittest.cc 131 struct tm tm; local
135 CurrentTmTime(&tm, &microseconds);
138 // Assert that 'tm' represents a time between 'before' and 'after'.
141 time_t t = ::mktime(&tm) + local_delta;
196 std::tm tm; local
197 tm.tm_year = year - 1900; // std::tm is year 1900 based.
198 tm.tm_mon = rtc::CreateRandomId() % 12
249 std::tm* tm = std::gmtime(&t); local
253 std::tm tm; local
    [all...]
  /frameworks/av/services/audioflinger/
BufLog.cpp 133 struct tm tm; local
134 localtime_r(&tv.tv_sec, &tm);
135 strftime(timeStr, sizeof(timeStr), "%Y%m%d%H%M%S", &tm);
  /external/conscrypt/common/src/test/java/org/conscrypt/
TrustManagerImplTest.java 75 X509TrustManager tm = trustManager(root); local
77 assertInvalid(chain1, tm);
79 assertValid(chain2, tm);
81 assertValid(chain1, tm);
109 X509TrustManager tm = trustManager(root); local
117 assertTrue(tm instanceof TrustManagerImpl);
118 TrustManagerImpl tmi = (TrustManagerImpl) tm;
216 private void assertValid(X509Certificate[] chain, X509TrustManager tm) throws Exception {
217 if (tm instanceof TrustManagerImpl) {
218 TrustManagerImpl tmi = (TrustManagerImpl) tm;
    [all...]
  /external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/
TrustManagerImplTest.java 79 X509TrustManager tm = trustManager(root); local
81 assertInvalid(chain1, tm);
83 assertValid(chain2, tm);
85 assertValid(chain1, tm);
113 X509TrustManager tm = trustManager(root); local
121 assertTrue(tm instanceof TrustManagerImpl);
122 TrustManagerImpl tmi = (TrustManagerImpl) tm;
223 private void assertValid(X509Certificate[] chain, X509TrustManager tm) throws Exception {
224 if (tm instanceof TrustManagerImpl) {
225 TrustManagerImpl tmi = (TrustManagerImpl) tm;
    [all...]
  /art/libartbase/base/
time_utils.cc 135 tm tmbuf;
138 tm* ptm = &tmbuf;
140 tm* ptm = localtime_r(&now, &tmbuf);
211 timespec tm; local
212 tm.tv_sec = ns / MsToNs(1000);
213 tm.tv_nsec = ns - static_cast<uint64_t>(tm.tv_sec) * MsToNs(1000);
214 nanosleep(&tm, nullptr);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
CaCertManagementTest.java 154 X509TrustManager tm = getFirstX509TrustManager(tmf); local
155 boolean trusted = Arrays.asList(tm.getAcceptedIssuers()).contains(caCert);
164 trusted = Arrays.asList(tm.getAcceptedIssuers()).contains(caCert);
172 X509TrustManagerExtensions xtm = new X509TrustManagerExtensions(tm);
  /cts/tests/tests/security/src/android/security/cts/
CertBlacklistTest.java 112 for (TrustManager tm : tmf.getTrustManagers()) {
113 if (tm instanceof X509TrustManager) {
114 return (X509TrustManager) tm;
121 private static void assertTrusted(X509Certificate[] certs, X509TrustManager tm)
123 tm.checkServerTrusted(certs, "RSA");
126 private static void assertUntrusted(X509Certificate[] certs, X509TrustManager tm) {
128 tm.checkServerTrusted(certs, "RSA");
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
strftime.c 77 static char * _fmt(const char *, const struct tm * const, char *, const char * const, int *);
96 const struct tm * __restrict timeptr
132 const struct tm * const t,
289 struct tm tm; local
294 tm = *t;
295 mkt = mktime(&tm);
513 struct tm tmp;
  /external/conscrypt/platform/src/test/java/org/conscrypt/
CertBlacklistTest.java 111 private static void assertTrusted(X509Certificate[] certs, X509TrustManager tm)
113 tm.checkServerTrusted(certs, "RSA");
116 private static void assertUntrusted(X509Certificate[] certs, X509TrustManager tm) {
118 tm.checkServerTrusted(certs, "RSA");
  /external/conscrypt/repackaged/platform/src/test/java/com/android/org/conscrypt/
CertBlacklistTest.java 115 private static void assertTrusted(X509Certificate[] certs, X509TrustManager tm)
117 tm.checkServerTrusted(certs, "RSA");
120 private static void assertUntrusted(X509Certificate[] certs, X509TrustManager tm) {
122 tm.checkServerTrusted(certs, "RSA");
  /external/curl/lib/
file.c 417 struct tm buffer;
418 const struct tm *tm = &buffer; local
440 Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
441 tm->tm_mday,
442 Curl_month[tm->tm_mon],
443 tm->tm_year + 1900,
444 tm->tm_hour,
445 tm->tm_min
    [all...]
  /external/e2fsprogs/lib/e2p/
ls.c 228 time_t tm; local
315 tm = sb->s_mkfs_time;
316 fprintf(f, "Filesystem created: %s", ctime(&tm));
318 tm = sb->s_mtime;
320 sb->s_mtime ? ctime(&tm) : "n/a\n");
321 tm = sb->s_wtime;
322 fprintf(f, "Last write time: %s", ctime(&tm));
325 tm = sb->s_lastcheck;
326 fprintf(f, "Last checked: %s", ctime(&tm));
420 tm = sb->s_first_error_time
    [all...]
  /external/e2fsprogs/lib/support/
plausible.c 103 time_t tm; local
113 tm = sb->s_mtime;
119 ctime(&tm));
121 printf(_("\tlast mounted on %s"), ctime(&tm));
123 tm = sb->s_mkfs_time;
124 printf(_("\tcreated on %s"), ctime(&tm));
126 tm = sb->s_wtime;
127 printf(_("\tlast modified on %s"), ctime(&tm));
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
ContactNumberUtils.java 309 TelephonyManager tm = (TelephonyManager) local
311 mdn = tm.getLine1Number();
  /external/iproute2/tc/
m_ife.c 321 struct tcf_t *tm = RTA_DATA(tb[TCA_IFE_TM]); local
323 print_tm(f, tm);

Completed in 877 milliseconds

1 2 34 5 6 7 8 91011>>