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:is_leap_year
(Results
1 - 5
of
5
) sorted by relevance
/third_party/ltp/lib/
H
A
D
tst_rtctime.c
20
static inline bool
is_leap_year
(unsigned int year)
in is_leap_year()
function
51
return rtc_days_in_month[month] + (
is_leap_year
(year) && month == 1);
in rtc_month_days()
76
days += 365 +
is_leap_year
(year);
in tst_rtc_time_to_tm()
/third_party/nghttp2/src/
H
A
D
timegm.c
59
static int
is_leap_year
(int y) {
in is_leap_year()
function
76
if (tm->tm_mon >= 2 &&
is_leap_year
(tm->tm_year + 1900)) {
in nghttp2_timegm_without_yday()
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H
A
D
rtc.h
53
#define
is_leap_year
linux_is_leap_year
macro
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/
H
A
D
civil_time_detail.h
83
CONSTEXPR_F bool
is_leap_year
(year_t y) noexcept {
98
return
is_leap_year
(y + (m > 2)) ? 366 : 365;
104
return k_days_per_month[m] + (m == 2 &&
is_leap_year
(y));
604
const int feb29 = (cs.month() > 2 && impl::
is_leap_year
(cs.year()));
/third_party/python/Modules/
H
A
D
_zoneinfo.c
166
is_leap_year
(int year);
1181
if (self->month == 2 &&
is_leap_year
(year)) {
in calendarrule_year_to_timestamp()
1293
if (self->julian && day >= 59 &&
is_leap_year
(year)) {
in dayrule_year_to_timestamp()
2172
is_leap_year
(int year)
in is_leap_year()
function
2185
if (m > 2 &&
is_leap_year
(y + 1)) {
in ymd_to_ord()
Completed in 7 milliseconds