Lines Matching defs:fastargs
166 PyObject * const *fastargs;
174 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 5, 5, 0, argsbuf);
175 if (!fastargs) {
178 kind = _PyLong_AsInt(fastargs[0]);
182 value = _PyLong_AsInt(fastargs[1]);
186 maxvalue = _PyLong_AsInt(fastargs[2]);
190 if (!PyUnicode_Check(fastargs[3])) {
191 _PyArg_BadArgument("SemLock", "argument 'name'", "str", fastargs[3]);
195 name = PyUnicode_AsUTF8AndSize(fastargs[3], &name_length);
203 unlink = _PyLong_AsInt(fastargs[4]);