Lines Matching refs:args
95 _lzma_LZMADecompressor_decompress(Decompressor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
105 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
106 if (!args) {
109 if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
113 _PyArg_BadArgument("decompress", "argument 'data'", "contiguous buffer", args[0]);
121 PyObject *iobj = _PyNumber_Index(args[1]);
171 _lzma_LZMADecompressor___init__(PyObject *self, PyObject *args, PyObject *kwargs)
178 Py_ssize_t nargs = PyTuple_GET_SIZE(args);
184 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 3, 0, argsbuf);
260 _lzma__decode_filter_properties(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
269 if (!lzma_vli_converter(args[0], &filter_id)) {
272 if (PyObject_GetBuffer(args[1], &encoded_props, PyBUF_SIMPLE) != 0) {
276 _PyArg_BadArgument("_decode_filter_properties", "argument 2", "contiguous buffer", args[1]);