Home
last modified time | relevance | path

Searched refs:nfill (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/dports/science/afni/afni-AFNI_21.3.16/src/
H A Dthd_rowfillin.c11 int ii , nfill=0 , jj ; in THD_rowfillin_short() local
17 if( ii == nrow ) return nfill ; /*** was all zeros ***/ in THD_rowfillin_short()
31 if( ii == nrow ) return nfill ; /*** didn't find any zero ***/ in THD_rowfillin_short()
42 if( jj == nrow ) return nfill ; /*** was all zeros to the end ***/ in THD_rowfillin_short()
49 nfill += (jj-ii) ; in THD_rowfillin_short()
67 int ii , nfill=0 , jj ; in THD_rowfillin_byte() local
73 if( ii == nrow ) return nfill ; /*** was all zeros ***/ in THD_rowfillin_byte()
81 if( ii == nrow ) return nfill ; /*** didn't find any zero ***/ in THD_rowfillin_byte()
91 nfill += (jj-ii) ; in THD_rowfillin_byte()
104 int ii , nfill=0 , jj ; in THD_rowfillin_float() local
[all …]
H A Dthd_zfillin.c10 int ii , nfill=0 , jj ; in THD_zfillin_byte() local
26 if( ii+jj< nrow && row[ii+jj]!=0 ){trow[ii]=row[ii+jj]; nfill++; break;} in THD_zfillin_byte()
27 if( ii-jj>= 0 && row[ii-jj]!=0 ){trow[ii]=row[ii-jj]; nfill++; break;} in THD_zfillin_byte()
31 if( nfill > 0 ) memcpy(row,trow,sizeof(byte)*nrow) ; in THD_zfillin_byte()
32 return nfill; in THD_zfillin_byte()
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/core/unit_test/
H A DTestMemoryPool.hpp284 const long nfill = 70000; in test_memory_pool_v2() local
293 functor_type functor(pool, nfill); in test_memory_pool_v2()
305 (nfill != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
311 ASSERT_EQ(nfill, result); in test_memory_pool_v2()
312 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
320 const int del_error = (nfill - ndel) != long(stats.consumed_blocks); in test_memory_pool_v2()
326 ASSERT_EQ((nfill - ndel), long(stats.consumed_blocks)); in test_memory_pool_v2()
335 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
342 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
351 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
[all …]
/dports/devel/kokkos/kokkos-3.4.01/core/unit_test/
H A DTestMemoryPool.hpp284 const long nfill = 70000; in test_memory_pool_v2() local
293 functor_type functor(pool, nfill); in test_memory_pool_v2()
305 (nfill != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
311 ASSERT_EQ(nfill, result); in test_memory_pool_v2()
312 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
320 const int del_error = (nfill - ndel) != long(stats.consumed_blocks); in test_memory_pool_v2()
326 ASSERT_EQ((nfill - ndel), long(stats.consumed_blocks)); in test_memory_pool_v2()
335 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
342 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
351 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
[all …]
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/core/unit_test/
H A DTestMemoryPool.hpp284 const long nfill = 70000; in test_memory_pool_v2() local
293 functor_type functor(pool, nfill); in test_memory_pool_v2()
305 (nfill != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
311 ASSERT_EQ(nfill, result); in test_memory_pool_v2()
312 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
320 const int del_error = (nfill - ndel) != long(stats.consumed_blocks); in test_memory_pool_v2()
326 ASSERT_EQ((nfill - ndel), long(stats.consumed_blocks)); in test_memory_pool_v2()
335 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
342 ASSERT_EQ(nfill, long(stats.consumed_blocks)); in test_memory_pool_v2()
351 (ndel != result) || (nfill != long(stats.consumed_blocks)); in test_memory_pool_v2()
[all …]
/dports/science/cdo/cdo-2.0.0/src/
H A DFillmiss.cc112 if (kk >= nfill)
128 fillmiss_x(int gridID, Varray<T> &vIn, Varray<T> &vOut, T missval, int nfill, CMP_FUNC is_EQ) in fillmiss_x() argument
146 matrix2[j][i] = fillmiss_kernel(nfill, globgrid, nx, ny, i, j, missval, matrix1, is_EQ); in fillmiss_x()
151 fillmiss(Field &field1, Field &field2, int nfill) in fillmiss() argument
158 fillmiss_x(field1.grid, field1.vec_d, field2.vec_d, field1.missval, nfill, dbl_is_equal); in fillmiss()
163 … fillmiss_x(field1.grid, field1.vec_f, field2.vec_f, (float) field1.missval, nfill, is_equal); in fillmiss()
165 fillmiss_x(field1.grid, field1.vec_d, field2.vec_d, field1.missval, nfill, is_equal); in fillmiss()
414 auto nfill = (operatorID == SETMISSTODIS) ? 4 : 1; in Fillmiss() local
420 nfill = parameter_to_int(cdo_operator_argv(0)); in Fillmiss()
421 if (operatorID == FILLMISS && (nfill < 1 || nfill > 4)) cdo_abort("nfill out of range!"); in Fillmiss()
[all …]
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/www/rearx/rearx-0.1.4/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/devel/dtool/dtool-0.11.0/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/sysutils/rsfetch/rsfetch-2.0.0/cargo-crates/prettytable-rs-0.8.0/src/
H A Dutils.rs61 let mut nfill = if text_len < size { size - text_len } else { 0 }; in print_align() localVariable
64 Alignment::RIGHT => nfill, in print_align()
65 Alignment::CENTER => nfill / 2, in print_align()
69 nfill -= n; in print_align()
72 if nfill > 0 && !skip_right_fill { in print_align()
73 out.write_all(&vec![fill as u8; nfill])?; in print_align()
/dports/lang/gcc9/gcc-9.4.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc10/gcc-10.3.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/lang/gcc11/gcc-11.2.0/gcc/d/dmd/root/
H A Dstringtable.c28 if (!npools || nfill + nbytes > POOL_SIZE) in allocValue()
32 nfill = 0; in allocValue()
35 StringValue *sv = (StringValue *)&pools[npools - 1][nfill]; in allocValue()
41 const uint32_t vptr = (uint32_t)(npools << POOL_BITS | nfill); in allocValue()
42 nfill += nbytes + (-nbytes & 7); // align to 8 bytes in allocValue()
72 npools = nfill = 0; in _init()
/dports/astro/pykep/pykep-2.6/src/third_party/cspice/
H A Dshiftr.c20 integer i__, n, s, nfill, inlen, nsave, outlen; in shiftr_() local
209 nfill = min(n,outlen); in shiftr_()
220 i__1 = nfill; in shiftr_()
/dports/astro/py-pykep/pykep-2.6/src/third_party/cspice/
H A Dshiftr.c20 integer i__, n, s, nfill, inlen, nsave, outlen; in shiftr_() local
209 nfill = min(n,outlen); in shiftr_()
220 i__1 = nfill; in shiftr_()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/test/
H A Dtimedata_tests.cpp83 int nfill = (MAX_SAMPLES - 3 - 19) / 2; //89 in BOOST_AUTO_TEST_CASE() local
84 MultiAddTimeData(nfill, 100); in BOOST_AUTO_TEST_CASE()
85 MultiAddTimeData(nfill, -100); //filter size MAX_SAMPLES - 3 in BOOST_AUTO_TEST_CASE()

12345678910>>...16