Lines Matching defs:is_signed
254 int is_signed);
266 int is_signed = 0;
309 is_signed = PyObject_IsTrue(args[2]);
310 if (is_signed < 0) {
314 return_value = int_to_bytes_impl(self, length, byteorder, is_signed);
345 PyObject *byteorder, int is_signed);
357 int is_signed = 0;
384 is_signed = PyObject_IsTrue(args[2]);
385 if (is_signed < 0) {
389 return_value = int_from_bytes_impl(type, bytes_obj, byteorder, is_signed);