Home
last modified time | relevance | path

Searched refs:xtime (Results 1 - 3 of 3) sorted by relevance

/third_party/libwebsockets/lib/tls/mbedtls/
H A Dmbedtls-x509.c48 lws_tls_mbedtls_time_to_unix(mbedtls_x509_time *xtime) in lws_tls_mbedtls_time_to_unix() argument
52 if (!xtime || !xtime->MBEDTLS_PRIVATE_V30_ONLY(year) || xtime->MBEDTLS_PRIVATE_V30_ONLY(year) < 0) in lws_tls_mbedtls_time_to_unix()
57 t.tm_year = xtime->MBEDTLS_PRIVATE_V30_ONLY(year) - 1900; in lws_tls_mbedtls_time_to_unix()
58 t.tm_mon = xtime->MBEDTLS_PRIVATE_V30_ONLY(mon) - 1; /* mbedtls months are 1+, tm are 0+ */ in lws_tls_mbedtls_time_to_unix()
59 t.tm_mday = xtime->MBEDTLS_PRIVATE_V30_ONLY(day) - 1; /* mbedtls days are 1+, tm are 0+ */ in lws_tls_mbedtls_time_to_unix()
60 t.tm_hour = xtime->MBEDTLS_PRIVATE_V30_ONLY(hour); in lws_tls_mbedtls_time_to_unix()
61 t.tm_min = xtime->MBEDTLS_PRIVATE_V30_ONLY(min); in lws_tls_mbedtls_time_to_unix()
62 t.tm_sec = xtime in lws_tls_mbedtls_time_to_unix()
[all...]
/third_party/nghttp2/bpf/
H A Dreuseport_kern.c203 static __u8 xtime(__u8 x) { return ((x << 1) ^ (((x >> 7) & 1) * 0x1b)); } in xtime() function
206 (((y & 1) * x) ^ ((y >> 1 & 1) * xtime(x)) ^ \
207 ((y >> 2 & 1) * xtime(xtime(x))) ^ \
208 ((y >> 3 & 1) * xtime(xtime(xtime(x)))) ^ \
209 ((y >> 4 & 1) * xtime(xtime(xtime(xtim
[all...]
/third_party/lzma/C/
H A DAes.c39 #define xtime(x) ((((x) << 1) ^ (((x) & 0x80) != 0 ? 0x1B : 0)) & 0xFF) macro
94 const UInt32 a2 = xtime(a1); in AesGenTables()
103 const UInt32 a2 = xtime(a1); in AesGenTables()
104 const UInt32 a4 = xtime(a2); in AesGenTables()
105 const UInt32 a8 = xtime(a4); in AesGenTables()
383 #undef xtime macro

Completed in 3 milliseconds