Home
last modified time | relevance | path

Searched refs:nbits_in (Results 1 – 20 of 20) sorted by relevance

/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-fec/lib/
H A Dasync_decoder_impl.cc115 size_t nbits_in = pmt::length(bits); in decode_unpacked() local
130 nbits_out = nbits_in * d_decoder->rate() - diff; in decode_unpacked()
132 nblocks = nbits_in / d_decoder->get_input_size(); in decode_unpacked()
147 memcpy(d_tmp_f32, f32in, nbits_in * sizeof(float)); in decode_unpacked()
151 for (size_t n = 0; n < nbits_in; n++) in decode_unpacked()
157 for (size_t n = 0; n < nbits_in; n++) in decode_unpacked()
180 size_t nbits_in = pmt::length(bits); in decode_packed() local
181 int nbits_out = nbits_in * d_decoder->rate(); in decode_packed()
186 if (nbits_in > d_max_bits_in) { in decode_packed()
204 for (size_t n = 0; n < nbits_in; n++) in decode_packed()
[all …]
H A Dasync_encoder_impl.cc112 int nbits_in = pmt::length(bits); in encode_unpacked() local
113 if (nbits_in > (d_mtu * 8)) { in encode_unpacked()
119 bool variable_framesize = d_encoder->set_frame_size(nbits_in); in encode_unpacked()
125 nblocks = nbits_in / d_encoder->get_input_size(); in encode_unpacked()
126 if (nblocks * d_encoder->get_input_size() != nbits_in) { in encode_unpacked()
130 nbits_in); in encode_unpacked()
142 d_pack->pack(d_bits_in, bits_in, nbits_in / 8); in encode_unpacked()
167 int nbits_in = 8 * nbytes_in; in encode_packed() local
170 d_encoder->set_frame_size(nbits_in); in encode_packed()
/dports/math/petanque/arybo-release-1.1.0/arybo/tools/
H A Didentify.py16 nbits_in = M.ncols()
18 if nbits_in != nbits_out:
21 mba = MBA(nbits_in)
27 if M == Matrix(nbits_out, nbits_in):
34 for j in range(nbits_in):
/dports/math/py-arybo/arybo-1.1.0/arybo/tools/
H A Didentify.py16 nbits_in = M.ncols()
18 if nbits_in != nbits_out:
21 mba = MBA(nbits_in)
27 if M == Matrix(nbits_out, nbits_in):
34 for j in range(nbits_in):
/dports/math/universal/universal-3.48/include/universal/number/posit/
H A Dposit_parse.hpp36 size_t nbits_in = nbits; in parse() local
39 ss >> nbits_in; in parse()
46 if (nbits < nbits_in) { in parse()
47 raw >>= (nbits_in - nbits); in parse()
/dports/math/faiss/faiss-1.7.1/faiss/impl/
H A DProductQuantizer-inl.h99 inline PQDecoder8::PQDecoder8(const uint8_t* code, int nbits_in) : code(code) { in PQDecoder8() argument
100 assert(8 == nbits_in); in PQDecoder8()
107 inline PQDecoder16::PQDecoder16(const uint8_t* code, int nbits_in) in PQDecoder16() argument
109 assert(16 == nbits_in); in PQDecoder16()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-digital/lib/
H A Dheader_format_default.cc116 bool header_format_default::parse(int nbits_in, in parse() argument
123 while (nbits_processed < nbits_in) { in parse()
126 while (nbits_processed < nbits_in) { in parse()
145 while (nbits_processed <= nbits_in) { // Shift bits one at a time into header in parse()
H A Dheader_format_crc.cc87 bool header_format_crc::parse(int nbits_in, in parse() argument
92 while (nbits_processed <= nbits_in) { in parse()
H A Dheader_format_ofdm.cc110 bool header_format_ofdm::parse(int nbits_in, in parse() argument
116 while (nbits_processed <= nbits_in) { in parse()
/dports/security/helib/HElib-1.3.1/src/
H A DtableLookup.cpp141 long nbits_in, // number of precision bits in buildLookupTable() argument
151 assertTrue(nbits_in <= 16, "tables of size > 2^{16} are not supported"); in buildLookupTable()
152 long sz = 1L << nbits_in; in buildLookupTable()
171 long sign_bit = (1L << (nbits_in - 1)) & i; in buildLookupTable()
/dports/security/helib/HElib-1.3.1/include/helib/
H A DtableLookup.h88 long nbits_in, // number of precision bits
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-digital/include/gnuradio/digital/
H A Dheader_format_crc.h83 virtual bool parse(int nbits_in,
H A Dheader_format_default.h139 virtual bool parse(int nbits_in,
H A Dheader_format_base.h175 virtual bool parse(int nbits_in,
H A Dheader_format_ofdm.h87 virtual bool parse(int nbits_in,
/dports/math/petanque/arybo-release-1.1.0/arybo/lib/
H A Dmba_impl_petanque.py477 nbits_in = (len(P)-1).bit_length()
483 test = test_N(nbits_in, X, k)
494 nbits_in = (len(P)-1).bit_length()
496 test = test_N(nbits_in, X, k)
/dports/math/py-arybo/arybo-1.1.0/arybo/lib/
H A Dmba_impl_petanque.py477 nbits_in = (len(P)-1).bit_length()
483 test = test_N(nbits_in, X, k)
494 nbits_in = (len(P)-1).bit_length()
496 test = test_N(nbits_in, X, k)
/dports/biology/iolib/io_lib-io_lib-1-14-10/io_lib/
H A Ddeflate_interlaced.c2024 int nbits_in = 0, nbits_out = 0; in output_code_set() local
2031 nbits_in += 8*codes[i].freq; in output_code_set()
2055 (double)nbits_out/nbits_in); in output_code_set()
H A Dcompression.c2244 int nbits_in = 0, nbits_out = 0; in output_code_set() local
2251 nbits_in += 8*codes[i].freq; in output_code_set()
2275 (double)nbits_out/nbits_in); in output_code_set()
/dports/math/py-jax/jax-0.2.9/jax/_src/numpy/
H A Dlax_numpy.py5052 nbits_in = 8 * arr_dtype.itemsize
5054 if nbits_in == nbits_out:
5058 if nbits_out > nbits_in and (shape(arr)[-1] * nbits_in) % nbits_out != 0:
5062 if nbits_in not in byte_dtypes:
5066 dt_in = byte_dtypes[nbits_in]
5069 if nbits_in < nbits_out:
5070 shifts = arange(0, nbits_out, nbits_in, dtype=dt_out)
5071 arr_bytes = arr_bytes.reshape(arr.shape[:-1] + (-1, nbits_out // nbits_in)).astype(dt_out)
5074 shifts = arange(0, nbits_in, nbits_out, dtype=dt_in)