Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:xtime
(Results
1 - 3
of
3
) sorted by relevance
/third_party/libwebsockets/lib/tls/mbedtls/
H
A
D
mbedtls-x509.c
48
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
D
reuseport_kern.c
203
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
D
Aes.c
39
#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