Home
last modified time | relevance | path

Searched refs:smallValue (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.1.9/bsd/kern/
H A Dkern_newsysctl.c431 int smallValue; in sysctl_io_number() local
449 smallValue = (int)bigValue; in sysctl_io_number()
450 if ((long long)smallValue != bigValue) { in sysctl_io_number()
453 error = SYSCTL_OUT(req, &smallValue, sizeof(smallValue)); in sysctl_io_number()
471 error = SYSCTL_IN(req, &smallValue, sizeof(smallValue)); in sysctl_io_number()
473 *(long long *)pValue = (long long)smallValue; in sysctl_io_number()
479 smallValue = (int)bigValue; in sysctl_io_number()
480 if ((long long)smallValue != bigValue) { in sysctl_io_number()
483 *(int *)pValue = smallValue; in sysctl_io_number()