Home
last modified time | relevance | path

Searched refs:push (Results 1 – 25 of 141) sorted by relevance

123456

/linux-2.6.39/arch/m32r/include/asm/
Dassembler.h84 push r0 ; orig_r0
85 push sp ; spi (r15)
86 push lr ; r14
87 push r13
89 push r13
91 push r13
93 push r13
95 push r13
97 push r13
100 push r13
[all …]
/linux-2.6.39/arch/x86/xen/
Dxen-asm.S114 push %eax
115 push %ecx
116 push %edx
122 push %rax
123 push %rcx
124 push %rdx
125 push %rsi
126 push %rdi
127 push %r8
128 push %r9
[all …]
Dxen-asm_32.S27 push %eax
28 push %ecx
29 push %edx
82 push %eax
/linux-2.6.39/arch/arm/lib/
Dmemmove.S129 .macro backward_copy_shift push pull
150 mov lr, r3, push #\push
154 mov ip, ip, push #\push
156 mov r9, r9, push #\push
158 mov r8, r8, push #\push
160 mov r7, r7, push #\push
162 mov r6, r6, push #\push
164 mov r5, r5, push #\push
166 mov r4, r4, push #\push
178 15: mov lr, r3, push #\push
[all …]
Dcopy_template.S178 .macro forward_copy_shift pull push argument
203 orr r3, r3, r4, push #\push
205 orr r4, r4, r5, push #\push
207 orr r5, r5, r6, push #\push
209 orr r6, r6, r7, push #\push
211 orr r7, r7, r8, push #\push
213 orr r8, r8, r9, push #\push
215 orr r9, r9, ip, push #\push
217 orr ip, ip, lr, push #\push
231 orr r3, r3, lr, push #\push
[all …]
Duaccess.S122 orr r3, r3, r7, push #24
137 orr r3, r3, r4, push #24
139 orr r4, r4, r5, push #24
141 orr r5, r5, r6, push #24
143 orr r6, r6, r7, push #24
150 orrne r3, r3, r4, push #24
152 orrne r4, r4, r7, push #24
157 orrne r3, r3, r7, push #24
177 orr r3, r3, r7, push #16
192 orr r3, r3, r4, push #16
[all …]
Dcsumpartialcopygeneric.S144 adcs sum, sum, r4, push #16
178 orr r4, r4, r5, push #24
180 orr r5, r5, r6, push #24
182 orr r6, r6, r7, push #24
184 orr r7, r7, r8, push #24
199 orr r4, r4, r5, push #24
201 orr r5, r5, r6, push #24
209 orr r4, r4, r5, push #24
218 adcs sum, sum, r4, push #16
230 orr r4, r4, r5, push #16
[all …]
Dio-writesl.S47 orr ip, ip, r3, push #16
55 orr ip, ip, r3, push #24
63 orr ip, ip, r3, push #8
/linux-2.6.39/arch/unicore32/lib/
Dcopy_template.S149 or r3, r3, r4 push #\b
151 or r4, r4, r5 push #\b
153 or r5, r5, r6 push #\b
155 or r6, r6, r7 push #\b
157 or r7, r7, r8 push #\b
159 or r8, r8, r9 push #\b
161 or r9, r9, r10 push #\b
163 or r10, r10, r11 push #\b
175 or r3, r3, r11 push #\b
/linux-2.6.39/arch/mips/kernel/
Dgenex.S26 .set push; \
53 .set push define
75 .set push define
81 .set push define
132 .set push define
152 .set push define
178 .set push define
244 .set push define
315 .set push define
363 .set push define
[all …]
/linux-2.6.39/drivers/gpu/drm/nouveau/
Dnouveau_gem.c544 struct drm_nouveau_gem_pushbuf_push *push; in nouveau_gem_ioctl_pushbuf() local
581 push = u_memcpya(req->push, req->nr_push, sizeof(*push)); in nouveau_gem_ioctl_pushbuf()
582 if (IS_ERR(push)) { in nouveau_gem_ioctl_pushbuf()
584 return PTR_ERR(push); in nouveau_gem_ioctl_pushbuf()
589 kfree(push); in nouveau_gem_ioctl_pushbuf()
600 if (push[i].bo_index >= req->nr_buffers) { in nouveau_gem_ioctl_pushbuf()
606 bo[push[i].bo_index].read_domains |= (1 << 31); in nouveau_gem_ioctl_pushbuf()
636 bo[push[i].bo_index].user_priv; in nouveau_gem_ioctl_pushbuf()
638 nv50_dma_push(chan, nvbo, push[i].offset, in nouveau_gem_ioctl_pushbuf()
639 push[i].length); in nouveau_gem_ioctl_pushbuf()
[all …]
Dnv50_fbcon.c138 int push = dwords > 2047 ? 2047 : dwords; in nv50_fbcon_imageblit() local
140 ret = RING_SPACE(chan, push + 1); in nv50_fbcon_imageblit()
144 dwords -= push; in nv50_fbcon_imageblit()
146 BEGIN_RING(chan, NvSub2D, 0x40000860, push); in nv50_fbcon_imageblit()
147 OUT_RINGp(chan, data, push); in nv50_fbcon_imageblit()
148 data += push; in nv50_fbcon_imageblit()
Dnvc0_fbcon.c138 int push = dwords > 2047 ? 2047 : dwords; in nvc0_fbcon_imageblit() local
140 ret = RING_SPACE(chan, push + 1); in nvc0_fbcon_imageblit()
144 dwords -= push; in nvc0_fbcon_imageblit()
146 BEGIN_NVC0(chan, 6, NvSub2D, 0x0860, push); in nvc0_fbcon_imageblit()
147 OUT_RINGp(chan, data, push); in nvc0_fbcon_imageblit()
148 data += push; in nvc0_fbcon_imageblit()
/linux-2.6.39/arch/mips/include/asm/
Dasm.h98 .set push; \
111 .set push; \
147 .set push; \
153 .set push; \
170 .set push; \
177 .set push; \
186 .set push; \
193 .set push; \
/linux-2.6.39/arch/x86/crypto/
Dtwofish-i586-asm_32.S80 push d ## D;\
118 push d ## D;\
155 push c ## D;\
193 push c ## D;\
227 push %ebp /* save registers according to calling convention*/
228 push %ebx
229 push %esi
230 push %edi
282 push %ebp /* save registers according to calling convention*/
283 push %ebx
[all …]
Daes-i586-asm_32.S230 push %ebp
236 1: push %ebx
238 push %esi
240 push %edi
305 push %ebp
311 1: push %ebx
313 push %esi
315 push %edi
/linux-2.6.39/net/dccp/
Dqpolicy.c73 void (*push) (struct sock *sk, struct sk_buff *skb); member
80 .push = qpolicy_simple_push,
86 .push = qpolicy_simple_push,
98 qpol_table[dccp_sk(sk)->dccps_qpolicy].push(sk, skb); in dccp_qpolicy_push()
/linux-2.6.39/arch/x86/vdso/vdso32/
Dsysenter.S33 push %ecx
35 push %edx
37 push %ebp
/linux-2.6.39/arch/cris/arch-v10/kernel/
Dentry.S112 ;; and one for interrupts) we push the contents of BRP instead of IRP in the
299 push $srp ; we keep the old/new PC on the stack
335 sbfs [$sp=$sp-16] ; push the internal CPU status
336 push $dccr
385 push $srp ; make a stackframe similar to pt_regs
386 push $dccr
387 push $mof
391 push $r10 ; dummy orig_r10
393 push $r10 ; frametype == 1, BUSFAULT frame type
411 push $dccr
[all …]
/linux-2.6.39/arch/mips/include/asm/mach-pnx8550/
Dkernel-entry-init.h27 .set push
119 .set push
164 .set push
187 .set push
225 .set push
/linux-2.6.39/net/atm/
Draw.c61 vcc->push = atm_push_raw; in atm_init_aal0()
70 vcc->push = atm_push_raw; in atm_init_aal34()
79 vcc->push = atm_push_raw; in atm_init_aal5()
/linux-2.6.39/firmware/keyspan_pda/
Dkeyspan_pda.S355 push dps
356 push dpl
357 push dph
358 push dpl1
359 push dph1
360 push acc
705 push dps
706 push dpl
707 push dph
708 push dpl1
[all …]
Dxircom_pgs.S393 push dps
394 push dpl
395 push dph
396 push dpl1
397 push dph1
398 push acc
744 push dps
745 push dpl
746 push dph
747 push dpl1
[all …]
/linux-2.6.39/arch/x86/math-emu/
Dreg_round.S447 push %edx
448 push %eax
459 push %edx
460 push %eax
604 push %eax
618 push %eax
622 push %eax
637 push %edi
654 push %eax
/linux-2.6.39/drivers/md/
Ddm-kcopyd.c262 static void push(struct list_head *jobs, struct kcopyd_job *job) in push() function
323 push(&kc->complete_jobs, job); in complete_io()
330 push(&kc->complete_jobs, job); in complete_io()
334 push(&kc->io_jobs, job); in complete_io()
374 push(&job->kc->io_jobs, job); in run_pages_job()
405 push(&kc->complete_jobs, job); in process_jobs()
457 push(&kc->complete_jobs, job); in dispatch_job()
459 push(&kc->pages_jobs, job); in dispatch_job()
528 push(&kc->complete_jobs, job); in segment_complete()

123456