Searched refs:delay (Results 1 - 25 of 238) sorted by relevance

12345678910

/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_delay.c33 /* The soft delay for approximating the cost of (ss). On a6xx, it takes the
34 * number of delay slots to get a SFU result back (ie. using nop's instead of
47 * Helpers to figure out the necessary delay slots between instructions. Used
55 /* calculate required # of delay slots between the instruction that
86 /* As far as we know, shader outputs don't need any delay. */
145 unsigned delay = 0; local in function:delay_calc_srcn_prera
158 delay = MAX2(delay, d);
161 delay = ir3_delayslots(assigner, consumer, srcn, false);
162 delay
175 unsigned delay = 0; local in function:ir3_delay_calc_prera
235 unsigned delay = ir3_delayslots(assigner, consumer, consumer_n, soft); local in function:delay_calc_srcn_postra
310 unsigned delay = 0; local in function:delay_calc_postra
[all...]
H A Dir3_postsched.c82 unsigned delay; member in struct:ir3_postsched_node
264 for (unsigned delay = 0; delay < 4; delay++) { local in function:choose_instr
272 if (d > delay)
280 di(chosen->instr, "csp: chose (soft ready, delay=%u)", delay);
285 /* Next try to find a ready leader w/ soft delay (ie. including extra
286 * delay for things like tex fetch which can be synchronized w/ sync
399 node->delay
680 unsigned delay = local in function:sched_block
[all...]
H A Dir3_legalize.c807 unsigned delay = ir3_delay_calc_exact(block, instr, so->mergedregs); local in function:nop_sched
814 if ((delay > 0) && (ir->compiler->gen >= 6) && last &&
818 unsigned transfer = MIN2(delay, 3 - last->nop);
820 delay -= transfer;
823 if ((delay > 0) && last && (last->opc == OPC_NOP)) {
825 unsigned transfer = MIN2(delay, 5 - last->repeat);
827 delay -= transfer;
830 if (delay > 0) {
831 debug_assert(delay <= 6);
832 ir3_NOP(block)->repeat = delay
[all...]
H A Dir3_sched.c62 * Where possible, it tries to pick instructions that avoid nop delay
125 unsigned delay; member in struct:ir3_sched_node
654 * delay.
729 /* Pick the max delay of the remaining ready set. */
1001 n->delay = MAX2(n->delay, d);
1095 n->max_delay = MAX2(n->max_delay, max_delay + n->delay);
1175 unsigned delay = ir3_delay_calc_prera(ctx->block, instr); local in function:sched_block
1176 d("delay=%u", delay);
[all...]
/xsrc/external/mit/libXext/dist/include/X11/extensions/
H A Dxtestext1.h89 int XTestPressKey(Display *display, int device_id, unsigned long delay, unsigned int keycode, unsigned int key_action);
90 int XTestPressButton(Display * display, int device_id, unsigned long delay, unsigned int button_number, unsigned int button_action);
91 int XTestMovePointer(Display *display, int device_id, unsigned long delay[], int x[], int y[], unsigned int count);
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_sched.c272 /* calculate delay for specified src: */
279 unsigned delay = 0; local in function:delay_calc_srcn
286 delay = MAX2(delay, d);
291 delay = 4;
293 delay = ir3_delayslots(assigner, consumer, srcn);
296 delay = ir3_delayslots(assigner, consumer, srcn);
298 delay -= distance(block, assigner, delay, pred);
301 return delay;
309 unsigned delay = 0; local in function:delay_calc
503 unsigned delay; local in function:find_eligible_instr
654 unsigned delay = delay_calc(ctx->block, instr, false, false); local in function:sched_block
706 unsigned delay = 6; local in function:sched_block
765 unsigned delay = 0; local in function:sched_intra_block
[all...]
/xsrc/external/mit/xf86-video-xgi/dist/src/
H A Dvb_i2c.c38 /* #include <linux/delay.h> */ /* udelay */
832 ULONG i, delay, delay2; local in function:Ack
835 delay = pHWDE->I2CDelay / 10 / 2;
839 I2C_DelayUS(delay);
842 I2C_DelayUS(delay);
845 delay2 = delay * 2;
858 I2C_DelayUS(delay); /* Jong@08052008 */
860 I2C_DelayUS(delay);
868 I2C_DelayUS(delay);
871 I2C_DelayUS(delay); /* Jon
912 ULONG i, delay, delay2; local in function:NoAck
955 ULONG i, delay, delay2; local in function:Start
1014 ULONG i, delay, delay2; local in function:Stop
1058 ULONG i, j, delay, delay2; local in function:WriteUCHARI2C
1105 ULONG ulReadData, data, i, j, delay, delay2; local in function:ReadUCHARI2C
[all...]
/xsrc/external/mit/libXext/dist/src/
H A DXTestExt1.c119 static int XTestKeyOrButton(Display *display, int device_id, long unsigned int delay, unsigned int code, unsigned int action);
637 unsigned long delay,
653 delay,
669 unsigned long delay,
685 delay,
701 unsigned long delay,
724 * Check the delay. If it is larger than will fit in the
725 * key input action, send a delay input action.
727 if(XTestCheckDelay(display, &delay) == -1)
745 * set the delay tim
634 XTestPressKey(Display * display,int device_id,unsigned long delay,unsigned int keycode,unsigned int key_action) argument
666 XTestPressButton(Display * display,int device_id,unsigned long delay,unsigned int button_number,unsigned int button_action) argument
698 XTestKeyOrButton(Display * display,int device_id,unsigned long delay,unsigned int code,unsigned int action) argument
879 XTestMovePointer(Display * display,int device_id,unsigned long delay[],int x[],int y[],unsigned int count) argument
[all...]
/xsrc/external/mit/libXtst/dist/src/
H A DXTest.c163 Bool is_press, unsigned long delay)
176 req->time = delay;
184 Bool is_press, unsigned long delay)
197 req->time = delay;
204 XTestFakeMotionEvent(Display *dpy, int screen, int x, int y, unsigned long delay) argument
223 req->time = delay;
230 XTestFakeRelativeMotionEvent(Display *dpy, int dx, int dy, unsigned long delay) argument
246 req->time = delay;
301 int *axes, int n_axes, unsigned long delay)
315 req->time = delay;
162 XTestFakeKeyEvent(Display * dpy,unsigned int keycode,Bool is_press,unsigned long delay) argument
183 XTestFakeButtonEvent(Display * dpy,unsigned int button,Bool is_press,unsigned long delay) argument
299 XTestFakeDeviceKeyEvent(Display * dpy,XDevice * dev,unsigned int keycode,Bool is_press,int * axes,int n_axes,unsigned long delay) argument
325 XTestFakeDeviceButtonEvent(Display * dpy,XDevice * dev,unsigned int button,Bool is_press,int * axes,int n_axes,unsigned long delay) argument
351 XTestFakeProximityEvent(Display * dpy,XDevice * dev,Bool in_prox,int * axes,int n_axes,unsigned long delay) argument
375 XTestFakeDeviceMotionEvent(Display * dpy,XDevice * dev,Bool is_relative,int first_axis,int * axes,int n_axes,unsigned long delay) argument
[all...]
/xsrc/external/mit/xorg-server/dist/present/
H A Dpresent_fake.c91 INT32 delay = ((int64_t) (ust - now)) / 1000; local in function:present_fake_queue_vblank
94 if (delay <= 0) {
105 fake_vblank->timer = TimerSet(NULL, 0, delay, present_fake_do_timer, fake_vblank);
/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dsna_present.c183 int64_t delay, subframe; local in function:msc_to_delay
187 delay = target - swap->msc;
188 assert(delay >= 0);
189 if (delay > 1) { /* try to use the hw vblank for the last frame */
190 delay--;
197 delay *= mode->VTotal * mode->HTotal / mode->Clock;
198 if (subframe < delay)
199 delay -= subframe;
201 delay = 0;
204 (int)(target - swap->msc), (long long)delay));
238 uint32_t delay; local in function:sna_fake_vblank_handler
291 uint32_t delay; local in function:sna_fake_vblank
[all...]
/xsrc/external/mit/xorg-server.old/dist/Xext/
H A Dsleepuntil.c172 unsigned long delay; local in function:SertafiedBlockHandler
190 * set delay to 0 to prevent blocking in WaitForSomething().
197 delay = pReq->revive.milliseconds - now.milliseconds;
198 AdjustWaitForDelay (wt, delay);
/xsrc/external/mit/xorg-server/dist/Xext/
H A Dsleepuntil.c156 unsigned long delay; local in function:SertafiedBlockHandler
173 * set delay to 0 to prevent blocking in WaitForSomething().
180 delay = pReq->revive.milliseconds - now.milliseconds;
181 AdjustWaitForDelay(wt, delay);
/xsrc/external/mit/xrefresh/dist/
H A Dxrefresh.c87 " -delay ms time to hold refresh\n"
90 fprintf(out, "\nThe default is: %s -none -delay 0\n\n", ProgramName);
197 unsigned long delay = 0; local in function:main
236 } else if (isabbreviation("-delay", arg, 2)) {
238 delay = ((unsigned long)atol(argv[i])) * 1000000L;
397 tim.tv_sec = delay / 1000000000L;
398 tim.tv_nsec = delay % 1000000000L;
/xsrc/external/mit/xorgproto/dist/include/X11/extensions/
H A Dxf86misc.h104 int delay; member in struct:__anon411c05250208
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
H A Dvc4_qir_schedule.c52 uint32_t delay; member in struct:schedule_node
517 if (n->delay > chosen->delay) {
520 } else if (n->delay < chosen->delay) {
575 /* There are two QPU delay slots before we can
590 /** Recursive computation of the delay member of a node. */
602 n->delay = 1000;
604 n->delay = 1;
610 n->delay
[all...]
H A Dvc4_qpu_schedule.c59 uint32_t delay; member in struct:schedule_node
558 * will handle pairing it along with filling the delay slots.
576 * last one, if the remaining instructions fit in the delay
616 * other instructions, allowing us to delay the
645 if (n->delay > chosen->delay) {
648 } else if (n->delay < chosen->delay) {
768 /** Recursive computation of the delay member of a node. */
774 n->delay
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
H A Dvc4_qir_schedule.c52 uint32_t delay; member in struct:schedule_node
517 if (n->delay > chosen->delay) {
520 } else if (n->delay < chosen->delay) {
575 /* There are two QPU delay slots before we can
590 /** Recursive computation of the delay member of a node. */
602 n->delay = 1000;
604 n->delay = 1;
610 n->delay
[all...]
H A Dvc4_qpu_schedule.c59 uint32_t delay; member in struct:schedule_node
558 * will handle pairing it along with filling the delay slots.
576 * last one, if the remaining instructions fit in the delay
616 * other instructions, allowing us to delay the
645 if (n->delay > chosen->delay) {
648 } else if (n->delay < chosen->delay) {
768 /** Recursive computation of the delay member of a node. */
774 n->delay
[all...]
/xsrc/external/mit/xset/dist/
H A Dxset.c145 static void set_repeatrate(Display *dpy, int delay, int rate);
148 static void xkbset_repeatrate(Display *dpy, int delay, int rate);
542 * delay the actual DPMS mode setting briefly.
667 int delay = 0, rate = 0; local in function:main
680 delay = XKBDDELAY_DEFAULT;
690 delay = KBDDELAY_DEFAULT;
703 delay = atoi(arg);
716 xkbset_repeatrate(dpy, delay, 1000 / rate);
724 set_repeatrate(dpy, delay, rate);
1104 set_repeatrate(Display *dpy, int delay, in argument
1118 xkbset_repeatrate(Display * dpy,int delay,int interval) argument
[all...]
/xsrc/external/mit/xf86-input-synaptics/dist/src/
H A Dsynaptics.c1428 int delay; local in function:timerFunc
1436 delay = HandleState(pInfo, hw, hw->millis, TRUE);
1439 priv->timer = TimerSet(priv->timer, 0, delay, timerFunc, pInfo);
1472 int delay = 0; local in function:ReadInput
1491 delay = HandleState(pInfo, hw, hw->millis, FALSE);
1497 priv->timer = TimerSet(priv->timer, 0, delay, timerFunc, pInfo);
1503 CARD32 now, int *delay)
1534 *delay = MIN(*delay, timeleft);
1559 *delay
1502 HandleMidButtonEmulation(SynapticsPrivate * priv,struct SynapticsHwState * hw,CARD32 now,int * delay) argument
1779 int delay = 1000000000; local in function:HandleTapProcessing
2054 int delay = 1000000000; local in function:ComputeDeltas
2197 int delay = 1000000000; local in function:HandleScrolling
2554 update_hw_button_state(const InputInfoPtr pInfo,struct SynapticsHwState * hw,struct SynapticsHwState * old,CARD32 now,int * delay) argument
2789 int delay = 1000000000; local in function:HandleState
[all...]
/xsrc/external/mit/libXxf86misc/dist/src/
H A DXF86Misc.c183 kbdinfo->delay = rep.delay;
242 req->delay = kbdinfo->delay;
/xsrc/external/mit/xf86-video-nsc/dist/src/gfx/
H A Dtv_1200.c137 int sc1200_set_tv_YC_delay(int delay);
600 * This routine configures the TV out Y/C delay.
605 sc1200_set_tv_YC_delay(int delay) argument
608 gfx_set_tv_YC_delay(int delay)
619 switch (delay) {
/xsrc/external/mit/xorg-server.old/dist/render/
H A Danimcur.c52 CARD32 delay; /* in ms */ member in struct:_AnimCurElt
184 dev->spriteInfo->anim.time = now + ac->elts[elt].delay;
223 pDev->spriteInfo->anim.time = GetTimeInMillis () + ac->elts[0].delay;
412 ac->elts[i].delay = deltas[i];
/xsrc/external/mit/xorg-server/dist/render/
H A Danimcur.c52 CARD32 delay; /* in ms */ member in struct:_AnimCurElt
152 return ac->elts[elt].delay;
188 ac->timer = TimerSet(ac->timer, 0, ac->elts[0].delay,
361 ac->elts[i].delay = deltas[i];

Completed in 33 milliseconds

12345678910