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

1 2 3 4 5 6 7 8 91011>>

  /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/openssl/crypto/
o_time.h 64 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
65 int OPENSSL_gmtime_adj(struct tm *tm, int offset_day, long offset_sec);
  /bionic/libc/include/
time64.h 50 char* asctime64(const struct tm*);
51 char* asctime64_r(const struct tm*, char*);
54 struct tm* gmtime64(const time64_t*);
55 struct tm* gmtime64_r(const time64_t*, struct tm*);
56 struct tm* localtime64(const time64_t*);
57 struct tm* localtime64_r(const time64_t*, struct tm*);
58 time64_t mktime64(const struct tm*);
59 time64_t timegm64(const struct tm*);
    [all...]
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...]
  /development/ndk/platforms/android-3/include/
time64.h 42 struct tm *gmtime64_r (const time64_t *, struct tm *);
43 struct tm *localtime64_r (const time64_t *, struct tm *);
44 struct tm *gmtime64 (const time64_t *);
45 struct tm *localtime64 (const time64_t *);
47 char *asctime64 (const struct tm *);
48 char *asctime64_r (const struct tm *, char *);
53 time64_t timegm64 (const struct tm *);
54 time64_t mktime64 (const struct tm *);
    [all...]
time.h 45 struct tm { struct
62 * struct tm, the value should be the field name
66 extern char* asctime(const struct tm* a);
67 extern char* asctime_r(const struct tm* a, char* buf);
71 extern time_t mktime (struct tm *a);
73 extern struct tm* localtime(const time_t *t);
74 extern struct tm* localtime_r(const time_t *timep, struct tm *result);
76 extern struct tm* gmtime(const time_t *timep);
77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result)
    [all...]
  /development/ndk/platforms/android-L/include/
time64.h 50 char* asctime64(const struct tm*);
51 char* asctime64_r(const struct tm*, char*);
54 struct tm* gmtime64(const time64_t*);
55 struct tm* gmtime64_r(const time64_t*, struct tm*);
56 struct tm* localtime64(const time64_t*);
57 struct tm* localtime64_r(const time64_t*, struct tm*);
58 time64_t mktime64(const struct tm*);
59 time64_t timegm64(const struct tm*);
    [all...]
time.h 45 struct tm { struct
64 extern char* asctime(const struct tm*) __LIBC_ABI_PUBLIC__;
65 extern char* asctime_r(const struct tm*, char*) __LIBC_ABI_PUBLIC__;
68 extern time_t mktime(struct tm*) __LIBC_ABI_PUBLIC__;
70 extern struct tm* localtime(const time_t*) __LIBC_ABI_PUBLIC__;
71 extern struct tm* localtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
73 extern struct tm* gmtime(const time_t*) __LIBC_ABI_PUBLIC__;
74 extern struct tm* gmtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
time_support.h 71 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
73 /* OPENSSL_gmtime_adj updates |tm| by adding |offset_day| days and |offset_sec|
75 int OPENSSL_gmtime_adj(struct tm *tm, int offset_day, long offset_sec);
80 int OPENSSL_gmtime_diff(int *out_days, int *out_secs, const struct tm *from,
81 const struct tm *to);
  /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...]
  /bionic/libc/bionic/
strftime_l.cpp 31 size_t strftime_l(char *s, size_t max, const char *format, const struct tm *tm,
33 return strftime(s, max, format, tm);
  /external/chromium_org/base/
os_compat_nacl.h 12 extern "C" time_t timegm(struct tm* const t);
os_compat_nacl.cc 14 time_t timegm(struct tm* tm) {
20 ret = mktime(tm);
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
asn1_locl.h 61 int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d);
62 int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d);
  /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/mesa/src/src/gallium/drivers/radeon/
AMDGPU.h 24 FunctionPass *createR600ExpandSpecialInstrsPass(TargetMachine &tm);
27 FunctionPass *createSIAssignInterpRegsPass(TargetMachine &tm);
31 FunctionPass *createAMDGPUConvertToISAPass(TargetMachine &tm);
  /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/mesa3d/src/gallium/drivers/radeon/
AMDGPU.h 24 FunctionPass *createR600ExpandSpecialInstrsPass(TargetMachine &tm);
27 FunctionPass *createSIAssignInterpRegsPass(TargetMachine &tm);
31 FunctionPass *createAMDGPUConvertToISAPass(TargetMachine &tm);
  /external/chromium_org/third_party/boringssl/src/crypto/
time_support.c 66 struct tm *OPENSSL_gmtime(const time_t *time, struct tm *result) {
99 /* Convert tm structure and offset into julian day and seconds */
100 static int julian_adj(const struct tm *tm, int off_day, long offset_sec,
111 offset_hms += tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
123 time_year = tm->tm_year + 1900;
124 time_month = tm->tm_mon + 1
    [all...]
  /development/ndk/platforms/android-8/include/
time.h 45 struct tm { struct
62 * struct tm, the value should be the field name
66 extern char* asctime(const struct tm* a);
67 extern char* asctime_r(const struct tm* a, char* buf);
71 extern time_t mktime (struct tm *a);
73 extern struct tm* localtime(const time_t *t);
74 extern struct tm* localtime_r(const time_t *timep, struct tm *result);
76 extern struct tm* gmtime(const time_t *timep);
77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result)
    [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/bison/lib/
time.in.h 132 _GL_FUNCDECL_RPL (mktime, time_t, (struct tm *__tp) _GL_ARG_NONNULL ((1)));
133 _GL_CXXALIAS_RPL (mktime, time_t, (struct tm *__tp));
135 _GL_CXXALIAS_SYS (mktime, time_t, (struct tm *__tp));
149 _GL_FUNCDECL_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,
150 struct tm *restrict __result)
152 _GL_CXXALIAS_RPL (localtime_r, struct tm *, (time_t const *restrict __timer,
153 struct tm *restrict __result));
156 _GL_FUNCDECL_SYS (localtime_r, struct tm *, (time_t const *restrict __timer,
157 struct tm *restrict __result)
160 _GL_CXXALIAS_SYS (localtime_r, struct tm *, (time_t const *restrict __timer
    [all...]
  /bionic/libc/private/
bionic_time.h 37 time_t mktime_tz(struct tm* const, char const*);
  /external/fio/
tickmarks.h 9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,

Completed in 714 milliseconds

1 2 3 4 5 6 7 8 91011>>