Home
last modified time | relevance | path

Searched refs:ihigh (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/libs/python/src/
Dobject_protocol.cpp111 ssize_t ilow = 0, ihigh = ssize_t_max; in apply_slice() local
114 if (!_PyEval_SliceIndex(w, &ihigh)) 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
144 if (!_PyEval_SliceIndex(w, &ihigh)) 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/
Dg722enc.c262 int ihigh; in g722_encode_trellis() local
269 for (ihigh = 0; ihigh < 4; ihigh++) { in g722_encode_trellis()
275 ff_g722_high_inv_quant[ihigh] >> 10; in g722_encode_trellis()
279 STORE_NODE(1, ff_g722_update_high_predictor(&node->state, dhigh, ihigh), ihigh); in g722_encode_trellis()
322 int xlow, xhigh, ilow, ihigh; in encode_byte() local
324 ihigh = encode_high(&c->band[1], xhigh); in encode_byte()
327 ff_g722_high_inv_quant[ihigh] >> 10, ihigh); in encode_byte()
329 *dst = ihigh << 6 | ilow; in encode_byte()
Dg722dec.c108 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()
Dg722.c155 const int ihigh) in ff_g722_update_high_predictor() argument
161 high_log_factor_step[ihigh&1], 0, 22528); in ff_g722_update_high_predictor()
Dg722.h76 const int ihigh);
/third_party/mesa3d/src/compiler/nir/
Dnir_conversion_builder.h247 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/
Dlistobject.c457 list_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in list_slice() argument
462 len = ihigh - ilow; in list_slice()
482 PyList_GetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in PyList_GetSlice() argument
494 if (ihigh < ilow) { in PyList_GetSlice()
495 ihigh = ilow; in PyList_GetSlice()
497 else if (ihigh > Py_SIZE(a)) { in PyList_GetSlice()
498 ihigh = Py_SIZE(a); in PyList_GetSlice()
500 return list_slice((PyListObject *)a, ilow, ihigh); in PyList_GetSlice()
617 list_ass_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) in list_ass_slice() argument
645 result = list_ass_slice(a, ilow, ihigh, v); in list_ass_slice()
[all …]
Dtupleobject.c482 Py_ssize_t ihigh) in tupleslice() argument
486 if (ihigh > Py_SIZE(a)) in tupleslice()
487 ihigh = Py_SIZE(a); in tupleslice()
488 if (ihigh < ilow) in tupleslice()
489 ihigh = ilow; in tupleslice()
490 if (ilow == 0 && ihigh == Py_SIZE(a) && PyTuple_CheckExact(a)) { in tupleslice()
494 return _PyTuple_FromArray(a->ob_item + ilow, ihigh - ilow); in tupleslice()
/third_party/python/Modules/
Darraymodule.c815 array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh) in array_slice() argument
824 if (ihigh < 0) in array_slice()
825 ihigh = 0; in array_slice()
826 if (ihigh < ilow) in array_slice()
827 ihigh = ilow; in array_slice()
828 else if (ihigh > Py_SIZE(a)) in array_slice()
829 ihigh = Py_SIZE(a); in array_slice()
830 np = (arrayobject *) newarrayobject(state->ArrayType, ihigh - ilow, a->ob_descr); in array_slice()
833 if (ihigh > ilow) { in array_slice()
835 (ihigh-ilow) * a->ob_descr->itemsize); in array_slice()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/sponge/pme/
Dpme_common.cuh49 int ilow, ihigh; in Get_Beta() local
52 ihigh = 1; in Get_Beta()
58 ihigh++; in Get_Beta()
61 ihigh += 50; in Get_Beta()
63 for (ilow = 1; ilow < ihigh; ilow++) { in Get_Beta()
/third_party/pixman/pixman/
Dpixman-filter.c271 double ilow, ihigh; in create_1d_filter() local
276 ihigh = MIN (shigh, rhigh); in create_1d_filter()
280 ihigh - ilow); in create_1d_filter()
/third_party/ffmpeg/libavfilter/
Dvf_monochrome.c77 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