Searched refs:vm2 (Results 1 - 8 of 8) sorted by relevance

/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Dtoom4_sqr.c92 /* NOTE: The multiplications to v2, vm2, vh and vm1 overwrites the
99 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
115 TOOM4_SQR_REC (vm2, amx, n + 1, tp); /* vm2, 2n+1 limbs */
152 mpn_toom_interpolate_7pts (pp, n, 0, vm2, vm1, v2, vh, 2*s, tp);
H A Dtoom43_mul.c46 vm2 = (a0-2a1+4a2-8a3)*(b0-2b1+4b2) # A(-2)*B(-2) |ah| <= 9 |bh|<= 4
83 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
180 /* vm2, 2n+1 limbs */
181 mpn_mul_n (vm2, asm2, bsm2, n+1); /* W2 */
196 mpn_toom_interpolate_6pts (pp, n, flags, vm1, vm2, v2, t + s);
201 #undef vm2 macro
H A Dtoom52_mul.c46 vm2 = (a0-2a1+4a2-8a3+16a4)*(b0-2b1) # A(-2)*B(-2) |ah| <= 20 |bh|<= 1
86 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
203 /* vm2, 2n+1 limbs */
204 mpn_mul_n (vm2, asm2, bsm2, n+1); /* W2 */
219 mpn_toom_interpolate_6pts (pp, n, flags, vm1, vm2, v2, t + s);
224 #undef vm2 macro
H A Dtoom44_mul.c43 vm2 = ( a0-2a1+4a2-8a3)*( b0-2b1+4b2-8b3) # A(2)*B(2) ah <= 9 |bh| <= 9
82 The other recursive products, vm1, v2, vm2, vh are stored in the
129 /* NOTE: The multiplications to v2, vm2, vh and vm1 overwrites the
136 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
157 TOOM44_MUL_N_REC (vm2, amx, bmx, n + 1, tp); /* vm2, 2n+1 limbs */
224 mpn_toom_interpolate_7pts (pp, n, flags, vm2, vm1, v2, vh, s + t, tp);
H A Dtoom62_mul.c47 vm2 = ( a0- 2a1+4a2-8a3+16a4-32a5)*( b0-2b1) # A(-2)*B(-2) -41<=ah<=20 -1<=bh<=0
237 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
246 mpn_mul_n (vm2, asm2, bsm2, n + 1); /* vm2, 2n+1 limbs */
297 vm2, vm1, v2, vh, s + t, scratch_out);
H A Dtoom53_mul.c46 vm2 = ( a0-2a1+4a2-8a3+16a4)*( b0-2b1+4b2) # A(2)*B(2) -9<=ah<=20 -1<=bh<=4
234 #define vm2 (scratch + 2 * n + 1) /* 2n+1 */ macro
243 mpn_mul_n (vm2, asm2, bsm2, n + 1); /* vm2, 2n+1 limbs */
316 mpn_toom_interpolate_7pts (pp, n, flags, vm2, vm1, v2, vh, s + t,
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsysv_shm.c785 shmfork(struct vmspace *vm1, struct vmspace *vm2) argument
790 SHMPRINTF(("shmfork %p->%p\n", vm1, vm2));
792 vm2->vm_shm = vm1->vm_shm;
/netbsd-6-1-5-RELEASE/sys/uvm/
H A Duvm_map.c4220 struct vmspace *vm2; local
4229 vm2 = uvmspace_alloc(vm_map_min(old_map), vm_map_max(old_map));
4230 memcpy(&vm2->vm_startcopy, &vm1->vm_startcopy,
4232 new_map = &vm2->vm_map; /* XXX */
4434 shmfork(vm1, vm2);
4438 pmap_fork(vm1->vm_map.pmap, vm2->vm_map.pmap);
4442 return (vm2);

Completed in 74 milliseconds