Home
last modified time | relevance | path

Searched defs:Timer (Results 1 – 25 of 3785) sorted by relevance

12345678910>>...152

/dports/math/clfft/clFFT-2.12.2/src/client/
H A Dclient.h28 struct Timer struct
33 Timer() { QueryPerformanceFrequency( &freq ); } in Timer() function
49 struct Timer struct
55 Timer() { host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &clock); } in Timer() argument
56 ~Timer() { mach_port_deallocate(mach_task_self(), clock); } in ~Timer() argument
72 struct Timer argument
77 Timer() { } in Timer() argument
79 void Start() { clock_gettime(CLOCK_MONOTONIC, &start); } in Start()
80 double Sample() in Sample()
/dports/math/clfft/clFFT-2.12.2/src/callback-client/
H A Dclient.h92 struct Timer struct
97 Timer() { QueryPerformanceFrequency( &freq ); } in Timer() argument
113 struct Timer argument
119 Timer() { host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &clock); } in Timer() argument
120 ~Timer() { mach_port_deallocate(mach_task_self(), clock); } in ~Timer() argument
136 struct Timer struct
141 Timer() { } in Timer() argument
143 void Start() { clock_gettime(CLOCK_MONOTONIC, &start); } in Start()
144 double Sample() in Sample()
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/misc/
H A Dfemtimer.hh33 struct Timer< false > struct
35 typedef enum { max, sum } operation;
45 static void reset() {} in reset()
59 struct Timer< true > struct
61 typedef enum { max, sum } operation;
64 struct TimerInfo
81 double pop_time() in pop_time()
128 void reset_timer () in reset_timer()
252 Dune::Timer timer_;
256 int stepCount_;
[all …]
/dports/www/nift/nsm-2.4.11/
H A DTimer.h13 struct Timer struct
17 Timer() in Timer() argument
35 #else //Mac/Linux Timer argument
36 struct Timer struct
41 Timer() in Timer() argument
47 void start() in start()
54 double getTime() in getTime()
/dports/audio/carla/Carla-2.4.1/source/modules/hylia/link/ableton/test/serial_io/
H A DTimer.hpp31 struct Timer struct
36 Timer(const SchedulerTree::TimerId timerId, in Timer() argument
45 ~Timer() in ~Timer()
55 Timer(Timer&& rhs) in Timer() function
83 void cancel() in cancel()
90 void async_wait(Handler handler) in async_wait()
96 TimePoint now() const in now()
101 const SchedulerTree::TimerId mId;
102 const TimePoint& mNow;
103 TimePoint mExpiration;
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/link/include/ableton/test/serial_io/
H A DTimer.hpp31 struct Timer struct
36 Timer(const SchedulerTree::TimerId timerId, in Timer() function
45 ~Timer() in ~Timer()
55 Timer(Timer&& rhs) in Timer() argument
83 void cancel() in cancel()
90 void async_wait(Handler handler) in async_wait()
96 TimePoint now() const in now()
101 const SchedulerTree::TimerId mId;
102 const TimePoint& mNow;
103 TimePoint mExpiration;
[all …]
/dports/graphics/partio/partio-1.14.6/src/tests/
H A DTimer.h44 struct Timer struct
50 Timer(const char* name) in Timer() function
68 ~Timer() in ~Timer() argument
80 struct Timer struct
88 Timer(const char* name) in Timer() argument
106 ~Timer() in ~Timer() argument
/dports/audio/carla/Carla-2.4.1/source/modules/hylia/link/ableton/util/test/
H A DTimer.hpp32 struct Timer struct
34 using ErrorCode = int;
35 using TimePoint = std::chrono::system_clock::time_point;
39 Timer() in Timer() function
57 ErrorCode cancel() in cancel()
68 void async_wait(Handler handler) in async_wait()
73 std::chrono::system_clock::time_point now() const in now()
79 void advance(std::chrono::duration<T, Rep> duration) in advance()
89 std::function<void(ErrorCode)> mHandler;
90 std::chrono::system_clock::time_point mFireAt;
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/link/include/ableton/util/test/
H A DTimer.hpp32 struct Timer struct
34 using ErrorCode = int;
35 using TimePoint = std::chrono::system_clock::time_point;
39 Timer() in Timer() function
57 ErrorCode cancel() in cancel()
68 void async_wait(Handler handler) in async_wait()
73 std::chrono::system_clock::time_point now() const in now()
79 void advance(std::chrono::duration<T, Rep> duration) in advance()
89 std::function<void(ErrorCode)> mHandler;
90 std::chrono::system_clock::time_point mFireAt;
[all …]
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/atlassian/gostatsd/
H A Dtimers.go6 type Timer struct { struct
7 Count int // The number of timers in the series
8 PerSecond float64 // The calculated per second rate
9 Mean float64 // The mean time of the series
10 Median float64 // The median time of the series
11 Min float64 // The minimum time of the series
12 Max float64 // The maximum time of the series
14 Sum float64 // The sum for the series
18 Timestamp Nanotime // Last time value was updated
20 Tags Tags // The tags for the timer
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/influxdata/influxdb/pkg/metrics/
H A Dtimer.go9 type Timer struct { struct
10 val int64
11 desc *desc
15 func (t *Timer) Name() string { return t.desc.Name }
18 func (t *Timer) Value() time.Duration { return time.Duration(atomic.LoadInt64(&t.val)) }
21 func (t *Timer) Update(d time.Duration) { atomic.StoreInt64(&t.val, int64(d)) }
24 func (t *Timer) UpdateSince(since time.Time) { t.Update(time.Since(since)) }
27 func (t *Timer) String() string { return t.desc.Name + ": " + time.Duration(t.val).String() }
30 func (t *Timer) Time(f func()) {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/influxdata/influxdb/pkg/metrics/
H A Dtimer.go9 type Timer struct { struct
10 val int64
11 desc *desc
15 func (t *Timer) Name() string { return t.desc.Name }
18 func (t *Timer) Value() time.Duration { return time.Duration(atomic.LoadInt64(&t.val)) }
21 func (t *Timer) Update(d time.Duration) { atomic.StoreInt64(&t.val, int64(d)) }
24 func (t *Timer) UpdateSince(since time.Time) { t.Update(time.Since(since)) }
27 func (t *Timer) String() string { return t.desc.Name + ": " + time.Duration(t.val).String() }
30 func (t *Timer) Time(f func()) {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/pkg/metrics/
H A Dtimer.go9 type Timer struct { struct
10 val int64
11 desc *desc
15 func (t *Timer) Name() string { return t.desc.Name }
18 func (t *Timer) Value() time.Duration { return time.Duration(atomic.LoadInt64(&t.val)) }
21 func (t *Timer) Update(d time.Duration) { atomic.StoreInt64(&t.val, int64(d)) }
24 func (t *Timer) UpdateSince(since time.Time) { t.Update(time.Since(since)) }
27 func (t *Timer) String() string { return t.desc.Name + ": " + time.Duration(t.val).String() }
30 func (t *Timer) Time(f func()) {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/influxdata/influxdb/pkg/metrics/
H A Dtimer.go9 type Timer struct { struct
10 val int64
11 desc *desc
15 func (t *Timer) Name() string { return t.desc.Name }
18 func (t *Timer) Value() time.Duration { return time.Duration(atomic.LoadInt64(&t.val)) }
21 func (t *Timer) Update(d time.Duration) { atomic.StoreInt64(&t.val, int64(d)) }
24 func (t *Timer) UpdateSince(since time.Time) { t.Update(time.Since(since)) }
27 func (t *Timer) String() string { return t.desc.Name + ": " + time.Duration(t.val).String() }
30 func (t *Timer) Time(f func()) {
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/gme/game-music-emu-0.6pre/gme/
H A Dadlib.h35 struct Timer { struct
40 Timer() { in Timer() argument
48 void Update( double time ) { in Update()
58 void Reset(const double& time ) { in Reset()
84 Timer timer[2]; argument
/dports/multimedia/musikcube/musikcube-0.96.7/src/plugins/gmedecoder/gme/
H A Dadlib.h35 struct Timer { struct
40 Timer() { in Timer() argument
48 void Update( double time ) { in Update()
58 void Reset(const double& time ) { in Reset()
84 Timer timer[2]; argument
/dports/sysutils/sensu-go/sensu-go-5.11.1/vendor/github.com/atlassian/gostatsd/pkg/statser/
H A Dtimer.go10 type Timer struct { struct
11 statser Statser
12 name string
13 tags gostatsd.Tags
14 startTime time.Time
15 endTime time.Time
28 func (t *Timer) Stop() {
33 func (t *Timer) Send() {
38 func (t *Timer) SendGauge() {
42 func (t *Timer) duration() time.Duration {
/dports/www/devd/devd-0.9/timer/
H A Dtimer.go13 type Timer struct { struct
16 tsRequestHeaders int64
18 tsResponseHeaders int64
20 tsResponseDone int64
23 func (t Timer) String() string {
36 func (t *Timer) RequestHeaders() {
41 func (t *Timer) ResponseHeaders() {
46 func (t *Timer) ResponseDone() {
51 func (t *Timer) NewContext(ctx context.Context) context.Context {
/dports/misc/py-xgboost/xgboost-1.5.1/src/common/
H A Dtimer.h16 struct Timer { struct
24 Timer() { Reset(); } in Timer() argument
25 void Reset() { in Reset()
50 Timer timer; argument
/dports/misc/xgboost/xgboost-1.5.1/src/common/
H A Dtimer.h16 struct Timer { struct
24 Timer() { Reset(); } in Timer() argument
25 void Reset() { in Reset()
50 Timer timer; argument
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/lib/
H A Dtimer_thread.h32 struct Timer { struct
36 void (*user_callback)(Timer* t) = nullptr; argument
37 void (*user_destructor)(Timer* t) = nullptr; argument
46 Timer* NewTimer(void); argument
/dports/sysutils/bareos19-traymonitor/bareos-Release-19.2.11/core/src/lib/
H A Dtimer_thread.h32 struct Timer { struct
36 void (*user_callback)(Timer* t) = nullptr; argument
37 void (*user_destructor)(Timer* t) = nullptr; argument
46 Timer* NewTimer(void); argument
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/core/src/lib/
H A Dtimer_thread.h32 struct Timer { struct
36 void (*user_callback)(Timer* t) = nullptr; argument
37 void (*user_destructor)(Timer* t) = nullptr; argument
46 Timer* NewTimer(void); argument
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/lib/
H A Dtimer_thread.h32 struct Timer { struct
36 void (*user_callback)(Timer* t) = nullptr; argument
37 void (*user_destructor)(Timer* t) = nullptr; argument
46 Timer* NewTimer(void); argument
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/lib/
H A Dtimer_thread.h32 struct Timer { struct
36 void (*user_callback)(Timer* t) = nullptr; argument
37 void (*user_destructor)(Timer* t) = nullptr; argument
46 Timer* NewTimer(void); argument

12345678910>>...152