Home
last modified time | relevance | path

Searched refs:ilow (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/python/src/
Dobject_protocol.cpp111 ssize_t ilow = 0, ihigh = ssize_t_max; in apply_slice() local
112 if (!_PyEval_SliceIndex(v, &ilow)) in apply_slice()
116 return PySequence_GetSlice(u, ilow, ihigh); in apply_slice()
141 ssize_t ilow = 0, ihigh = ssize_t_max; in assign_slice() local
142 if (!_PyEval_SliceIndex(v, &ilow)) in assign_slice()
147 return PySequence_DelSlice(u, ilow, ihigh); in assign_slice()
149 return PySequence_SetSlice(u, ilow, ihigh, x); in assign_slice()
/third_party/ffmpeg/libavcodec/
Dg722dec.c108 int ilow, ihigh, rlow, rhigh, dhigh; in g722_decode_frame() local
112 ilow = get_bits(&gb, 6 - skip); in g722_decode_frame()
115 rlow = av_clip_intp2((c->band[0].scale_factor * quantizer_table[ilow] >> 10) in g722_decode_frame()
118 ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip)); in g722_decode_frame()
Dg722.c143 void ff_g722_update_low_predictor(struct G722Band *band, const int ilow) in ff_g722_update_low_predictor() argument
146 band->scale_factor * ff_g722_low_inv_quant4[ilow] >> 10); in ff_g722_update_low_predictor()
150 low_log_factor_step[ilow], 0, 18432); in ff_g722_update_low_predictor()
Dg722enc.c214 int ilow = encode_low(&cur_node->state, xlow); in g722_encode_trellis() local
216 for (k = ilow - range; k <= ilow + range && k <= 63; k += 4) { in g722_encode_trellis()
329 int xlow, xhigh, ilow, ihigh; in encode_byte() local
332 ilow = encode_low (&c->band[0], xlow); in encode_byte()
335 ff_g722_update_low_predictor(&c->band[0], ilow >> 2); in encode_byte()
336 *dst = ihigh << 6 | ilow; in encode_byte()
Dg722.h73 void ff_g722_update_low_predictor(struct G722Band *band, const int ilow);
Dilbcdec.c635 int16_t ilow = index - interpolation_length; in create_augmented_vector() local
639 …vector_multiplication(&cbVec[ilow], buffer - index - interpolation_length, alpha, interpolation_le… in create_augmented_vector()
641 add_vector_and_shift(&cbVec[ilow], &cbVec[ilow], cbVecTmp, interpolation_length, 0); in create_augmented_vector()
/third_party/pixman/pixman/
Dpixman-filter.c271 double ilow, ihigh; in create_1d_filter() local
275 ilow = MAX (slow, rlow); in create_1d_filter()
278 c = integral (reconstruct, ilow, in create_1d_filter()
279 sample, 1.0 / scale, ilow - pos, in create_1d_filter()
280 ihigh - ilow); in create_1d_filter()
/third_party/python/Objects/
Dlistobject.c443 list_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in list_slice() argument
448 len = ihigh - ilow; in list_slice()
453 src = a->ob_item + ilow; in list_slice()
465 PyList_GetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in PyList_GetSlice() argument
471 if (ilow < 0) { in PyList_GetSlice()
472 ilow = 0; in PyList_GetSlice()
474 else if (ilow > Py_SIZE(a)) { in PyList_GetSlice()
475 ilow = Py_SIZE(a); in PyList_GetSlice()
477 if (ihigh < ilow) { in PyList_GetSlice()
478 ihigh = ilow; in PyList_GetSlice()
[all …]
Dtupleobject.c435 tupleslice(PyTupleObject *a, Py_ssize_t ilow, in tupleslice() argument
438 if (ilow < 0) in tupleslice()
439 ilow = 0; in tupleslice()
442 if (ihigh < ilow) in tupleslice()
443 ihigh = ilow; in tupleslice()
444 if (ilow == 0 && ihigh == Py_SIZE(a) && PyTuple_CheckExact(a)) { in tupleslice()
448 return _PyTuple_FromArray(a->ob_item + ilow, ihigh - ilow); in tupleslice()
/third_party/python/Modules/
Darraymodule.c799 array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in array_slice() argument
802 if (ilow < 0) in array_slice()
803 ilow = 0; in array_slice()
804 else if (ilow > Py_SIZE(a)) in array_slice()
805 ilow = Py_SIZE(a); in array_slice()
808 if (ihigh < ilow) in array_slice()
809 ihigh = ilow; in array_slice()
812 np = (arrayobject *) newarrayobject(&Arraytype, ihigh - ilow, a->ob_descr); in array_slice()
815 if (ihigh > ilow) { in array_slice()
816 memcpy(np->ob_item, a->ob_item + ilow * a->ob_descr->itemsize, in array_slice()
[all …]