Home
last modified time | relevance | path

Searched refs:zeros (Results 201 – 225 of 31757) sorted by relevance

12345678910>>...1271

/dports/math/suitesparse-slip_lu/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/suitesparse-ccolamd/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/suitesparse-camd/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/suitesparse-csparse/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/suitesparse-cxsparse/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/suitesparse-graphblas/SuiteSparse-5.10.1/GraphBLAS/GraphBLAS/@GrB/
H A Dzeros.m1 function C = zeros (varargin) function
4 % C = zeros (n) ; n-by-n GrB double matrix with no entries.
5 % C = zeros (m,n) ; m-by-n GrB double matrix with no entries.
6 % C = zeros ([m,n]) ; m-by-n GrB double matrix with no entries.
7 % C = zeros (..., type) ; empty matrix of given type.
8 % C = zeros (..., 'like', G) ; empty matrix, same type as G.
10 % Since function overloads the MATLAB built-in zeros(...), at least one
12 % C = zeros (GrB (n))). Alternatively, C = GrB (n,n) can be used.
19 [m, n, type] = gb_parse_args ('zeros', varargin {:}) ;
/dports/math/scilab/scilab-6.1.1/scilab/modules/ast/tests/unit_tests/
H A Dkrondivide.tst20 // With arrays without zeros
34 z = list(zeros(1,1), zeros(1,3), zeros(4,1), zeros(1,1,5), zeros(2,3), zeros(3,4,2));
49 // With arrays with zeros
56 // Without zeros .*. with zeros
67 // With zeros .*. with zeros
/dports/devel/grex/grex-1.3.0/cargo-crates/ndarray-0.15.3/benches/
H A Dchunks.rs11 let a = Array::<f32, _>::zeros((256, 256)); in chunk2x2_iter_sum()
13 let mut sum = Array::zeros(a.exact_chunks(chunksz).raw_dim()); in chunk2x2_iter_sum()
23 let a = Array::<f32, _>::zeros((256, 256)); in chunk2x2_sum()
25 let mut sum = Array::zeros(a.exact_chunks(chunksz).raw_dim()); in chunk2x2_sum()
35 let a = Array::<f32, _>::zeros((256, 256)); in chunk2x2_sum_get1()
37 let mut sum = Array::<f32, _>::zeros(a.exact_chunks(chunksz).raw_dim()); in chunk2x2_sum_get1()
50 let a = Array::<f32, _>::zeros((256, 256)); in chunk2x2_sum_uget1()
52 let mut sum = Array::<f32, _>::zeros(a.exact_chunks(chunksz).raw_dim()); in chunk2x2_sum_uget1()
68 let a = Array::<f32, _>::zeros((256, 256)); in chunk2x2_sum_get2()
70 let mut sum = Array::<f32, _>::zeros(a.exact_chunks(chunksz).raw_dim()); in chunk2x2_sum_get2()
/dports/multimedia/libvdpau-va-gl/libvdpau-va-gl-0.4.2/src/
H A Dbitstream.hh183 size_t zeros = 0; in get_uev() local
186 zeros ++; in get_uev()
188 if (zeros == 0) in get_uev()
191 return (1 << zeros) - 1 + get_u(zeros); in get_uev()
197 size_t zeros = 0; in get_sev() local
200 zeros ++; in get_sev()
202 if (zeros == 0) in get_sev()
205 const int32_t val = (1 << zeros) + get_u(zeros); in get_sev()
/dports/sysutils/xvidcap/xvidcap-1.1.7/ffmpeg/libavcodec/alpha/
H A Dmpegvideo_alpha.c51 uint64_t levels, negmask, zeros, add; in dct_unquantize_h263_intra_axp() local
68 zeros = cmpbge(0, levels); in dct_unquantize_h263_intra_axp()
69 zeros &= zeros >> 1; in dct_unquantize_h263_intra_axp()
80 add = zap(add, zeros); in dct_unquantize_h263_intra_axp()
106 uint64_t levels, negmask, zeros, add; in dct_unquantize_h263_inter_axp() local
123 zeros = cmpbge(0, levels); in dct_unquantize_h263_inter_axp()
124 zeros &= zeros >> 1; in dct_unquantize_h263_inter_axp()
135 add = zap(add, zeros); in dct_unquantize_h263_inter_axp()
/dports/math/py-sympy/sympy-1.9/sympy/matrices/tests/
H A Dtest_graph.py68 Matrix.zeros(2, 2),
69 Matrix.zeros(2, 2)
74 Matrix.zeros(2, 2)
77 Matrix.zeros(2, 2),
78 Matrix.zeros(2, 2),
92 Matrix.zeros(2, 2),
93 Matrix.zeros(2, 2)
96 Matrix.zeros(2, 2),
101 Matrix.zeros(2, 2),
102 Matrix.zeros(2, 2),
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/util/tests/
H A Dtest_invert.py11 image = np.zeros((3, 3), dtype=dtype)
14 expected = np.zeros((3, 3), dtype=dtype) + upper_dtype_limit
22 image = np.zeros((3, 3), dtype=dtype)
25 expected = np.zeros((3, 3), dtype=dtype) + upper_dtype_limit
33 image = np.zeros((3, 3), dtype=dtype)
38 expected = np.zeros((3, 3), dtype=dtype)
48 image = np.zeros((3, 3), dtype=dtype)
53 expected = np.zeros((3, 3), dtype=dtype)
62 image = np.zeros((3, 3), dtype=dtype)
66 expected = np.zeros((3, 3), dtype=dtype)
/dports/lang/halide/Halide-release_2019_08_27-2654-g664dc4993/python_bindings/correctness/
H A Daddconstant_test.py34 output_u8 = numpy.zeros((3,), dtype=numpy.uint8)
35 output_u16 = numpy.zeros((3,), dtype=numpy.uint16)
36 output_u32 = numpy.zeros((3,), dtype=numpy.uint32)
37 output_u64 = numpy.zeros((3,), dtype=numpy.uint64)
38 output_i8 = numpy.zeros((3,), dtype=numpy.int8)
39 output_i16 = numpy.zeros((3,), dtype=numpy.int16)
40 output_i32 = numpy.zeros((3,), dtype=numpy.int32)
41 output_i64 = numpy.zeros((3,), dtype=numpy.int64)
42 output_float = numpy.zeros((3,), dtype=numpy.float32)
43 output_double = numpy.zeros((3,), dtype=numpy.float64)
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/math/test/
H A Dtest_legendre.hpp292 BOOST_ASSERT(zeros.size() == 1); in test_legendre_p_zeros()
293 BOOST_CHECK_SMALL(zeros[0], tol); in test_legendre_p_zeros()
295 zeros = legendre_p_zeros<Real>(2); in test_legendre_p_zeros()
296 BOOST_ASSERT(zeros.size() == 1); in test_legendre_p_zeros()
299 zeros = legendre_p_zeros<Real>(3); in test_legendre_p_zeros()
300 BOOST_ASSERT(zeros.size() == 2); in test_legendre_p_zeros()
301 BOOST_CHECK_SMALL(zeros[0], tol); in test_legendre_p_zeros()
304 zeros = legendre_p_zeros<Real>(4); in test_legendre_p_zeros()
305 BOOST_ASSERT(zeros.size() == 2); in test_legendre_p_zeros()
311 BOOST_ASSERT(zeros.size() == 3); in test_legendre_p_zeros()
[all …]
/dports/devel/py-tinyarray/tinyarray-1.2.4/
H A Dbenchmark.py24 tuples.zeros = tuple_zeros
29 def zeros(module, dtype, n=100000): function
30 zeros = module.zeros
31 return list(zeros(2, dtype) for i in range(n))
40 a = module.zeros(2, dtype)
41 b = module.zeros(2, dtype)
47 a = module.zeros(2, dtype)
72 compare(zeros, modules)
/dports/audio/infamous-plugins-lv2/infamousPlugins-0.3.0-7-g778e591/test/
H A Dspring.m27 sys = tf([1],[1 zeros(1,N)],Ts);
65 sys = tf([1],[1 zeros(1,N)],Ts);
95 %Hap = (tf([al zeros(1,k-1) 1],[1 zeros(1,k-1) al],Ts))^M;%old way
100 Hap = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
142 Hap1 = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
154 Hap2 = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
166 Hap3 = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
178 Hap4 = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
191 Hap5 = (tf([al al*a2 zeros(1,ki-2) a2 1],[1 a2 zeros(1,ki-2) al*a2 al],Ts))^M;
302 Hap = (tf([al zeros(1,k-1) 1],[1 zeros(1,k-1) al],Ts))^M;%old way
[all …]
H A Dschrodercascade.m18 AP1 = tf([-g1 zeros(1,N1-1) 1], [1 zeros(1,N1-1) -g1],1,'variable','z^-1')
19 AP2 = tf([-g2 zeros(1,N2-1) 1], [1 zeros(1,N2-1) -g2],1,'variable','z^-1')
20 AP3 = tf([-g3 zeros(1,N3-1) 1], [1 zeros(1,N3-1) -g3],1,'variable','z^-1')
21 AP4 = tf([-g4 zeros(1,N4-1) 1], [1 zeros(1,N4-1) -g4],1,'variable','z^-1')
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/security/vault/vault-1.8.2/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/security/obfs4proxy-tor/obfs4proxy-0.0.11/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/sysutils/jest/jest-f76bc46/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/devel/bit/bit-1.1.2/vendor/github.com/dsnet/compress/xflate/internal/meta/
H A Dmeta_stats.go84 for zeros := 0; zeros <= numBits; zeros++ {
85 ones := numBits - zeros
89 if huffLen, _ := computeHuffLen(zeros, ones); huffLen == 0 {
109 if perm[8*i+j] >= zeros {
164 func computeHuffLen(zeros, ones int) (huffLen uint, inv bool) { argument
171 if inv = ones > zeros; inv {
172 zeros, ones = ones, zeros
176 if maxSyms-maxOnes >= zeros+8 && maxOnes >= ones+8 {
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/mmap_v1/
H A Drecord_store_v1_capped_test.cpp52 char zeros[20 * 1024 * 1024] = {}; variable
128 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
162 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
202 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
245 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
284 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
321 rs.insertRecord(&opCtx, zeros, 100 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
395 StatusWith<RecordId> status = rs.insertRecord(&opCtx, zeros, 16000, Timestamp(), false); in TEST()
460 rs.insertRecord(&opCtx, zeros, 60 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
508 rs.insertRecord(&opCtx, zeros, 76 - MmapV1RecordHeader::HeaderSize, Timestamp(), false) in TEST()
[all …]

12345678910>>...1271