Home
last modified time | relevance | path

Searched refs:floating (Results 1 – 25 of 9137) sorted by relevance

12345678910>>...366

/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/utils/
H A D_cython_blas.pxd15 cdef floating _dot(int, floating*, int, floating*, int) nogil argument
17 cdef floating _asum(int, floating*, int) nogil argument
19 cdef void _axpy(int, floating, floating*, int, floating*, int) nogil argument
21 cdef floating _nrm2(int, floating*, int) nogil argument
23 cdef void _copy(int, floating*, int, floating*, int) nogil argument
25 cdef void _scal(int, floating, floating*, int) nogil argument
27 cdef void _rotg(floating*, floating*, floating*, floating*) nogil argument
29 cdef void _rot(int, floating*, int, floating*, int, floating, floating) nogil argument
33 floating*, int, floating, floating*, int) nogil
35 cdef void _ger(BLAS_Order, int, int, floating, floating*, int, floating*, int, argument
[all …]
H A D_cython_blas.pyx20 cdef floating _dot(int n, floating *x, int incx,
29 cpdef _dot_memview(floating[::1] x, floating[::1] y):
54 cpdef _axpy_memview(floating alpha, floating[::1] x, floating[::1] y):
94 cdef void _rotg(floating *a, floating *b, floating *c, floating *s) nogil:
102 cpdef _rotg_memview(floating a, floating b, floating c, floating s):
108 floating c, floating s) nogil:
116 cpdef _rot_memview(floating[::1] x, floating[::1] y, floating c, floating s):
143 floating[::1] x, floating beta, floating[::1] y):
168 cpdef _ger_memview(floating alpha, floating[::1] x, floating[::] y, argument
184 int k, floating alpha, floating *A, int lda, floating *B,
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/cluster/
H A D_k_means_common.pxd1 from cython cimport floating
5 cdef floating _euclidean_dense_dense(floating*, floating*, int, bint) nogil argument
7 cdef floating _euclidean_sparse_dense(floating[::1], int[::1], floating[::1], argument
8 floating, bint) nogil
11 floating[:, ::1], floating[::1], floating[:, ::1], argument
12 floating[:, ::1], floating[::1], int[::1])
15 floating[::1], int[::1], int[::1], floating[::1], floating[:, ::1], argument
16 floating[:, ::1], floating[::1], int[::1])
18 cdef void _average_centers(floating[:, ::1], floating[::1]) argument
20 cdef void _center_shift(floating[:, ::1], floating[:, ::1], floating[::1]) argument
H A D_k_means_common.pyx13 from cython cimport floating
28 floating* a, # IN
29 floating* b, # IN
37 floating result = 0
53 def _euclidean_dense_dense_wrapper(floating[::1] a, floating[::1] b,
69 floating tmp, bi
87 floating[::1] b,
181 floating weight
220 floating x
237 floating weight
[all …]
/dports/math/py-yt/yt-4.0.1/yt/utilities/lib/
H A Dprimitives.pxd2 cimport cython.floating
55 const cython.floating u,
56 const cython.floating v,
57 cython.floating[3] S) nogil
60 const cython.floating u,
61 const cython.floating v,
65 const cython.floating u,
66 const cython.floating v,
94 const cython.floating u,
95 const cython.floating v,
[all …]
H A Dvec3_ops.pxd2 cimport cython.floating
9 cdef inline cython.floating dot(const cython.floating[3] a,
17 cdef inline void cross(const cython.floating[3] a,
18 const cython.floating[3] b,
19 cython.floating c[3]) nogil:
39 cdef inline cython.floating distance(const cython.floating[3] a,
47 cdef inline void fma(const cython.floating f,
48 const cython.floating[3] a,
49 const cython.floating[3] b,
50 cython.floating[3] c) nogil:
[all …]
/dports/comms/cwstudio/cwstudio-0.9.6/src/
H A Dfft.c33 floating *tr, in cw_fftstep()
34 floating *ti, in cw_fftstep()
35 floating *fr, in cw_fftstep()
36 floating *fi, in cw_fftstep()
37 floating *tmpr, in cw_fftstep()
38 floating *tmpi, in cw_fftstep()
61 c = cw_cos(6.283185 * (floating) k / (floating) n); in cw_fftstep()
62 s = cw_sin(6.283185 * (floating) k / (floating) n); in cw_fftstep()
90 void cw_fft(floating *tr, floating *ti, floating *fr, floating *fi, long int n) in cw_fft()
93 floating *temp; in cw_fft()
[all …]
H A Dnoise.c29 floating *tr,
30 floating *ti,
31 floating *fr,
32 floating *fi,
33 floating *tmpr,
34 floating *tmpi,
39 extern void cw_fft(floating *tr, floating *ti, floating *fr, floating *fi, long int n);
40 extern void cw_ifft(floating *tr, floating *ti, floating *fr, floating *fi, long int n);
50 floating *tr, *ti, *fr, *fi, max, min; in cw_noisegen()
59 || (ti = cw_malloc(duration * sizeof(floating))) == NULL in cw_noisegen()
[all …]
H A Dsound.c37 floating humtable[882]; in cw_tone()
38 floating *data; in cw_tone()
65 p = (floating) param.sweep / (floating) param.freq; in cw_tone()
69 x = (6.283185 * (floating) i / (floating) length); in cw_tone()
126 data[i] *= cw_sin((floating) i / (floating) param.window * 1.570796); in cw_tone()
153 floating *data; in cw_silence()
175 floating *s1, *s2; in cw_append()
242 floating a, b, c; in cw_mix()
243 floating *s1, *s2; in cw_mix()
269 floating *s, *n; in cw_add_noise()
[all …]
/dports/math/py-hdmedians/hdmedians-0.14.2/hdmedians/
H A Dgeomedian.pyx15 ctypedef fused floating:
22 cdef floating dot(floating[:] x, floating[:] y) nogil:
30 cdef floating sum(floating[:] x) nogil:
37 cdef floating nansum(floating[:] x) nogil:
45 cdef floating dist_naneuclidean(floating[:] x, floating[:] y) nogil:
55 cdef floating dist_euclidean(floating[:] x, floating[:] y) nogil:
64 cdef floating norm_euclidean(floating[:] x) nogil:
71 cdef geomedian_axis_zero(floating[:, :] X, floating eps=1e-7, argument
150 cdef geomedian_axis_one(floating[:, :] X, floating eps=1e-7, argument
236 cdef floating nan = <floating>float('NaN')
[all …]
/dports/devel/binutils/binutils-2.37/include/opcode/
H A Dwasm.h166 WASM_OPCODE (0x8b, "f32.abs", f32, f32, unary, floating)
167 WASM_OPCODE (0x8c, "f32.neg", f32, f32, unary, floating)
168 WASM_OPCODE (0x8d, "f32.ceil", f32, f32, unary, floating)
172 WASM_OPCODE (0x91, "f32.sqrt", f32, f32, unary, floating)
173 WASM_OPCODE (0x92, "f32.add", f32, f32, binary, floating)
174 WASM_OPCODE (0x93, "f32.sub", f32, f32, binary, floating)
175 WASM_OPCODE (0x94, "f32.mul", f32, f32, binary, floating)
176 WASM_OPCODE (0x95, "f32.div", f32, f32, binary, floating)
177 WASM_OPCODE (0x96, "f32.min", f32, f32, binary, floating)
181 WASM_OPCODE (0x99, "f64.abs", f64, f64, unary, floating)
[all …]
/dports/devel/arm-elf-binutils/binutils-2.37/include/opcode/
H A Dwasm.h166 WASM_OPCODE (0x8b, "f32.abs", f32, f32, unary, floating)
167 WASM_OPCODE (0x8c, "f32.neg", f32, f32, unary, floating)
168 WASM_OPCODE (0x8d, "f32.ceil", f32, f32, unary, floating)
172 WASM_OPCODE (0x91, "f32.sqrt", f32, f32, unary, floating)
173 WASM_OPCODE (0x92, "f32.add", f32, f32, binary, floating)
174 WASM_OPCODE (0x93, "f32.sub", f32, f32, binary, floating)
175 WASM_OPCODE (0x94, "f32.mul", f32, f32, binary, floating)
176 WASM_OPCODE (0x95, "f32.div", f32, f32, binary, floating)
177 WASM_OPCODE (0x96, "f32.min", f32, f32, binary, floating)
181 WASM_OPCODE (0x99, "f64.abs", f64, f64, unary, floating)
[all …]
/dports/devel/gnulibiberty/binutils-2.37/include/opcode/
H A Dwasm.h166 WASM_OPCODE (0x8b, "f32.abs", f32, f32, unary, floating)
167 WASM_OPCODE (0x8c, "f32.neg", f32, f32, unary, floating)
168 WASM_OPCODE (0x8d, "f32.ceil", f32, f32, unary, floating)
172 WASM_OPCODE (0x91, "f32.sqrt", f32, f32, unary, floating)
173 WASM_OPCODE (0x92, "f32.add", f32, f32, binary, floating)
174 WASM_OPCODE (0x93, "f32.sub", f32, f32, binary, floating)
175 WASM_OPCODE (0x94, "f32.mul", f32, f32, binary, floating)
176 WASM_OPCODE (0x95, "f32.div", f32, f32, binary, floating)
177 WASM_OPCODE (0x96, "f32.min", f32, f32, binary, floating)
181 WASM_OPCODE (0x99, "f64.abs", f64, f64, unary, floating)
[all …]
/dports/devel/gdb/gdb-11.1/include/opcode/
H A Dwasm.h166 WASM_OPCODE (0x8b, "f32.abs", f32, f32, unary, floating)
167 WASM_OPCODE (0x8c, "f32.neg", f32, f32, unary, floating)
168 WASM_OPCODE (0x8d, "f32.ceil", f32, f32, unary, floating)
172 WASM_OPCODE (0x91, "f32.sqrt", f32, f32, unary, floating)
173 WASM_OPCODE (0x92, "f32.add", f32, f32, binary, floating)
174 WASM_OPCODE (0x93, "f32.sub", f32, f32, binary, floating)
175 WASM_OPCODE (0x94, "f32.mul", f32, f32, binary, floating)
176 WASM_OPCODE (0x95, "f32.div", f32, f32, binary, floating)
177 WASM_OPCODE (0x96, "f32.min", f32, f32, binary, floating)
181 WASM_OPCODE (0x99, "f64.abs", f64, f64, unary, floating)
[all …]
/dports/lang/sdcc/sdcc-4.0.0/support/sdbinutils/include/opcode/
H A Dwasm.h166 WASM_OPCODE (0x8b, "f32.abs", f32, f32, unary, floating)
167 WASM_OPCODE (0x8c, "f32.neg", f32, f32, unary, floating)
168 WASM_OPCODE (0x8d, "f32.ceil", f32, f32, unary, floating)
172 WASM_OPCODE (0x91, "f32.sqrt", f32, f32, unary, floating)
173 WASM_OPCODE (0x92, "f32.add", f32, f32, binary, floating)
174 WASM_OPCODE (0x93, "f32.sub", f32, f32, binary, floating)
175 WASM_OPCODE (0x94, "f32.mul", f32, f32, binary, floating)
176 WASM_OPCODE (0x95, "f32.div", f32, f32, binary, floating)
177 WASM_OPCODE (0x96, "f32.min", f32, f32, binary, floating)
181 WASM_OPCODE (0x99, "f64.abs", f64, f64, unary, floating)
[all …]
/dports/www/R-cran-bslib/bslib/inst/lib/bs5/scss/forms/
H A D_floating-labels.scss1 .form-floating {
6 height: $form-floating-height;
7 line-height: $form-floating-line-height;
15 padding: $form-floating-padding-y $form-floating-padding-x;
19 @include transition($form-floating-transition);
24 padding: $form-floating-padding-y $form-floating-padding-x;
32 padding-top: $form-floating-input-padding-t;
43 padding-top: $form-floating-input-padding-t;
51 opacity: $form-floating-label-opacity;
52 transform: $form-floating-label-transform;
[all …]
/dports/net-mgmt/p5-FusionInventory-Agent/FusionInventory-Agent-2.5.2/resources/solaris/psrinfo/
H A Dsparc-t5-psrinfo_v4 and has a sparcv9 floating point processor.
8 and has a sparcv9 floating point processor.
12 and has a sparcv9 floating point processor.
16 and has a sparcv9 floating point processor.
20 and has a sparcv9 floating point processor.
24 and has a sparcv9 floating point processor.
28 and has a sparcv9 floating point processor.
32 and has a sparcv9 floating point processor.
36 and has a sparcv9 floating point processor.
40 and has a sparcv9 floating point processor.
[all …]
/dports/math/cvc4/CVC4-1.7/src/theory/fp/
H A Dkinds20 "a floating-point literal"
28 "a floating-point rounding mode"
39 "floating-point rounding mode"
51 "floating-point type"
74 operator FLOATINGPOINT_EQ 2: "floating-point equality"
80 operator FLOATINGPOINT_NEG 1 "floating-point negation"
92 operator FLOATINGPOINT_DIV 3 "floating-point division"
107 operator FLOATINGPOINT_MIN 2 "floating-point minimum"
110 operator FLOATINGPOINT_MAX 2 "floating-point maximum"
140 operator FLOATINGPOINT_ISZ 1 "floating-point is zero"
[all …]
/dports/net/wireshark/wireshark-3.6.1/epan/ftypes/
H A Dftype-double.c22 fv->value.floating = 0.0; in double_fvalue_new()
28 fv->value.floating = value; in double_fvalue_set_floating()
34 return fv->value.floating; in value_get_floating()
51 if (fv->value.floating == 0) { in val_from_unparsed()
55 else if (fv->value.floating == HUGE_VAL) { in val_from_unparsed()
97 return a->value.floating == b->value.floating; in cmp_eq()
103 return a->value.floating != b->value.floating; in cmp_ne()
109 return a->value.floating > b->value.floating; in cmp_gt()
115 return a->value.floating >= b->value.floating; in cmp_ge()
121 return a->value.floating < b->value.floating; in cmp_lt()
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/epan/ftypes/
H A Dftype-double.c22 fv->value.floating = 0.0; in double_fvalue_new()
28 fv->value.floating = value; in double_fvalue_set_floating()
34 return fv->value.floating; in value_get_floating()
51 if (fv->value.floating == 0) { in val_from_unparsed()
55 else if (fv->value.floating == HUGE_VAL) { in val_from_unparsed()
97 return a->value.floating == b->value.floating; in cmp_eq()
103 return a->value.floating != b->value.floating; in cmp_ne()
109 return a->value.floating > b->value.floating; in cmp_gt()
115 return a->value.floating >= b->value.floating; in cmp_ge()
121 return a->value.floating < b->value.floating; in cmp_lt()
[all …]
/dports/net/tshark-lite/wireshark-3.6.1/epan/ftypes/
H A Dftype-double.c22 fv->value.floating = 0.0; in double_fvalue_new()
28 fv->value.floating = value; in double_fvalue_set_floating()
34 return fv->value.floating; in value_get_floating()
51 if (fv->value.floating == 0) { in val_from_unparsed()
55 else if (fv->value.floating == HUGE_VAL) { in val_from_unparsed()
97 return a->value.floating == b->value.floating; in cmp_eq()
103 return a->value.floating != b->value.floating; in cmp_ne()
109 return a->value.floating > b->value.floating; in cmp_gt()
115 return a->value.floating >= b->value.floating; in cmp_ge()
121 return a->value.floating < b->value.floating; in cmp_lt()
[all …]
/dports/net/tshark/wireshark-3.6.1/epan/ftypes/
H A Dftype-double.c22 fv->value.floating = 0.0;
28 fv->value.floating = value;
34 return fv->value.floating;
51 if (fv->value.floating == 0) {
55 else if (fv->value.floating == HUGE_VAL) {
97 return a->value.floating == b->value.floating;
103 return a->value.floating != b->value.floating;
109 return a->value.floating > b->value.floating;
115 return a->value.floating >= b->value.floating;
121 return a->value.floating < b->value.floating;
[all …]
/dports/databases/pecl-cassandra/php-driver-61faee0/ext/src/
H A DFloat.c64 self->data.floating.value = flt->data.floating.value; in php_driver_float_init()
145 result->data.floating.value = self->data.floating.value + flt->data.floating.value; in PHP_METHOD()
170 result->data.floating.value = self->data.floating.value - flt->data.floating.value; in PHP_METHOD()
195 result->data.floating.value = self->data.floating.value * flt->data.floating.value; in PHP_METHOD()
225 result->data.floating.value = self->data.floating.value / flt->data.floating.value; in PHP_METHOD()
255 result->data.floating.value = fmod(self->data.floating.value, flt->data.floating.value); in PHP_METHOD()
268 result->data.floating.value = fabsf(self->data.floating.value); in PHP_METHOD()
279 result->data.floating.value = -self->data.floating.value; in PHP_METHOD()
296 result->data.floating.value = sqrtf(self->data.floating.value); in PHP_METHOD()
422 if (flt1->data.floating.value < flt2->data.floating.value) return -1; in php_driver_float_compare()
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/linear_model/
H A D_cd_fast.pyx46 cdef inline floating fmax(floating x, floating y) nogil:
52 cdef inline floating fsign(floating f) nogil:
61 cdef floating abs_max(int n, floating* a) nogil:
65 cdef floating d
73 cdef floating max(int n, floating* a) nogil:
85 cdef floating diff_abs_max(int n, floating* a, floating* b) nogil:
98 floating alpha, floating beta,
264 floating alpha, floating beta,
527 cdef floating* w_ptr = <floating*>&w[0]
529 cdef floating* q_ptr = <floating*>q.data
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dfloat_arithmetic.stderr1 error: floating-point arithmetic detected
9 error: floating-point arithmetic detected
15 error: floating-point arithmetic detected
21 error: floating-point arithmetic detected
27 error: floating-point arithmetic detected
33 error: floating-point arithmetic detected
39 error: floating-point arithmetic detected
45 error: floating-point arithmetic detected
51 error: floating-point arithmetic detected
57 error: floating-point arithmetic detected
[all …]

12345678910>>...366