Lines Matching defs:major
6052 "major($module, device, /)\n"
6055 "Extracts a device major number from a raw device number.");
6058 {"major", (PyCFunction)os_major, METH_O, os_major__doc__},
6124 "makedev($module, major, minor, /)\n"
6127 "Composes a raw device number from the major and minor device numbers.");
6133 os_makedev_impl(PyObject *module, int major, int minor);
6139 int major;
6146 major = _PyLong_AsInt(args[0]);
6147 if (major == -1 && PyErr_Occurred()) {
6154 _return_value = os_makedev_impl(module, major, minor);