HomeSort by: relevance | last modified time | path
    Searched refs:f1 (Results 1 - 25 of 103) sorted by relevancy

1 2 3 4 5

  /src/lib/libm/arch/powerpc/
s_fmaf.S 8 fmadds %f1, %f1, %f2, %f3
s_fma.S 12 fmadd %f1, %f1, %f2, %f3
  /src/lib/libc/arch/powerpc/gen/
fabs_ieee754.S 12 fabs %f1,%f1
  /src/tests/usr.bin/xlint/lint1/
expr_cast.c 44 void (*f1)(void); local in function:cast_from_error
47 f1 = (void (*)(void))p;
50 f1 = (void *()(void))p; /* crash before 2021-02-28 */
  /src/lib/libc/gdtoa/
strtoId.c 38 strtoId(s, sp, f0, f1) CONST char *s; char **sp; double *f0, *f1;
40 strtoId(CONST char *s, char **sp, double *f0, double *f1)
58 ULtod((ULong*)f1, B[1]->x, exp[1], rv[1]);
62 ((ULong*)f1)[0] = ((ULong*)f0)[0];
63 ((ULong*)f1)[1] = ((ULong*)f0)[1];
strtoIdd.c 38 strtoIdd(s, sp, f0, f1) CONST char *s; char **sp; double *f0, *f1;
40 strtoIdd(CONST char *s, char **sp, double *f0, double *f1)
62 ULtodd((ULong*)f1, B[1]->x, exp[1], rv[1]);
66 ((ULong*)f1)[0] = ((ULong*)f0)[0];
67 ((ULong*)f1)[1] = ((ULong*)f0)[1];
68 ((ULong*)f1)[2] = ((ULong*)f0)[2];
69 ((ULong*)f1)[3] = ((ULong*)f0)[3];
strtoIf.c 38 strtoIf(s, sp, f0, f1) CONST char *s; char **sp; float *f0, *f1;
40 strtoIf(CONST char *s, char **sp, float *f0, float *f1)
58 ULtof((ULong*)f1, B[1]->x, exp[1], rv[1]);
62 *(ULong*)f1 = *(ULong*)f0;
  /src/tests/lib/libc/gen/
t_fmtcheck.c 36 const char *fmtcheck(const char *f1, const char *f2)
94 const char *f, *cf, *f1, *f2; local in function:ATF_TC_BODY
98 f1 = test_fmts[i].fmt1;
100 f = fmtcheck(f1, f2);
102 cf = f1;
109 "(should have returned %s)", i, f1, f2,
  /src/distrib/sets/
join.awk 30 # join.awk F1 F2
31 # Similar to join(1), this reads a list of words from F1
32 # and outputs lines in F2 with a first word that is in F1.
84 f1 = unvis($1)
85 words[f1] = $0
90 { f1 = unvis($1) }
92 f1 in words \
95 print words[f1] $0
  /src/lib/libc/stdlib/
merge.c 117 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local in function:mergesort_r
151 f1 = l2;
156 while (f1 < l1 && f2 < l2) {
157 if ((*cmp)(f1, f2, cookie) <= 0) {
159 b = f1, t = l1;
162 q = f1;
217 if (q == f1) {
220 ICOPY_ELT(f1, tp2, i);
223 CCOPY_ELT(f1, tp2, i);
227 ICOPY_LIST(f1, tp2, b)
291 u_char *f1, *f2, *s, *l2, *last, *p2; local in function:setup
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/src/
dmub_reg.h 67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
69 FN(reg, f1), v1, \
72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
74 FN(reg, f1), v1, \
78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
80 FN(reg, f1), v1, \
94 #define REG_UPDATE_2(reg, f1, v1, f2, v2) \
96 FN(reg, f1), v1,\
99 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \
101 FN(reg, f1), v1,
    [all...]
  /src/lib/libc/arch/vax/gen/
modf.S 46 emodd 4(%ap),$0,$0f1.0,%r2,%r0
56 emodf 4(%ap),$0,$0f1.0,%r2,%r0
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
reg_helper.h 69 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
71 FN(reg, f1), v1,\
74 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
76 FN(reg, f1), v1,\
80 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
82 FN(reg, f1), v1,\
87 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
90 FN(reg, f1), v1,\
96 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
99 FN(reg, f1), v1,
    [all...]
  /src/sys/arch/powerpc/fpu/
fpu_explode.c 140 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
146 fp->fp_mant[1] = f1; \
156 fp->fp_mant[1] = f1; \
163 fp->fp_mant[1] = f1; \
177 u_int frac, f0, f1; local in function:fpu_stof
183 f1 = frac << (32 - SNG_SHIFT);
184 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
195 u_int frac, f0, f1, f2; local in function:fpu_dtof
201 f1 = (frac << (32 - DBL_SHIFT)) | (lo >> DBL_SHIFT);
204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0)
    [all...]
  /src/sys/arch/m68k/fpe/
fpu_explode.c 115 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
121 fp->fp_mant[1] = f1; \
130 fp->fp_mant[1] = f1; \
136 fp->fp_mant[1] = f1; \
149 uint32_t frac, f0, f1; local in function:fpu_stof
155 f1 = frac << (32 - SNG_SHIFT);
156 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
167 uint32_t frac, f0, f1, f2; local in function:fpu_dtof
173 f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT);
176 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0)
186 uint32_t f0, f1, f2; local in function:fpu_xtof
    [all...]
  /src/sys/arch/sparc/fpu/
fpu_explode.c 140 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
146 fp->fp_mant[1] = f1; \
156 fp->fp_mant[1] = f1; \
163 fp->fp_mant[1] = f1; \
177 u_int frac, f0, f1; local in function:fpu_stof
183 f1 = frac << (32 - SNG_SHIFT);
184 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
195 u_int frac, f0, f1, f2; local in function:fpu_dtof
201 f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT);
204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0)
214 u_int frac, f0, f1, f2, f3; local in function:fpu_qtof
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
enable_execute_stack_test.c 60 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local in function:main
61 if ((*f1)() != 1)
clear_cache_test.c 64 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local in function:main
65 if ((*f1)() != 1)
  /src/lib/libc/arch/sparc/gen/
fabs.S 52 std %o0, [%sp + 32] ! return value => %f0:f1
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_51.h 114 uint64_t f1 = f[1]; local in function:fe25519_cmov
120 uint64_t x1 = f1 ^ g[1];
132 f[1] = f1 ^ x1;
151 uint64_t f1 = f[1]; local in function:fe25519_cswap
163 uint64_t x1 = f1 ^ g1;
175 f[1] = f1 ^ x1;
195 uint64_t f1 = f[1]; local in function:fe25519_copy
201 h[1] = f1;
247 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_mul
253 f1 = f[1]
338 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_sq
417 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_sq2
    [all...]
  /src/lib/libc/gdtoa/test/
ftest.c 66 float f1, fI[2]; local in function:main
96 if (u.f != (i1 = strtopf(ibuf, &se1, &f1), f1)
99 if (u.f != f1)
100 printf("\tf1 = %g\n", (double)f1);
  /src/tests/usr.bin/patch/
t_patch.sh 92 cksum=$(sha256 -n to_patch | cut -d' ' -f1)
95 origfile_cksum=$(sha256 -n to_patch.orig | cut -d' ' -f1)
154 cksum1=$(sha256 -n to_patch | cut -d' ' -f1)
165 cksum2=$(sha256 -n to_patch | cut -d' ' -f1)
170 origfile_cksum1=$(sha256 -n to_patch.~1~ | cut -d' ' -f1)
171 origfile_cksum2=$(sha256 -n to_patch.~2~ | cut -d' ' -f1)
  /src/sys/fs/nfs/common/
nfsdport.h 87 #define NFSVNO_CMPFH(f1, f2) \
88 ((f1)->fh_fsid.val[0] == (f2)->fh_fsid.val[0] && \
89 (f1)->fh_fsid.val[1] == (f2)->fh_fsid.val[1] && \
90 bcmp(&(f1)->fh_fid, &(f2)->fh_fid, sizeof(struct fid)) == 0)
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
clear_cache_test.c 73 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); local in function:main
75 if ((*f1)() != 1)
enable_execute_stack_test.c 68 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); local in function:main
70 if ((*f1)() != 1)

Completed in 43 milliseconds

1 2 3 4 5