/third_party/ffmpeg/libavcodec/ |
H A D | g722enc.c | 265 int ihigh; in g722_encode_trellis() local 268 /* We don't try to get any initial guess for ihigh via in g722_encode_trellis() 272 for (ihigh = 0; ihigh < 4; ihigh++) { in g722_encode_trellis() 278 ff_g722_high_inv_quant[ihigh] >> 10; in g722_encode_trellis() 282 STORE_NODE(1, ff_g722_update_high_predictor(&node->state, dhigh, ihigh), ihigh); in g722_encode_trellis() 325 int xlow, xhigh, ilow, ihigh; in encode_byte() local 327 ihigh in encode_byte() [all...] |
H A D | g722dec.c | 108 int ilow, ihigh, rlow, rhigh, dhigh; in g722_decode_frame() local 111 ihigh = get_bits(&gb, 2); in g722_decode_frame() 120 dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10; in g722_decode_frame() 123 ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh); in g722_decode_frame()
|
H A D | g722.c | 155 const int ihigh) in ff_g722_update_high_predictor() 161 high_log_factor_step[ihigh&1], 0, 22528); in ff_g722_update_high_predictor() 154 ff_g722_update_high_predictor(struct G722Band *band, const int dhigh, const int ihigh) ff_g722_update_high_predictor() argument
|
H A D | g722.h | 76 const int ihigh);
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_conversion_builder.h | 247 int64_t ilow, ihigh; in nir_get_clamp_limits() local 250 ihigh = INT64_MAX; in nir_get_clamp_limits() 253 ihigh = (1ll << (dest_bit_size - 1)) - 1; in nir_get_clamp_limits() 258 *high = nir_imm_intN_t(b, ihigh, src_bit_size); in nir_get_clamp_limits() 261 *high = nir_imm_intN_t(b, ihigh, src_bit_size); in nir_get_clamp_limits() 264 *high = nir_imm_floatN_t(b, ihigh, src_bit_size); in nir_get_clamp_limits()
|
/third_party/python/Objects/ |
H A D | listobject.c | 469 list_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in list_slice() argument 474 len = ihigh - ilow; in list_slice() 494 PyList_GetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in PyList_GetSlice() argument 506 if (ihigh < ilow) { in PyList_GetSlice() 507 ihigh = ilow; in PyList_GetSlice() 509 else if (ihigh > Py_SIZE(a)) { in PyList_GetSlice() 510 ihigh = Py_SIZE(a); in PyList_GetSlice() 512 return list_slice((PyListObject *)a, ilow, ihigh); in PyList_GetSlice() 627 /* a[ilow:ihigh] = v if v != NULL. 628 * del a[ilow:ihigh] i 634 list_ass_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) list_ass_slice() argument 740 PyList_SetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) PyList_SetSlice() argument [all...] |
H A D | tupleobject.c | 419 Py_ssize_t ihigh) in tupleslice() 423 if (ihigh > Py_SIZE(a)) in tupleslice() 424 ihigh = Py_SIZE(a); in tupleslice() 425 if (ihigh < ilow) in tupleslice() 426 ihigh = ilow; in tupleslice() 427 if (ilow == 0 && ihigh == Py_SIZE(a) && PyTuple_CheckExact(a)) { in tupleslice() 431 return _PyTuple_FromArray(a->ob_item + ilow, ihigh - ilow); in tupleslice() 418 tupleslice(PyTupleObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) tupleslice() argument
|
/third_party/python/Modules/ |
H A D | arraymodule.c | 819 array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in array_slice() argument 828 if (ihigh < 0) in array_slice() 829 ihigh = 0; in array_slice() 830 if (ihigh < ilow) in array_slice() 831 ihigh = ilow; in array_slice() 832 else if (ihigh > Py_SIZE(a)) in array_slice() 833 ihigh = Py_SIZE(a); in array_slice() 834 np = (arrayobject *) newarrayobject(state->ArrayType, ihigh - ilow, a->ob_descr); in array_slice() 837 if (ihigh > ilow) { in array_slice() 839 (ihigh in array_slice() 936 array_del_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh) array_del_slice() argument [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_monochrome.c | 77 t = tt + (1.f - tt) * ihigh; \ 97 const float ihigh = 1.f - s->high; in monochrome_slice8() local 136 const float ihigh = 1.f - s->high; in monochrome_slice16() local
|