Home
last modified time | relevance | path

Searched refs:qn (Results 1 - 11 of 11) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dopus_rc.c234 uint32_t ff_opus_rc_dec_uint_tri(OpusRangeCoder *rc, int qn) in ff_opus_rc_dec_uint_tri() argument
238 total = ((qn>>1) + 1) * ((qn>>1) + 1); in ff_opus_rc_dec_uint_tri()
248 k = (2*(qn + 1) - ff_sqrt(8*(total - center - 1) + 1)) >> 1; in ff_opus_rc_dec_uint_tri()
249 low = total - ((qn + 1 - k) * (qn + 2 - k) >> 1); in ff_opus_rc_dec_uint_tri()
250 symbol = qn + 1 - k; in ff_opus_rc_dec_uint_tri()
258 void ff_opus_rc_enc_uint_tri(OpusRangeCoder *rc, uint32_t k, int qn) in ff_opus_rc_enc_uint_tri() argument
262 total = ((qn>>1) + 1) * ((qn>> in ff_opus_rc_enc_uint_tri()
[all...]
H A Dopus_pvq.c244 int qn, qb; in celt_compute_qn() local
253 qn = (qb < (1 << 3 >> 1)) ? 1 : ((ff_celt_qn_exp2[qb & 0x7] >> (14 - (qb >> 3))) + 1) >> 1 << 1; in celt_compute_qn()
254 return qn; in celt_compute_qn()
585 int qn; in quant_band_template() local
598 qn = (stereo && band >= f->intensity_stereo) ? 1 : in quant_band_template()
601 if (qn != 1) { in quant_band_template()
603 itheta = (itheta*qn + 8192) >> 14; in quant_band_template()
608 ff_opus_rc_enc_uint_step(rc, itheta, qn / 2); in quant_band_template()
610 ff_opus_rc_enc_uint(rc, itheta, qn + 1); in quant_band_template()
612 ff_opus_rc_enc_uint_tri(rc, itheta, qn); in quant_band_template()
[all...]
H A Dopus_rc.h94 uint32_t ff_opus_rc_dec_uint_tri(OpusRangeCoder *rc, int qn);
95 void ff_opus_rc_enc_uint_tri(OpusRangeCoder *rc, uint32_t k, int qn);
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/
H A Dassembler_arm.h664 void vaddqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
666 void vaddqs(QRegister qd, QRegister qn, QRegister qm);
672 void vsubqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
674 void vsubqs(QRegister qd, QRegister qn, QRegister qm);
680 void vmulqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
682 void vmulqs(QRegister qd, QRegister qn, QRegister qm);
684 void vshlqi(OperandSize sz, QRegister qd, QRegister qm, QRegister qn);
686 void vshlqu(OperandSize sz, QRegister qd, QRegister qm, QRegister qn);
700 void vminqs(QRegister qd, QRegister qn, QRegister qm);
701 void vmaxqs(QRegister qd, QRegister qn, QRegiste
[all...]
H A Dassembler_arm.cc1172 QRegister qd, QRegister qn, QRegister qm) {
1180 ((static_cast<int32_t>(qn * 2) & 0xf)*B16) |
1182 ((static_cast<int32_t>(qn * 2) >> 4)*B7) |
1210 QRegister qd, QRegister qn, QRegister qm) {
1211 EmitSIMDqqq(B11, sz, qd, qn, qm);
1215 void Assembler::vaddqs(QRegister qd, QRegister qn, QRegister qm) {
1216 EmitSIMDqqq(B11 | B10 | B8, kSWord, qd, qn, qm);
1220 void Assembler::vsubqi(OperandSize sz, QRegister qd, QRegister qn,
1222 EmitSIMDqqq(B24 | B11, sz, qd, qn, qm);
1225 void Assembler::vsubqs(QRegister qd, QRegister qn, QRegiste
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddigestauth.c223 const char *qn; in lookup_sub_value() local
239 qn = q2; in lookup_sub_value()
247 qn = q2 + 1; in lookup_sub_value()
278 if (NULL == qn) in lookup_sub_value()
280 ptr = strchr (qn, ','); in lookup_sub_value()
/third_party/vixl/test/aarch64/
H A Dtest-assembler-fp-aarch64.cc4917 double qn = RawbitsToDouble(0x7ffaaaaa11111111);
4919 VIXL_ASSERT(IsQuietNaN(qn));
4923 double qn_proc = qn;
4934 __ Fmov(d10, qn);
4964 uint64_t qn_raw = DoubleToRawbits(qn);
4972 ASSERT_EQUAL_FP64(qn, d11);
4993 float qn = RawbitsToFloat(0x7fea1111);
4995 VIXL_ASSERT(IsQuietNaN(qn));
4999 float qn_proc = qn;
5010 __ Fmov(s10, qn);
[all...]
H A Dtest-assembler-sve-aarch64.cc17222 double qn = RawbitsToDouble(0x7ffaaaaa22222222);
17228 VIXL_ASSERT(IsQuietNaN(qn));
17236 uint64_t qn_proc = DoubleToRawbits(qn);
17244 double zn_inputs_1[] = {qn, 0.0, 0.0, qm, qn, qm};
17245 double zm_inputs_1[] = {0.0, qn, qm, 0.0, qm, qn};
17269 double zn_inputs_3[] = {sn, qn, sn, sn, qn};
17270 double zm_inputs_3[] = {qm, sm, sm, qn, s
[all...]
/third_party/python/Lib/logging/
H A Dconfig.py239 qn = section["qualname"]
241 logger = logging.getLogger(qn)
242 if qn in existing:
243 i = existing.index(qn) + 1 # start with the entry after qn
244 prefixed = qn + "."
251 existing.remove(qn)
/third_party/libabigail/src/
H A Dabg-dwarf-reader.cc3908 string qn = klass->get_qualified_name(); in maybe_schedule_declaration_only_class_for_resolution() local
3910 declaration_only_classes().find(qn); in maybe_schedule_declaration_only_class_for_resolution()
3912 declaration_only_classes()[qn].push_back(klass); in maybe_schedule_declaration_only_class_for_resolution()
4167 string qn = enom->get_qualified_name(); in maybe_schedule_declaration_only_enum_for_resolution() local
4169 declaration_only_enums().find(qn); in maybe_schedule_declaration_only_enum_for_resolution()
4171 declaration_only_enums()[qn].push_back(enom); in maybe_schedule_declaration_only_enum_for_resolution()
H A Dabg-ir.cc4807 /// @param qn the resulting qualified name.
4814 decl_base::get_qualified_name(interned_string& qn, bool internal) const in get_qualified_name() argument
4815 {qn = get_qualified_name(internal);} in get_qualified_name()
11937 /// @param @param qn the fully qualified name of the typedef type to lookup.
11961 /// @param @param qn the fully qualified name of the qualified type to
11986 /// @param @param qn the fully qualified name of the pointer type to
12011 /// @param @param qn the fully qualified name of the reference type to
12036 /// @param @param qn the fully qualified name of the array type to
12061 /// @param @param qn the fully qualified name of the function type to
12086 /// @param @param qn th
12092 lookup_type_through_translation_units(const string& qn, const corpus& abi_corpus) lookup_type_through_translation_units() argument
16328 get_qualified_name(interned_string& qn, bool internal) const get_qualified_name() argument
16710 get_qualified_name(interned_string& qn, bool internal) const get_qualified_name() argument
17713 get_qualified_name(interned_string& qn, bool internal) const get_qualified_name() argument
[all...]

Completed in 64 milliseconds