Lines Matching defs:fastargs
28 PyObject * const *fastargs;
45 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1, 0, argsbuf);
46 if (!fastargs) {
53 data = fastargs[0];
58 if (fastargs[1]) {
59 digest_size = _PyLong_AsInt(fastargs[1]);
67 if (fastargs[2]) {
68 if (PyObject_GetBuffer(fastargs[2], &key, PyBUF_SIMPLE) != 0) {
72 _PyArg_BadArgument("blake2b", "argument 'key'", "contiguous buffer", fastargs[2]);
79 if (fastargs[3]) {
80 if (PyObject_GetBuffer(fastargs[3], &salt, PyBUF_SIMPLE) != 0) {
84 _PyArg_BadArgument("blake2b", "argument 'salt'", "contiguous buffer", fastargs[3]);
91 if (fastargs[4]) {
92 if (PyObject_GetBuffer(fastargs[4], &person, PyBUF_SIMPLE) != 0) {
96 _PyArg_BadArgument("blake2b", "argument 'person'", "contiguous buffer", fastargs[4]);
103 if (fastargs[5]) {
104 fanout = _PyLong_AsInt(fastargs[5]);
112 if (fastargs[6]) {
113 depth = _PyLong_AsInt(fastargs[6]);
121 if (fastargs[7]) {
122 if (!_PyLong_UnsignedLong_Converter(fastargs[7], &leaf_size)) {
129 if (fastargs[8]) {
130 if (!_PyLong_UnsignedLongLong_Converter(fastargs[8], &node_offset)) {
137 if (fastargs[9]) {
138 node_depth = _PyLong_AsInt(fastargs[9]);
146 if (fastargs[10]) {
147 inner_size = _PyLong_AsInt(fastargs[10]);
155 if (fastargs[11]) {
156 last_node = PyObject_IsTrue(fastargs[11]);
164 usedforsecurity = PyObject_IsTrue(fastargs[12]);