Home
last modified time | relevance | path

Searched refs:src2 (Results 1 – 8 of 8) sorted by relevance

/linux-2.4.37.9/arch/ia64/lib/
Dcopy_page.S28 #define src2 r21 macro
58 adds src2=8,in1
71 (p[0]) ld8 t2[0]=[src2],16
77 (p[0]) ld8 t4[0]=[src2],16
82 (p[0]) ld8 t6[0]=[src2],16
87 (p[0]) ld8 t8[0]=[src2],16
Dmemcpy.S47 # define src2 r17 macro
205 adds src2=7,src // src2 = (src + 7)
208 and src2=-8,src2 // src2 = (src + 7) & ~7
212 ld8 t1=[src2] // t1 = 1st source word if src is 8-byte aligned, 2nd otherwise
243 and src2=-8,src // align source pointer
270 (p6) ld8 val[1]=[src2],8 // prime the pump...
295 (p[0]) ld8 val[0]=[src2],8; \
Dcopy_user.S66 #define src2 r26 macro
128 and src2=0x7,src1 // src offset
158 sub t1=8,src2
159 mov t2=src2
169 cmp.leu p14,p15=src2,dst2
170 sub t1=dst2,src2
173 (p14) sub word1=8,src2 // (8 - src offset)
367 adds src2=8,src1
376 (p16) ld8 val2[0]=[src2],16
/linux-2.4.37.9/arch/m68k/math-emu/
Dmulti_arith.h356 struct fp_ext *src2) in fp_submant() argument
360 : "g,d" (src2->lowmant), "0,0" (src1->lowmant)); in fp_submant()
362 : "d" (src2->mant.m32[1]), "0" (src1->mant.m32[1])); in fp_submant()
364 : "d" (src2->mant.m32[0]), "0" (src1->mant.m32[0])); in fp_submant()
367 #define fp_mul64(desth, destl, src1, src2) ({ \ argument
369 : "g" (src1), "0" (src2)); \
374 #define fp_add64(dest1, dest2, src1, src2) ({ \ argument
376 : "dm,d" (src2), "0,0" (dest2)); \
407 struct fp_ext *src2) in fp_multiplymant() argument
411 fp_mul64(dest->m32[0], dest->m32[1], src1->mant.m32[0], src2->mant.m32[0]); in fp_multiplymant()
[all …]
Dfp_log.c32 struct fp_ext tmp, src2; in fp_fsqrt() local
65 fp_copy_ext(&src2, dest); in fp_fsqrt()
90 fp_copy_ext(&tmp, &src2); in fp_fsqrt()
/linux-2.4.37.9/arch/parisc/math-emu/
Dsgl_float.h41 #define Sgl_and_signs( src1dst, src2) \ argument
42 Sall(src1dst) = (Sall(src2)|~((unsigned int)1<<31)) & Sall(src1dst)
43 #define Sgl_or_signs( src1dst, src2) \ argument
44 Sall(src1dst) = (Sall(src2)&((unsigned int)1<<31)) | Sall(src1dst)
Ddbl_float.h42 #define Dbl_and_signs( src1dst, src2) \ argument
43 Dallp1(src1dst) = (Dallp1(src2)|~((unsigned int)1<<31)) & Dallp1(src1dst)
44 #define Dbl_or_signs( src1dst, src2) \ argument
45 Dallp1(src1dst) = (Dallp1(src2)&((unsigned int)1<<31)) | Dallp1(src1dst)
731 #define Dbl_copyto_dblext(src1,src2,dest1,dest2,dest3,dest4) \ argument
732 Dextallp1(dest1) = Dallp1(src1); Dextallp2(dest2) = Dallp2(src2); \
/linux-2.4.37.9/drivers/ieee1394/
Damdtp.c498 struct fraction *src2) in fraction_add() argument
507 sum = src1->numerator + src2->numerator; in fraction_add()
509 dst->integer = src1->integer + src2->integer + sum / denom; in fraction_add()