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

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 15 arithmetic types capable of representing times; and struct tm which holds
19 implementation-defined. The tm structure shall contain at least the following
47 struct tm Holds the components of a calendar time; or broken-down time.
55 time_t mktime (struct tm *timeptr);
59 char * asctime (const struct tm *timeptr);
61 struct tm * gmtime (const time_t *timer);
62 time_t timegm (struct tm*);
63 struct tm * localtime (const time_t *timer);
66 const struct tm * __restrict timeptr);
67 char * strptime (const char *, const char * format, struct tm*);
141 struct tm { struct
    [all...]
  /device/linaro/hikey/wpan/uim/
uim.c 94 struct timespec tm = {0, 50*1000*1000}; local
107 nanosleep(&tm, NULL);
  /external/autotest/client/tests/tsc/src/
checktsc.c 199 uint64_t t0, t1, tm; local
  /external/blktrace/
blkparse_fmt.c 92 struct tm *tm; local
103 tm = localtime(&sec);
106 tm->tm_hour,
107 tm->tm_min,
108 tm->tm_sec,
  /external/clang/test/SemaCXX/
class.cpp 37 func tm; member in class:C
  /external/curl/lib/
parsedate.c 272 /* this is a clone of 'struct tm' but with all fields we don't need or use
283 /* struct tm to time since epoch in GMT time zone.
290 static void my_timegm(struct my_tm *tm, time_t *t)
296 year = tm->tm_year;
297 month = tm->tm_mon;
307 leap_days = year - (tm->tm_mon <= 1);
312 + leap_days + month_days_cumulative[month] + tm->tm_mday - 1) * 24
313 + tm->tm_hour) * 60 + tm->tm_min) * 60 + tm->tm_sec
338 struct my_tm tm; local
583 const struct tm *tm; local
    [all...]
  /external/e2fsprogs/e2fsck/
logfile.c 72 struct tm *tm = NULL, tm_struct; local
81 tm = (*flags & FLAG_UTC) ? gmtime_r(&ctx->now, &tm_struct) :
90 sprintf(buf, "%02d", tm->tm_mday);
93 sprintf(buf, "%d%02d%02d", tm->tm_year + 1900, tm->tm_mon + 1,
94 tm->tm_mday);
106 sprintf(buf, "%02d", tm->tm_hour);
109 sprintf(buf, "%02d", tm->tm_mon + 1);
112 sprintf(buf, "%02d", tm->tm_min)
    [all...]
  /external/grpc-grpc/src/core/lib/profiling/
basic_timers.cc 39 gpr_timespec tm; member in struct:gpr_timer_entry
141 if (gpr_time_cmp(entry->tm, gpr_time_0(entry->tm.clock_type)) < 0) {
142 entry->tm = gpr_time_0(entry->tm.clock_type);
148 entry->tm.tv_sec, entry->tm.tv_nsec, entry->thd, entry->type,
247 entry->tm = gpr_now(GPR_CLOCK_PRECISE);
  /external/iproute2/tc/
m_ipt.c 502 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
504 print_tm(f, tm);
m_xt_old.c 425 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
427 print_tm(f, tm);
  /external/iptables/extensions/
libxt_time.c 96 struct tm tm; local
140 tm.tm_year = year - 1900;
141 tm.tm_mon = month - 1;
142 tm.tm_mday = day;
143 tm.tm_hour = hour;
144 tm.tm_min = minute;
145 tm.tm_sec = second;
146 tm.tm_isdst = 0;
153 ret = mktime(&tm);
    [all...]
  /external/libnl/lib/route/
act.c 464 struct tcamsg *tm; local
469 err = nlmsg_parse(n, sizeof(*tm), tb, TCAA_MAX, NULL);
473 tm = nlmsg_data(n);
474 tc->tc_family = tm->tca_family;
  /external/mesa3d/src/amd/vulkan/
radv_shader.c 477 LLVMTargetMachineRef tm; local
492 tm = ac_create_target_machine(chip_family, tm_options);
496 ac_create_gs_copy_shader(tm, *shaders, &binary, &variant->config,
499 ac_compile_nir_shader(tm, &binary, &variant->config,
504 LLVMDisposeTargetMachine(tm);
  /external/ppp/pppd/plugins/radius/
avpair.c 531 struct tm *tm; local
635 tm = localtime (&timeval);
636 tm->tm_hour = 0;
637 tm->tm_min = 0;
638 tm->tm_sec = 0;
639 rc_str2tm (valstr, tm);
641 pair->lvalue = (UINT4) timelocal (tm);
643 pair->lvalue = (UINT4) mktime (tm);
  /external/skia/gm/
blurrect.cpp 67 SkShader::TileMode tm = SkShader::kClamp_TileMode; local
80 colors, pos, SK_ARRAY_COUNT(colors), tm,
  /external/skqp/gm/
blurrect.cpp 67 SkShader::TileMode tm = SkShader::kClamp_TileMode; local
80 colors, pos, SK_ARRAY_COUNT(colors), tm,
  /external/tcpdump/
print-ahcp.c 104 struct tm *tm; local
111 if (NULL == (tm = gmtime(&t)))
113 else if (0 == strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", tm))
print-ntp.c 365 struct tm *tm; local
368 tm = localtime(&seconds);
369 strftime(time_buf, sizeof (time_buf), "%Y/%m/%d %H:%M:%S", tm);
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
utils.h 89 struct timespec tm; local
90 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
91 return tm.tv_sec * 1000000000LL + tm.tv_nsec;
101 struct timespec tm; local
102 clock_gettime(CLOCK_MONOTONIC, &tm);
103 return tm.tv_sec * 1000LL + tm.tv_nsec / 1000000LL;
  /external/testng/src/main/java/org/testng/internal/
TestMethodWorker.java 75 ITestNGMethod tm = mi.getMethod(); local
76 if (tm.getTimeOut() > result) {
77 result = tm.getTimeOut();
120 protected void invokeTestMethods(ITestNGMethod tm, Object instance,
123 // Potential bug here: we look up the method index of tm among all
129 m_invoker.invokeTestMethods(tm,
214 ITestNGMethod tm= mi.getMethod(); local
215 if (m_classMethodMap.removeAndCheckIfLast(tm, mi.getInstance())) {
242 protected int indexOf(ITestNGMethod tm, ITestNGMethod[] allTestMethods) {
244 if (allTestMethods[i] == tm) {
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
AnnotationHelper.java 254 ITestNGMethod tm = new TestNGMethod(/* m.getDeclaringClass(), */ m, local
256 vResult.put(key,tm);
  /external/testng/src/main/java/org/testng/junit/
JUnitTestRunner.java 119 JUnitTestMethod tm= new JUnit3TestMethod(tc, test); local
123 tm,
131 m_parentRunner.addFailedTest(tm, tr);
134 m_parentRunner.addPassedTest(tm, tr);
137 InvokedMethod im = new InvokedMethod(test, tm, new Object[0], tri.m_start, tr);
139 m_methods.add(tm);
  /external/toybox/toys/posix/
ls.c 432 struct tm *tm; local
469 tm = localtime(&(st->st_mtime));
470 strftime(tmp, sizeof(tmp), "%F %H:%M", tm);
474 s += sprintf(s, ":%02d.%09d ", tm->tm_sec, (int)st->st_mtim.tv_nsec);
475 strftime(s, sizeof(tmp)-(s-tmp), "%z", tm);
  /external/u-boot/arch/m68k/include/asm/coldfire/
ata.h 26 u8 tm; /* 0x09 */ member in struct:atac
  /external/u-boot/drivers/ddr/marvell/a38x/
ddr3_training_bist.c 78 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
80 if (IS_IF_ACTIVE(tm->if_act_mask, if_id) == 0)
124 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
127 VALIDATE_IF_ACTIVE(tm->if_act_mask, i);
187 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
190 VALIDATE_IF_ACTIVE(tm->if_act_mask, i);
206 VALIDATE_IF_ACTIVE(tm->if_act_mask, i);
225 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get(); local
232 RESULT_PER_BYTE, HWS_CONTROL_ELEMENT_ADLL, HWS_LOW2HIGH, dir, tm->if_act_mask, val,
487 struct mv_ddr_topology_map *tm = mv_ddr_topology_map_get() local
    [all...]

Completed in 923 milliseconds

1 2 3 4 56 7 8 91011>>