Home
last modified time | relevance | path

Searched refs:mon (Results 1 - 25 of 51) sorted by relevance

123

/third_party/ltp/lib/
H A Dtst_rtctime.c29 unsigned int mon = mon0, year = year0; in tst_mktime() local
32 mon -= 2; in tst_mktime()
33 if (0 >= (int) (mon)) { in tst_mktime()
34 mon += 12; /* Puts Feb last since it has leap day */ in tst_mktime()
39 (year/4 - year/100 + year/400 + 367*mon/12 + day) + in tst_mktime()
/third_party/lzma/CPP/Common/
H A DMyWindows.cpp243 UInt32 leaps, year, day, mon; in FileTimeToSystemTime() local
250 mon = (64 * day) / 1959; in FileTimeToSystemTime()
251 st->wDay = (WORD)(day - (1959 * mon) / 64); in FileTimeToSystemTime()
252 mon -= 1; in FileTimeToSystemTime()
254 if (mon > 12) in FileTimeToSystemTime()
256 mon -= 12; in FileTimeToSystemTime()
259 st->wMonth = (WORD)mon; in FileTimeToSystemTime()
263 unsigned year, mon; in FileTimeToSystemTime()
278 for (mon = 0;; mon in FileTimeToSystemTime()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Deapol_test.py28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
29 self.mon.attach()
61 while self.mon.pending():
62 ev = self.mon.recv()
71 if not self.mon.pending(timeout=remaining):
/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_cpu.c338 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in query_api_thread_busy_status() local
340 if (mon && mon->queue) in query_api_thread_busy_status()
341 thread_now = util_queue_get_thread_time_nano(mon->queue, 0); in query_api_thread_busy_status()
404 struct util_queue_monitoring *mon = gr->pane->hud->monitored_queue; in get_counter() local
406 if (!mon || !mon->queue) in get_counter()
411 return mon->num_offloaded_items; in get_counter()
413 return mon->num_direct_items; in get_counter()
415 return mon in get_counter()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dwpa_helpers.c99 int get_wpa_cli_event2(struct wpa_ctrl *mon, in get_wpa_cli_event2() argument
110 fd = wpa_ctrl_get_fd(mon); in get_wpa_cli_event2()
132 if (wpa_ctrl_recv(mon, buf, &len) < 0) { in get_wpa_cli_event2()
156 int get_wpa_cli_event(struct wpa_ctrl *mon, in get_wpa_cli_event() argument
159 return get_wpa_cli_event2(mon, event, NULL, buf, buf_size); in get_wpa_cli_event()
H A Dwpa_helpers.h21 int get_wpa_cli_event(struct wpa_ctrl *mon,
23 int get_wpa_cli_event2(struct wpa_ctrl *mon,
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Deapol_test.py28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
29 self.mon.attach()
61 while self.mon.pending():
62 ev = self.mon.recv()
71 if not self.mon.pending(timeout=remaining):
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dwpa_helpers.c99 int get_wpa_cli_event2(struct wpa_ctrl *mon, in get_wpa_cli_event2() argument
110 fd = wpa_ctrl_get_fd(mon); in get_wpa_cli_event2()
132 if (wpa_ctrl_recv(mon, buf, &len) < 0) { in get_wpa_cli_event2()
156 int get_wpa_cli_event(struct wpa_ctrl *mon, in get_wpa_cli_event() argument
159 return get_wpa_cli_event2(mon, event, NULL, buf, buf_size); in get_wpa_cli_event()
H A Dwpa_helpers.h21 int get_wpa_cli_event(struct wpa_ctrl *mon,
23 int get_wpa_cli_event2(struct wpa_ctrl *mon,
/third_party/lzma/CPP/Windows/
H A DTimeUtils.cpp64 unsigned year, mon, day, hour, min, sec; in FileTime_To_DosTime()
103 for (mon = 1; mon <= 12; mon++) in FileTime_To_DosTime()
105 unsigned s = ms[mon - 1]; in FileTime_To_DosTime()
119 dosTime = (year << 25) | (mon << 21) | (day << 16) | (hour << 11) | (min << 5) | (sec >> 1); in FileTime_To_DosTime()
/third_party/rust/crates/humantime/src/
H A Ddate.rs296 let mut mon = 0; in fmt() variables
298 mon += 1; in fmt()
305 let mon = if mon + 2 > 12 { in fmt()
307 mon - 10 in fmt()
309 mon + 2 in fmt()
322 buf[5] = b'0' + (mon / 10) as u8; in fmt()
323 buf[6] = b'0' + (mon % 10) as u8; in fmt()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DSimpleDateRule.java152 int mon = c.get(Calendar.MONTH); in doFirstBetween()
156 if (mon > this.month) { in doFirstBetween()
165 if (mon == this.month && result.before(start)) { in doFirstBetween()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DSimpleDateRule.java150 int mon = c.get(Calendar.MONTH); in doFirstBetween()
154 if (mon > this.month) { in doFirstBetween()
163 if (mon == this.month && result.before(start)) { in doFirstBetween()
/third_party/python/Lib/http/
H A Dcookiejar.py150 def _str2time(day, mon, yr, hr, min, sec, tz):
158 mon = MONTHS_LOWER.index(mon.lower())+1
162 imon = int(mon)
166 mon = imon
192 t = _timegm((yr, mon, day, hr, min, sec, tz))
265 mon = MONTHS_LOWER.index(g[1].lower()) + 1
266 tt = (int(g[2]), mon, int(g[0]),
277 day, mon, yr, hr, min, sec, tz = [None]*7
282 day, mon, y
[all...]
/third_party/curl/lib/
H A Dparsedate.c284 int mday, int mon, int year) in time2epoch()
288 int leap_days = year - (mon <= 1); in time2epoch()
292 + leap_days + month_days_cumulative[mon] + mday - 1) * 24 in time2epoch()
360 int wdaynum = -1; /* day of the week number, 0-6 (mon-sun) */ in parsedate()
283 time2epoch(int sec, int min, int hour, int mday, int mon, int year) time2epoch() argument
/third_party/curl/tests/
H A Dserverhelp.pm79 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
85 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
/third_party/lzma/C/Util/7z/
H A D7zMain.c430 unsigned year, mon, hour, min, sec; in ConvertFileTimeToString() local
462 for (mon = 0;; mon++) in ConvertFileTimeToString()
464 const unsigned d = ms[mon]; in ConvertFileTimeToString()
470 UIntToStr_2(s, mon + 1); s[2] = '-'; s += 3; in ConvertFileTimeToString()
/third_party/libwebsockets/lib/roles/http/
H A Dcookie.c27 static const char *const mon = "janfebmaraprnayjunjulaugsepoctnovdec"; variable
113 if (lws_tolower(*(d - 3)) == mon[i] && in lws_cookie_parse_date()
114 lws_tolower(*(d - 2)) == mon[i + 1] && in lws_cookie_parse_date()
115 lws_tolower(*(d - 1)) == mon[i + 2]) { in lws_cookie_parse_date()
/third_party/toybox/toys/pending/
H A Dcrond.c46 char min[60], hour[24], dom[31], mon[12], dow[7], *cmd; member
58 static char days[]={"sun""mon""tue""wed""thu""fri""sat"};
273 if (parse_and_fillarray(j->mon, 1, sizeof(j->mon), tokens[3])) in parse_line()
608 && job->mon[lt->tm_mon-1]) { in schedule_jobs()
/third_party/mbedtls/library/
H A Dx509_crl.c616 crl->this_update.year, crl->this_update.mon, in mbedtls_x509_crl_info()
623 crl->next_update.year, crl->next_update.mon, in mbedtls_x509_crl_info()
644 entry->revocation_date.year, entry->revocation_date.mon, in mbedtls_x509_crl_info()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A Dosu_client.c2161 struct wpa_ctrl *mon; in osu_connect() local
2217 mon = open_wpa_mon(ifname); in osu_connect()
2218 if (mon == NULL) in osu_connect()
2227 res = get_wpa_cli_event(mon, "CTRL-EVENT-CONNECTED", in osu_connect()
2230 wpa_ctrl_detach(mon); in osu_connect()
2231 wpa_ctrl_close(mon); in osu_connect()
2496 struct wpa_ctrl *mon; in cmd_signup() local
2521 mon = open_wpa_mon(ifname); in cmd_signup()
2522 if (mon == NULL) in cmd_signup()
2529 wpa_ctrl_detach(mon); in cmd_signup()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
H A Dosu_client.c2163 struct wpa_ctrl *mon; in osu_connect() local
2219 mon = open_wpa_mon(ifname); in osu_connect()
2220 if (mon == NULL) in osu_connect()
2229 res = get_wpa_cli_event(mon, "CTRL-EVENT-CONNECTED", in osu_connect()
2232 wpa_ctrl_detach(mon); in osu_connect()
2233 wpa_ctrl_close(mon); in osu_connect()
2498 struct wpa_ctrl *mon; in cmd_signup() local
2523 mon = open_wpa_mon(ifname); in cmd_signup()
2524 if (mon == NULL) in cmd_signup()
2531 wpa_ctrl_detach(mon); in cmd_signup()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
H A Dtime.cc402 absl::TimeConversion ConvertDateTime(int64_t year, int mon, int day, int hour, in ConvertDateTime() argument
408 const CivilSecond cs(year, mon, day, hour, min, sec); in ConvertDateTime()
427 if (year != cs.year() || mon != cs.month() || day != cs.day() || in ConvertDateTime()
/third_party/icu/icu4c/source/common/
H A Drbbicst.pl232 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
/third_party/node/deps/icu-small/source/common/
H A Drbbicst.pl232 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;

Completed in 20 milliseconds

123