Lines Matching defs:length
71 "digest($self, /, length)\n"
80 EVPXOF_digest_impl(EVPobject *self, Py_ssize_t length);
86 static const char * const _keywords[] = {"length", NULL};
89 Py_ssize_t length;
105 length = ival;
107 return_value = EVPXOF_digest_impl(self, length);
118 "hexdigest($self, /, length)\n"
127 EVPXOF_hexdigest_impl(EVPobject *self, Py_ssize_t length);
133 static const char * const _keywords[] = {"length", NULL};
136 Py_ssize_t length;
152 length = ival;
154 return_value = EVPXOF_hexdigest_impl(self, length);