Home
last modified time | relevance | path

Searched refs:ust (Results 1 – 25 of 2467) sorted by relevance

12345678910>>...99

/dports/sysutils/helm/helm-3.5.2/vendor/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/
H A Dqueueset_test.go204 initialDelay := time.Duration(11*ust.j + 2*ust.i)
205 if ust.uc.split && ust.j >= ust.uc.nThreads/2 {
207 ust.nCalls = ust.nCalls / 2
229 …req, idle := ust.uss.qs.StartRequest(context.Background(), ust.uc.hash, "", ust.fsName, ust.uss.na…
230ust.uss.t.Logf("%s: %d, %d, %d got req=%p, idle=%v", ust.uss.clk.Now().Format(nsTimeFmt), ust.i, u…
233 atomic.AddInt32(&ust.uss.rejects[ust.i], 1)
243 ust.uss.t.Logf("%s: %d, %d, %d executing", execStart.Format(nsTimeFmt), ust.i, ust.j, k)
244 atomic.AddInt32(&ust.uss.executions[ust.i], 1)
246 ust.uss.clk.EventAfterDuration(ust.genCallK(k+1), ust.uc.execDuration+ust.uc.thinkDuration)
247 ClockWait(ust.uss.clk, ust.uss.counter, ust.uc.execDuration)
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/
H A Dqueueset_test.go205 initialDelay := time.Duration(11*ust.j + 2*ust.i)
206 if ust.uc.split && ust.j >= ust.uc.nThreads/2 {
208 ust.nCalls = ust.nCalls / 2
230 …, idle := ust.uss.qs.StartRequest(context.Background(), &fcrequest.Width{Seats: 1}, ust.uc.hash, "…
231ust.uss.t.Logf("%s: %d, %d, %d got req=%p, idle=%v", ust.uss.clk.Now().Format(nsTimeFmt), ust.i, u…
234 atomic.AddInt32(&ust.uss.rejects[ust.i], 1)
244 ust.uss.t.Logf("%s: %d, %d, %d executing", execStart.Format(nsTimeFmt), ust.i, ust.j, k)
245 atomic.AddInt32(&ust.uss.executions[ust.i], 1)
247 ust.uss.clk.EventAfterDuration(ust.genCallK(k+1), ust.uc.execDuration+ust.uc.thinkDuration)
248 ClockWait(ust.uss.clk, ust.uss.counter, ust.uc.execDuration)
[all …]
/dports/lang/cython-devel/cython-2b1e743/tests/run/
H A Dctypedef_char_types.pyx9 "//NameNode[@name = 'ust' and @type.is_string = True]",
19 cdef const_uchar* ust = <unsigned char*>b'XYZ' # needs cast to unsigned
27 assert typeof(ust) == "const_uchar *", typeof(ust)
28 my_ust = ust
43 cdef myuchar[4] ust
49 ust[i] = <unsigned char>ch
56 assert typeof(ust) == "myuchar [4]", typeof(ust)
57 obj = ust
/dports/lang/cython/Cython-0.29.24/tests/run/
H A Dctypedef_char_types.pyx9 "//NameNode[@name = 'ust' and @type.is_string = True]",
19 cdef const_uchar* ust = <unsigned char*>b'XYZ' # needs cast to unsigned
27 assert typeof(ust) == "const_uchar *", typeof(ust)
28 my_ust = ust
43 cdef myuchar[4] ust
49 ust[i] = <unsigned char>ch
56 assert typeof(ust) == "myuchar [4]", typeof(ust)
57 obj = ust
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
H A Dpresent_wnmd.c78 return (*screen_priv->wnmd_info->get_ust_msc)(window, ust, msc); in present_wnmd_get_ust_msc()
88 uint64_t ust = 0, crtc_msc = 0; in present_wnmd_re_execute() local
91 present_wnmd_execute(vblank, ust, crtc_msc); in present_wnmd_re_execute()
231 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
238 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
241 present_wnmd_flip_notify(vblank, ust, msc); in present_wnmd_event_notify()
253 present_execute_post(vblank, ust, msc); in present_wnmd_event_notify()
532 present_execute_post(vblank, ust, crtc_msc); in present_wnmd_execute()
574 uint64_t ust = 0; in present_wnmd_pixmap() local
588 ret = present_wnmd_get_ust_msc(screen, window, &ust, &crtc_msc); in present_wnmd_pixmap()
[all …]
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/x11-servers/xarcan/xarcan-0.6.0/present/
H A Dpresent_fake.c36 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
40 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
41 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
48 uint64_t ust, msc; in present_fake_notify() local
50 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
51 present_event_notify(event_id, ust, msc); in present_fake_notify()
89 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
91 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
H A Dpresent_wnmd.c74 return (*screen_priv->wnmd_info->get_ust_msc)(window, ust, msc); in present_wnmd_get_ust_msc()
84 uint64_t ust = 0, crtc_msc = 0; in present_wnmd_re_execute() local
87 present_wnmd_execute(vblank, ust, crtc_msc); in present_wnmd_re_execute()
210 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
217 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
225 present_execute_post(vblank, ust, msc); in present_wnmd_event_notify()
241 present_wnmd_flip_notify_vblank(vblank, ust, msc); in present_wnmd_flip_notify()
514 present_execute_post(vblank, ust, crtc_msc); in present_wnmd_execute()
559 uint64_t ust = 0; in present_wnmd_pixmap() local
573 ret = present_wnmd_get_ust_msc(screen, window, &ust, &crtc_msc); in present_wnmd_pixmap()
[all …]
/dports/x11-servers/xwayland/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
H A Dpresent_wnmd.c78 return (*screen_priv->wnmd_info->get_ust_msc)(window, ust, msc); in present_wnmd_get_ust_msc()
88 uint64_t ust = 0, crtc_msc = 0; in present_wnmd_re_execute() local
91 present_wnmd_execute(vblank, ust, crtc_msc); in present_wnmd_re_execute()
231 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
238 present_wnmd_execute(vblank, ust, msc); in present_wnmd_event_notify()
241 present_wnmd_flip_notify(vblank, ust, msc); in present_wnmd_event_notify()
253 present_execute_post(vblank, ust, msc); in present_wnmd_event_notify()
532 present_execute_post(vblank, ust, crtc_msc); in present_wnmd_execute()
574 uint64_t ust = 0; in present_wnmd_pixmap() local
588 ret = present_wnmd_get_ust_msc(screen, window, &ust, &crtc_msc); in present_wnmd_pixmap()
[all …]
/dports/x11-servers/xorg-server/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/x11-servers/xephyr/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/present/
H A Dpresent_fake.c40 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
44 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
45 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
52 uint64_t ust, msc; in present_fake_notify() local
54 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
55 present_event_notify(event_id, ust, msc); in present_fake_notify()
93 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
95 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/x11-servers/xwayland-devel/xorg-xserver-xorg-server-21.0.99.1-177-g9e5a37961/present/
H A Dpresent_fake.c36 present_fake_get_ust_msc(ScreenPtr screen, uint64_t *ust, uint64_t *msc) in present_fake_get_ust_msc() argument
40 *ust = GetTimeInMicros(); in present_fake_get_ust_msc()
41 *msc = (*ust + screen_priv->fake_interval / 2) / screen_priv->fake_interval; in present_fake_get_ust_msc()
48 uint64_t ust, msc; in present_fake_notify() local
50 present_fake_get_ust_msc(screen, &ust, &msc); in present_fake_notify()
51 present_event_notify(event_id, ust, msc); in present_fake_notify()
89 uint64_t ust = msc * screen_priv->fake_interval; in present_fake_queue_vblank() local
91 INT32 delay = ((int64_t) (ust - now)) / 1000; in present_fake_queue_vblank()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/glx_oml_sync_control/
H A Dcommon.h1 #define glXGetSyncValuesOML(dpy, drawable, ust, msc, sbc) __piglit_glXGetSyncValuesOML(dpy, drawabl… argument
4 …arget_msc, divisor, remainder, ust, msc, sbc) __piglit_glXWaitForMscOML(dpy, drawable, target_msc,… argument
5 …WaitForSbcOML(dpy, drawable, target_sbc, ust, msc, sbc) __piglit_glXWaitForSbcOML(dpy, drawable, t… argument
/dports/emulators/qemu/qemu-6.2.0/trace/
H A Dmeson.build23 if 'ust' in get_option('trace_backends')
24 trace_ust_h = custom_target(fmt.format('trace-ust', 'h'),
25 output: fmt.format('trace-ust', 'h'),
27 … command: [ tracetool, group, '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
78 if 'ust' in get_option('trace_backends')
79 trace_ust_all_h = custom_target('trace-ust-all.h',
80 output: 'trace-ust-all.h',
82 … command: [ tracetool, '--group=all', '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
84 trace_ust_all_c = custom_target('trace-ust-all.c',
85 output: 'trace-ust-all.c',
[all …]
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/egl/spec/egl_chromium_sync_control/
H A Degl_chromium_sync_control.c47 EGLBoolean (*peglGetSyncValuesCHROMIUM)(EGLDisplay display, EGLSurface surface, EGLuint64KHR *ust, …
97 get_ust_values(struct egl_state *state, EGLuint64KHR *ust, in get_ust_values() argument
108 if (!peglGetSyncValuesCHROMIUM(state->egl_dpy, state->surf, ust, &msc, &sbc)) { in get_ust_values()
136 EGLuint64KHR ust = canary; in test_eglGetSyncValuesCHROMIUM_ust_test() local
140 if (get_ust_values(state, &ust, &ust2, &ust3) != PIGLIT_PASS) in test_eglGetSyncValuesCHROMIUM_ust_test()
143 if (ust > ust2 || ust > ust3 || ust2 > ust3) { in test_eglGetSyncValuesCHROMIUM_ust_test()
146 ust, ust2, ust3); in test_eglGetSyncValuesCHROMIUM_ust_test()
179 EGLuint64KHR ust = canary; in test_eglGetSyncValuesCHROMIUM_msc_and_sbc_test() local
193 &ust, &msc, &sbc)) { in test_eglGetSyncValuesCHROMIUM_msc_and_sbc_test()
/dports/finance/aqbanking/aqbanking-6.2.10/src/libs/plugins/backends/aqebics/client/
H A Dp_tools.c24 EBC_USER_STATUS ust; in EBC_Provider_Send_INI() local
35 ust=EBC_User_GetStatus(u); in EBC_Provider_Send_INI()
101 EBC_USER_STATUS ust; in EBC_Provider_Send_HIA() local
112 ust=EBC_User_GetStatus(u); in EBC_Provider_Send_HIA()
178 EBC_USER_STATUS ust; in EBC_Provider_Send_HPB() local
249 EBC_USER_STATUS ust; in EBC_Provider_Send_HPD() local
319 EBC_USER_STATUS ust; in EBC_Provider_Send_HKD() local
389 EBC_USER_STATUS ust; in EBC_Provider_Send_HTD() local
526 EBC_USER_STATUS ust; in EBC_Provider_DownloadWithSession() local
588 EBC_USER_STATUS ust; in EBC_Provider_Download() local
[all …]
/dports/emulators/qemu5/qemu-5.2.0/trace/
H A Dmeson.build23 trace_ust_h = custom_target(fmt.format('trace-ust', 'h'),
24 output: fmt.format('trace-ust', 'h'),
26 command: [ tracetool, group, '--format=ust-events-h', '@INPUT@' ],
78 trace_ust_all_h = custom_target('trace-ust-all.h',
79 output: 'trace-ust-all.h',
81 … command: [ tracetool, '--group=all', '--format=ust-events-h', '@INPUT@' ],
83 trace_ust_all_c = custom_target('trace-ust-all.c',
84 output: 'trace-ust-all.c',
86 … command: [ tracetool, '--group=all', '--format=ust-events-c', '@INPUT@' ],
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/trace/
H A Dmeson.build25 trace_ust_h = custom_target(fmt.format('trace-ust', 'h'),
26 output: fmt.format('trace-ust', 'h'),
28 … command: [ tracetool, group, '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
80 trace_ust_all_h = custom_target('trace-ust-all.h',
81 output: 'trace-ust-all.h',
83 … command: [ tracetool, '--group=all', '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
85 trace_ust_all_c = custom_target('trace-ust-all.c',
86 output: 'trace-ust-all.c',
88 … command: [ tracetool, '--group=all', '--format=ust-events-c', '@INPUT@', '@OUTPUT@' ],
/dports/emulators/qemu60/qemu-6.0.0/trace/
H A Dmeson.build24 trace_ust_h = custom_target(fmt.format('trace-ust', 'h'),
25 output: fmt.format('trace-ust', 'h'),
27 … command: [ tracetool, group, '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
79 trace_ust_all_h = custom_target('trace-ust-all.h',
80 output: 'trace-ust-all.h',
82 … command: [ tracetool, '--group=all', '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
84 trace_ust_all_c = custom_target('trace-ust-all.c',
85 output: 'trace-ust-all.c',
87 … command: [ tracetool, '--group=all', '--format=ust-events-c', '@INPUT@', '@OUTPUT@' ],
/dports/net-im/cutegram/Cutegram-2.7.1-stable/libs/UnitySystemTray/
H A Dlibmain.cpp10 UnitySystemTray *ust = static_cast<UnitySystemTray*>(pntr); in addMenu() local
11 ust->addMenu( text, obj, member ); in addMenu()
16 UnitySystemTray *ust = static_cast<UnitySystemTray*>(pntr); in setIcon() local
17 ust->setIcon( icon ); in setIcon()
/dports/graphics/glx-utils/demos-5435fc7fbd332e171da9a71e33a9b190e9462cf0/src/xdemos/
H A Dmsctest.c42 void (*get_sync_values)(Display *dpy, Window winGL, int64_t *ust, int64_t *msc, int64_t *sbc);
43 …ow winGL, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int6…
82 int64_t ust, msc, sbc; in main() local
171 get_sync_values(disp, winGL, &ust, &msc, &sbc); in main()
172 fprintf(stderr, "ust: %llu, msc: %llu, sbc: %llu\n", ust, msc, in main()
182 wait_sync(disp, winGL, 0, 60, 0, &ust, &msc, &sbc); in main()
185 ust, msc, sbc); in main()

12345678910>>...99