Home
last modified time | relevance | path

Searched refs:time (Results 651 - 675 of 7547) sorted by relevance

1...<<21222324252627282930>>...302

/kernel/linux/linux-5.10/include/uapi/sound/
H A Dasequencer.h65 #define SNDRV_SEQ_EVENT_QFRAME 22 /* midi time code quarter frame */
177 #define SNDRV_SEQ_TIME_STAMP_REAL (1<<0) /* timestamp in real time */
181 #define SNDRV_SEQ_TIME_MODE_REL (1<<1) /* relative to current time */
242 struct snd_seq_real_time time; member
256 union snd_seq_timestamp time; /* time */ member
279 union snd_seq_timestamp time; /* schedule time */ member
292 union snd_seq_timestamp time; member
385 #define SNDRV_SEQ_REMOVE_TIME_BEFORE (1<<4) /* Restrict to before time */
395 union snd_seq_timestamp time; global() member
495 struct snd_seq_real_time time; /* current time */ global() member
[all...]
/kernel/linux/linux-5.10/kernel/kcsan/
H A Dreport.c71 * The last time the race was reported.
73 unsigned long time; member
91 * same time window is limited.
134 if (time_before(rt->time, use_entry->time)) in rate_limit_report()
141 if (rt->time == 0) in rate_limit_report()
145 if (time_before(rt->time, invalid_before)) in rate_limit_report()
154 use_entry->time = jiffies; in rate_limit_report()
617 * of printk() could deadlock. Until such time that all printing code in kcsan_report()
/kernel/linux/linux-5.10/drivers/rtc/
H A Drtc-jz4740.c140 static int jz4740_rtc_read_time(struct device *dev, struct rtc_time *time) in jz4740_rtc_read_time() argument
164 rtc_time64_to_tm(secs, time); in jz4740_rtc_read_time()
169 static int jz4740_rtc_set_time(struct device *dev, struct rtc_time *time) in jz4740_rtc_set_time() argument
174 ret = jz4740_rtc_reg_write(rtc, JZ_REG_RTC_SEC, rtc_tm_to_time64(time)); in jz4740_rtc_set_time()
194 rtc_time64_to_tm(secs, &alrm->time); in jz4740_rtc_read_alarm()
203 uint32_t secs = lower_32_bits(rtc_tm_to_time64(&alrm->time)); in jz4740_rtc_set_alarm()
281 of_property_read_u32(np, "ingenic,reset-pin-assert-time-ms", in jz4740_rtc_set_wakeup_params()
283 of_property_read_u32(np, "ingenic,min-wakeup-pin-assert-time-ms", in jz4740_rtc_set_wakeup_params()
287 * Set minimum wakeup pin assertion time: 100 ms. in jz4740_rtc_set_wakeup_params()
298 * Set reset pin low-level assertion time afte in jz4740_rtc_set_wakeup_params()
[all...]
/kernel/linux/linux-6.6/drivers/rtc/
H A Drtc-mxc_v2.c135 * This function reads the current RTC time into tm in Gregorian date.
137 * @param tm contains the RTC time value upon return
157 * This function sets the internal RTC time based on tm in Gregorian date.
159 * @param tm the time value to be set in the RTC
166 time64_t time = rtc_tm_to_time64(tm); in mxc_rtc_set_time() local
173 writel(time, pdata->ioaddr + SRTC_LPSCMR); in mxc_rtc_set_time()
197 rtc_time64_to_tm(readl(ioaddr + SRTC_LPSAR), &alrm->time); in mxc_rtc_read_alarm()
240 const time64_t time = rtc_tm_to_time64(&alrm->time); in mxc_rtc_set_alarm() local
247 writel((u32)time, pdat in mxc_rtc_set_alarm()
[all...]
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/sound/
H A Dasequencer.h138 struct snd_seq_real_time time; member
150 union snd_seq_timestamp time; member
170 union snd_seq_timestamp time; member
180 union snd_seq_timestamp time; member
260 union snd_seq_timestamp time; member
328 struct snd_seq_real_time time; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/sound/
H A Dasequencer.h14 *** Any manual change here will be lost the next time this script will
143 struct snd_seq_real_time time; member
154 union snd_seq_timestamp time; member
171 union snd_seq_timestamp time; member
181 union snd_seq_timestamp time; member
253 union snd_seq_timestamp time; member
317 struct snd_seq_real_time time; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/sound/
H A Dasequencer.h14 *** Any manual change here will be lost the next time this script will
143 struct snd_seq_real_time time; member
154 union snd_seq_timestamp time; member
171 union snd_seq_timestamp time; member
181 union snd_seq_timestamp time; member
253 union snd_seq_timestamp time; member
317 struct snd_seq_real_time time; member
/third_party/alsa-lib/include/
H A Dseqmid.h137 * \param relative relative time-stamp if non-zero
138 * \param ttick tick time-stamp to be delivered
149 (ev)->time.tick = (ttick),\
153 * \brief set real-time-scheduling mode on queue
156 * \param relative relative time-stamp if non-zero
157 * \param rtime time-stamp to be delivered
168 (ev)->time.time = *(rtime),\
277 * \brief set the real-time position of a queue
280 * \param rtime the new real-time pointe
[all...]
/third_party/node/deps/v8/tools/testrunner/
H A Dstandard_runner.py125 parser.add_option('--time', help='Print timing information after running',
224 if options.time and not options.json_test_results:
343 if options.time:
353 time = (datetime.datetime.min + duration).time()
354 return time.strftime('%M:%S:') + '%03i' % int(time.microsecond / 1000)
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-cygwin.cc14 #include <sys/time.h>
70 const char* LocalTimezone(double time) override;
77 const char* CygwinTimezoneCache::LocalTimezone(double time) { in LocalTimezone() argument
78 if (std::isnan(time)) return ""; in LocalTimezone()
79 time_t tv = static_cast<time_t>(std::floor(time/msPerSecond)); in LocalTimezone()
88 time_t utc = time(nullptr); in LocalTimeOffset()
93 // time - localtime includes any daylight savings offset, so subtract it. in LocalTimeOffset()
/third_party/musl/Benchmark/musl/
H A Dlibc_time.cpp20 #include "sys/time.h"
30 // Used to put the current thread to sleep for the specified time
58 // Used to set information about the time zone
129 time_t rawTime = time(nullptr); in Bm_function_Strftime()
139 time_t rawTime = time(nullptr); in Bm_function_Mktime()
148 time_t rawTime = time(nullptr); in Bm_function_Gmtime()
184 time_t t = time(nullptr); in Bm_function_Ctime_r()
324 time_t timestamp = time(nullptr); in Bm_function_Gmtime_r()
348 // Converts a string to a time based on a different time zon
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go24 "time"
66 start time.Time
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
131 return nil, time.Time{}, ""
139 tm := time.Now()
169 cc.method, id, elapsed/time.Millisecond)
229 sc.method, id, elapsed/time.Millisecond)
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
H A Dlog.go24 "time"
66 start time.Time
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
131 return nil, time.Time{}, ""
139 tm := time.Now()
169 cc.method, id, elapsed/time.Millisecond)
229 sc.method, id, elapsed/time.Millisecond)
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go24 "time"
66 start time.Time
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
131 return nil, time.Time{}, ""
139 tm := time.Now()
169 cc.method, id, elapsed/time.Millisecond)
229 sc.method, id, elapsed/time.Millisecond)
/third_party/python/Lib/logging/
H A Dhandlers.py26 import io, logging, socket, os, pickle, struct, time, re namespace
268 t = int(time.time())
273 Work out the rollover time based on the specified time.
281 # at the right time. After that, the regular interval will take care of
286 t = time.gmtime(currentTime)
288 t = time.localtime(currentTime)
303 # Rotate time is before the current time (fo
[all...]
/third_party/pulseaudio/src/pulse/
H A Dmainloop.c77 pa_usec_t time; member
336 e->time = t; in mainloop_time_new()
344 if (t < m->cached_next_time_event->time) in mainloop_time_new()
378 e->time = t; in mainloop_time_restart()
389 if (t < e->mainloop->cached_next_time_event->time) in mainloop_time_restart()
720 if (!n || t->time < n->time) { in find_next_time_event()
723 /* Shortcut for time == 0 */ in find_next_time_event()
724 if (n->time == 0) in find_next_time_event()
742 if (t->time < in calc_next_timeout()
[all...]
/kernel/linux/linux-6.6/drivers/phy/hisilicon/
H A Dphy-hi3670-pcie.c338 int time = PLL_CTRL_WAIT_TIME; in hi3670_pcie_pll_ctrl() local
348 if (!time) { in hi3670_pcie_pll_ctrl()
352 time--; in hi3670_pcie_pll_ctrl()
415 /* set phy_debounce in&out time */ in hi3670_pcie_oe_ctrl()
507 u32 time = PIPE_CLK_STABLE_TIME; in is_pipe_clk_stable() local
513 if (!time) { in is_pipe_clk_stable()
517 time--; in is_pipe_clk_stable()
527 u32 time = NOC_POWER_TIME; in hi3670_pcie_noc_power() local
539 time = NOC_POWER_TIME; in hi3670_pcie_noc_power()
543 if (!time) { in hi3670_pcie_noc_power()
[all...]
/kernel/liteos_m/testsuites/unittest/xts/ipc/msg_queue/
H A Dmq_test.c111 tts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
121 rts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
208 tts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
218 rts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
313 rts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */ in PthreadTimedCom()
321 tts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */ in PthreadTimedCom()
356 tts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
366 rts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */
394 rts.tv_sec = time(NULL) + 1; /* 1, common data for test, no special meaning */ in PthreadAllCom()
401 tts.tv_sec = time(NUL in PthreadAllCom()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dbasictz.cpp47 // Check the offsets at the start time in hasEquivalentTransitions()
69 UDate time = start; in hasEquivalentTransitions() local
72 UBool avail1 = getNextTransition(time, FALSE, tr1); in hasEquivalentTransitions()
73 UBool avail2 = tz.getNextTransition(time, FALSE, tr2); in hasEquivalentTransitions()
126 time = tr1.getTime(); in hasEquivalentTransitions()
166 // Get local wall time for the next transition time in getSimpleRulesNear()
175 // So we always use raw offset of the given time for the rule, in getSimpleRulesNear()
193 // Get local wall time for the next transition time in getSimpleRulesNear()
307 UDate time, t; getTimeZoneRulesAfter() local
[all...]
/kernel/linux/linux-5.10/arch/mips/ar7/
H A Dtime.c10 #include <linux/time.h>
14 #include <asm/time.h>
/kernel/linux/linux-6.6/arch/mips/ar7/
H A Dtime.c10 #include <linux/time.h>
14 #include <asm/time.h>
/kernel/liteos_m/testsuites/unittest/fuzz/src/sys/time/
H A Dgettimeofday_fuzz.c35 #include <sys/time.h>
36 #include <time.h>
/kernel/liteos_m/testsuites/unittest/fuzz/src/time/
H A Dtime_fuzz.c32 #include <time.h>
47 printf("Fuzz test in line [%d] time start.\n", __LINE__); in TimeFuzzTest()
56 (void)time(&tloc); in TimeFuzzTest()
64 printf("Fuzz test in line [%d] time ok\n", __LINE__); in TimeFuzzTest()
/third_party/node/test/fixtures/wpt/performance-timeline/
H A Dwebtiming-resolution.any.js19 const time = performance.getEntriesByName('timer')[0].startTime;
21 return time;
/third_party/musl/src/linux/
H A Dsettimeofday.c2 #include <sys/time.h>
3 #include <time.h>

Completed in 19 milliseconds

1...<<21222324252627282930>>...302