Home
last modified time | relevance | path

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

/openbsd-src/sys/arch/hppa/spmath/
H A Dfcnvxf.c26 sgl_to_sgl_fcnvxf(srcptr, null, dstptr, status) in sgl_to_sgl_fcnvxf() argument
27 int *srcptr, *null; in sgl_to_sgl_fcnvxf()
34 src = *srcptr;
95 sgl_to_dbl_fcnvxf(srcptr, null, dstptr, status) in sgl_to_dbl_fcnvxf() argument
96 int *srcptr, *null; in sgl_to_dbl_fcnvxf()
103 src = *srcptr;
144 dbl_to_sgl_fcnvxf(srcptr, null, dstptr, status) in dbl_to_sgl_fcnvxf() argument
145 dbl_integer *srcptr, *null; in dbl_to_sgl_fcnvxf()
152 Dint_copyfromptr(srcptr,srcp1,srcp2);
247 dbl_to_dbl_fcnvxf(srcptr, null, dstptr, status) in dbl_to_dbl_fcnvxf() argument
[all …]
H A Dfcnvfxt.c27 sgl_to_sgl_fcnvfxt(srcptr, null, dstptr, status) in sgl_to_sgl_fcnvfxt() argument
28 sgl_floating_point *srcptr, *null; in sgl_to_sgl_fcnvfxt()
35 src = *srcptr;
89 sgl_to_dbl_fcnvfxt(srcptr, null, dstptr, status) in sgl_to_dbl_fcnvfxt() argument
90 sgl_floating_point *srcptr, *null; in sgl_to_dbl_fcnvfxt()
97 src = *srcptr;
162 dbl_to_sgl_fcnvfxt(srcptr, null, dstptr, status) in dbl_to_sgl_fcnvfxt() argument
163 dbl_floating_point *srcptr, *null; in dbl_to_sgl_fcnvfxt()
170 Dbl_copyfromptr(srcptr,srcp1,srcp2);
225 dbl_to_dbl_fcnvfxt(srcptr, null, dstptr, status) in dbl_to_dbl_fcnvfxt() argument
[all …]
H A Dfrnd.c28 sgl_frnd(srcptr, null, dstptr, status) in sgl_frnd() argument
29 sgl_floating_point *srcptr, *null, *dstptr; in sgl_frnd()
36 src = *srcptr;
130 dbl_frnd(srcptr, null, dstptr, status) in dbl_frnd() argument
131 dbl_floating_point *srcptr, *null, *dstptr; in dbl_frnd()
138 Dbl_copyfromptr(srcptr,srcp1,srcp2);
231 quad_frnd(srcptr, null, dstptr, status) in quad_frnd() argument
232 quad_floating_point *srcptr, *null, *dstptr; in quad_frnd()
H A Dfcnvfx.c26 sgl_to_sgl_fcnvfx(srcptr, null, dstptr, status) in sgl_to_sgl_fcnvfx() argument
27 sgl_floating_point *srcptr, *null; in sgl_to_sgl_fcnvfx()
35 src = *srcptr;
123 sgl_to_dbl_fcnvfx(srcptr, null, dstptr, status) in sgl_to_dbl_fcnvfx() argument
124 sgl_floating_point *srcptr, *null; in sgl_to_dbl_fcnvfx()
132 src = *srcptr;
245 dbl_to_sgl_fcnvfx(srcptr, null, dstptr, status) in dbl_to_sgl_fcnvfx() argument
246 dbl_floating_point *srcptr, *null; in dbl_to_sgl_fcnvfx()
254 Dbl_copyfromptr(srcptr,srcp1,srcp2);
365 dbl_to_dbl_fcnvfx(srcptr, null, dstptr, status) in dbl_to_dbl_fcnvfx() argument
[all …]
H A Dfcnvff.c26 sgl_to_dbl_fcnvff(srcptr, null, dstptr, status) in sgl_to_dbl_fcnvff() argument
27 sgl_floating_point *srcptr, *null; in sgl_to_dbl_fcnvff()
34 src = *srcptr;
111 dbl_to_sgl_fcnvff(srcptr, null, dstptr, status) in dbl_to_sgl_fcnvff() argument
112 dbl_floating_point *srcptr, *null; in dbl_to_sgl_fcnvff()
122 Dbl_copyfromptr(srcptr,srcp1,srcp2);
H A Dsfsqrt.c25 sgl_fsqrt(srcptr, null, dstptr, status) in sgl_fsqrt() argument
26 sgl_floating_point *srcptr, *null, *dstptr; in sgl_fsqrt()
33 src = *srcptr;
H A Ddfsqrt.c25 dbl_fsqrt(srcptr, null, dstptr, status) in dbl_fsqrt() argument
26 dbl_floating_point *srcptr, *null, *dstptr; in dbl_fsqrt()
34 Dbl_copyfromptr(srcptr,srcp1,srcp2);
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DConvertUTF.cpp399 const UTF8 *srcptr = source+length; in isLegalUTF8() local
403 case 4: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; in isLegalUTF8()
404 case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; in isLegalUTF8()
405 case 2: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; in isLegalUTF8()