Home
last modified time | relevance | path

Searched refs:n_bit (Results 1 – 25 of 115) sorted by relevance

12345

/dports/emulators/gxemul/gxemul-0.6.3/src/cpus/
H A Dgenerate_m88k_bcnd.c36 if (n_bit) in print_function_name()
70 void bcnd(int samepage, int n_bit, int m5) in bcnd() argument
72 if (samepage && n_bit) in bcnd()
80 if (!n_bit) { in bcnd()
137 int samepage, n_bit, m5; in main() local
142 for (n_bit=0; n_bit<=1; n_bit++) in main()
146 bcnd(samepage, n_bit, m5); in main()
153 for (n_bit=0; n_bit<=1; n_bit++) in main()
155 if (m5 || n_bit || samepage) in main()
160 if (samepage && n_bit) in main()
[all …]
/dports/devel/libsimdpp/libsimdpp-2.1-400-g9dac213d/simdpp/core/
H A Di_div_p.h56 uint8x16 n_bit; in div_p()
60 n_bit = bit_and(num, bit_mask); in div_p()
61 n_bit = shift_r((uint16x8)n_bit, bit); in div_p()
62 r = bit_or(r, n_bit); in div_p()
106 uint16x8 n_bit; in div_p()
109 n_bit = bit_and(num, bit_mask); in div_p()
110 n_bit = shift_r(n_bit, bit); in div_p()
111 r = bit_or(r, n_bit); in div_p()
/dports/biology/rainbow/rainbow_2.0.4/
H A Dbitvec.h39 uint64_t n_bit; member
45 static inline BitVec* init_bitvec(uint64_t n_bit){ in init_bitvec() argument
47 if(n_bit == 0) n_bit = 64 * 8; in init_bitvec()
49 bitv->n_bit = 0; in init_bitvec()
50 bitv->n_cap = (((n_bit + 63) / 64) + 7) / 8 * 64 * 8; in init_bitvec()
57 static inline void clear_bitvec(BitVec *bitv){ bitv->n_bit = 0; } in clear_bitvec()
72 if(bitv->n_bit + num < bitv->n_cap) return; in encap_bitvec()
73 while(bitv->n_bit + num >= bitv->n_cap){ in encap_bitvec()
79 memset(((void*)bitv->bits) + bitv->n_bit / 8, 0, (bitv->n_cap - bitv->n_bit) / 8); in encap_bitvec()
82 …d one2bitvec(BitVec *bitv){ encap_bitvec(bitv, 1); one_bitvec(bitv, bitv->n_bit); bitv->n_bit ++; } in one2bitvec()
[all …]
/dports/math/cppad/CppAD-20210000.8/test_more/general/
H A Dsparse_jacobian.cpp527 vector< AD<double> > x(n_bit); in multiple_of_n_bit()
528 vector< AD<double> > y(n_bit); in multiple_of_n_bit()
532 for(i = 0; i < n_bit; i++) in multiple_of_n_bit()
533 y[i] = x[n_bit - i - 1]; in multiple_of_n_bit()
537 vector<bool> r(n_bit * n_bit); in multiple_of_n_bit()
538 vector<bool> s(n_bit * n_bit); in multiple_of_n_bit()
539 for(i = 0; i < n_bit; i++) in multiple_of_n_bit()
540 { for(j = 0; j < n_bit; j++) in multiple_of_n_bit()
543 s = f.ForSparseJac(n_bit, r); in multiple_of_n_bit()
546 for(i = 0; i < n_bit; i++) in multiple_of_n_bit()
[all …]
/dports/lang/smalltalk/smalltalk-3.2.5/libgst/
H A Dgenbc-decl.y323 int n_bit = curr_bit_offset % 8; in extraction_code() local
326 if (n_bit + bits <= 8) in extraction_code()
328 int rshift = 8 - (n_bit + bits); in extraction_code()
332 if (n_bit && rshift) in extraction_code()
338 if (n_bit) in extraction_code()
351 n_bit = 0; in extraction_code()
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_dpi_result_type.v283 int n_bit = 0; register
285 $display("e_bit %1d", n_bit);
286 e_bit = n_bit[0];
287 n_bit++;
/dports/biology/gemma/GEMMA-0.98.3/src/
H A Dprdt.cpp323 size_t n_bit, n_miss, ci_total, ci_test, n_train_nomiss; in AnalyzePlink() local
330 n_bit = indicator_idv.size() / 4; in AnalyzePlink()
332 n_bit = indicator_idv.size() / 4 + 1; in AnalyzePlink()
357 infile.seekg(t * n_bit + 3); in AnalyzePlink()
366 for (size_t i = 0; i < n_bit; ++i) { in AnalyzePlink()
372 if ((i == (n_bit - 1)) && ci_total == indicator_idv.size()) { in AnalyzePlink()
H A Dgemma_io.cpp902 size_t n_bit; in ReadFile_bed() local
904 n_bit = ni_total / 4; in ReadFile_bed()
1108 n_bit = ni_total / 4; in Plink_ReadOneSNP()
1602 int n_bit; in PlinkKin() local
1611 n_bit = ni_total / 4; in PlinkKin()
1956 int n_bit; in ReadFile_bed() local
1959 n_bit = ni_total / 4; in ReadFile_bed()
2092 int n_bit; in ReadFile_bed() local
2095 n_bit = ni_total / 4; in ReadFile_bed()
2966 int n_bit; in PlinkKin() local
[all …]
H A Dlm.cpp512 int n_bit, n_miss, ci_total, ci_test; in AnalyzePlink() local
537 n_bit = ni_total / 4; in AnalyzePlink()
539 n_bit = ni_total / 4 + 1; in AnalyzePlink()
557 infile.seekg(t * n_bit + 3); in AnalyzePlink()
564 for (int i = 0; i < n_bit; ++i) { in AnalyzePlink()
570 if ((i == (n_bit - 1)) && ci_total == (int)ni_total) { in AnalyzePlink()
/dports/biology/py-bx-python/bx-python-0.8.13/lib/bx/misc/
H A D_seekbzip2.pyx61 cdef int n_bit
65 n_bit = position % 8;
67 ## sys.stderr.write( "bit pos: %d\n" % n_bit )
74 get_bits( self.bd, n_bit )
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvideo_rtp_depacketizer_vp9.cc114 uint32_t n_bit; in ParseRefIndices() local
121 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
130 } while (n_bit); in ParseRefIndices()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/rtp_rtcp/source/
H A Dvideo_rtp_depacketizer_vp9.cc114 uint32_t n_bit; in ParseRefIndices() local
121 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
130 } while (n_bit); in ParseRefIndices()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvideo_rtp_depacketizer_vp9.cc114 uint32_t n_bit; in ParseRefIndices() local
121 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
130 } while (n_bit); in ParseRefIndices()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/rtp_rtcp/source/
H A Dvideo_rtp_depacketizer_vp9.cc114 uint32_t n_bit; in ParseRefIndices() local
121 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
130 } while (n_bit); in ParseRefIndices()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/iio/common/ms_sensors/
H A Dms_sensors_i2c.c501 unsigned int cnt, n_bit; in ms_sensors_tp_crc4() local
510 for (n_bit = 8; n_bit > 0; n_bit--) { in ms_sensors_tp_crc4()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/iio/common/ms_sensors/
H A Dms_sensors_i2c.c501 unsigned int cnt, n_bit; in ms_sensors_tp_crc4() local
510 for (n_bit = 8; n_bit > 0; n_bit--) { in ms_sensors_tp_crc4()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/iio/common/ms_sensors/
H A Dms_sensors_i2c.c501 unsigned int cnt, n_bit; in ms_sensors_tp_crc4() local
510 for (n_bit = 8; n_bit > 0; n_bit--) { in ms_sensors_tp_crc4()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc240 bool n_bit = !(i == vp9.num_ref_pics - 1); in WriteRefIndices() local
242 RETURN_FALSE_ON_ERROR(writer->WriteBits(n_bit ? 1 : 0, 1)); in WriteRefIndices()
381 uint32_t n_bit; in ParseRefIndices() local
388 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
397 } while (n_bit); in ParseRefIndices()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc244 bool n_bit = !(i == vp9.num_ref_pics - 1); in WriteRefIndices() local
246 RETURN_FALSE_ON_ERROR(writer->WriteBits(n_bit ? 1 : 0, 1)); in WriteRefIndices()
385 uint32_t n_bit; in ParseRefIndices() local
392 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
401 } while (n_bit); in ParseRefIndices()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc243 bool n_bit = !(i == vp9.num_ref_pics - 1); in WriteRefIndices() local
245 RETURN_FALSE_ON_ERROR(writer->WriteBits(n_bit ? 1 : 0, 1)); in WriteRefIndices()
384 uint32_t n_bit; in ParseRefIndices() local
391 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
400 } while (n_bit); in ParseRefIndices()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc240 bool n_bit = !(i == vp9.num_ref_pics - 1); in WriteRefIndices() local
242 RETURN_FALSE_ON_ERROR(writer->WriteBits(n_bit ? 1 : 0, 1)); in WriteRefIndices()
381 uint32_t n_bit; in ParseRefIndices() local
388 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
397 } while (n_bit); in ParseRefIndices()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp9.cc240 bool n_bit = !(i == vp9.num_ref_pics - 1); in WriteRefIndices() local
242 RETURN_FALSE_ON_ERROR(writer->WriteBits(n_bit ? 1 : 0, 1)); in WriteRefIndices()
381 uint32_t n_bit; in ParseRefIndices() local
388 RETURN_FALSE_ON_ERROR(parser->ReadBits(&n_bit, 1)); in ParseRefIndices()
397 } while (n_bit); in ParseRefIndices()
/dports/multimedia/gstreamer1-plugins-v4l2/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpvp9depay.c181 guint p_diff, n_bit; in gst_rtp_vp9_depay_process() local
187 n_bit = data[hdrsize] & 0x1; in gst_rtp_vp9_depay_process()
191 if (!n_bit) in gst_rtp_vp9_depay_process()
/dports/multimedia/gstreamer1-plugins-dv/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpvp9depay.c181 guint p_diff, n_bit; in gst_rtp_vp9_depay_process() local
187 n_bit = data[hdrsize] & 0x1; in gst_rtp_vp9_depay_process()
191 if (!n_bit) in gst_rtp_vp9_depay_process()
/dports/multimedia/gstreamer1-plugins-good/gst-plugins-good-1.16.2/gst/rtp/
H A Dgstrtpvp9depay.c181 guint p_diff, n_bit; in gst_rtp_vp9_depay_process() local
187 n_bit = data[hdrsize] & 0x1; in gst_rtp_vp9_depay_process()
191 if (!n_bit) in gst_rtp_vp9_depay_process()

12345