Searched refs:maxpos (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | modsupport.h | 89 int minpos, int maxpos, int minkw, 96 int minpos, int maxpos, int minkw, 99 #define _PyArg_UnpackKeywords(args, nargs, kwargs, kwnames, parser, minpos, maxpos, minkw, buf) \ 101 (minpos) <= (nargs) && (nargs) <= (maxpos) && args != NULL) ? (args) : \ 103 (minpos), (maxpos), (minkw), (buf)))
|
/third_party/python/Python/ |
H A D | getargs.c | 2297 int minpos, int maxpos, int minkw, in _PyArg_UnpackKeywords() 2303 int reqlimit = minkw ? maxpos + minkw : minpos; in _PyArg_UnpackKeywords() 2344 if (nkwargs == 0 && minkw == 0 && minpos <= nargs && nargs <= maxpos) { in _PyArg_UnpackKeywords() 2361 if (nargs > maxpos) { in _PyArg_UnpackKeywords() 2362 if (maxpos == 0) { in _PyArg_UnpackKeywords() 2373 (minpos < maxpos) ? "at most" : "exactly", in _PyArg_UnpackKeywords() 2374 maxpos, in _PyArg_UnpackKeywords() 2375 (maxpos == 1) ? "" : "s", in _PyArg_UnpackKeywords() 2386 minposonly < maxpos ? "at least" : "exactly", in _PyArg_UnpackKeywords() 2424 else if (i < minpos || (maxpos < in _PyArg_UnpackKeywords() 2294 _PyArg_UnpackKeywords(PyObject *const *args, Py_ssize_t nargs, PyObject *kwargs, PyObject *kwnames, struct _PyArg_Parser *parser, int minpos, int maxpos, int minkw, PyObject **buf) _PyArg_UnpackKeywords() argument 2469 _PyArg_UnpackKeywordsWithVararg(PyObject *const *args, Py_ssize_t nargs, PyObject *kwargs, PyObject *kwnames, struct _PyArg_Parser *parser, int minpos, int maxpos, int minkw, int vararg, PyObject **buf) _PyArg_UnpackKeywordsWithVararg() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | scpr3.c | 137 if (m->maxpos >= index) in add_symbol() 138 m->maxpos++; in add_symbol() 150 uint32_t q, g, maxpos, d, e = *c, totfr = *c; in decode_adaptive45() local 155 maxpos = m->maxpos; in decode_adaptive45() 157 *c = m->freqs[maxpos]; in decode_adaptive45() 158 m->freqs[maxpos] += 4096 - e >> d; in decode_adaptive45() 169 m->freqs[maxpos] = *c; in decode_adaptive45() 180 m->freqs[maxpos] = *c; in decode_adaptive45() 183 if ((q != maxpos) in decode_adaptive45() [all...] |
H A D | scpr3.h | 31 uint8_t maxpos; member
|
/third_party/ffmpeg/libavformat/ |
H A D | avidec.c | 455 int64_t maxpos = 0; in calculate_bitrate() local 466 maxpos = FFMAX(maxpos, sti->index_entries[j-1].pos); in calculate_bitrate() 469 if (maxpos < av_rescale(avi->io_fsize, 9, 10)) // index does not cover the whole file in calculate_bitrate() 471 if (lensum*9/10 > maxpos || lensum < maxpos*9/10) // frame sum and filesize mismatch in calculate_bitrate()
|
H A D | nutdec.c | 878 static int read_sm_data(AVFormatContext *s, AVIOContext *bc, AVPacket *pkt, int is_meta, int64_t maxpos) in read_sm_data() argument 893 if (avio_tell(bc) >= maxpos) in read_sm_data() 919 if (value_len < 0 || value_len >= maxpos - avio_tell(bc)) in read_sm_data() 999 if (avio_tell(bc) >= maxpos) in read_sm_data()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
Completed in 33 milliseconds