Home
last modified time | relevance | path

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

/xnu-11215/bsd/kern/
H A Dkern_newsysctl.c430 int smallValue; in sysctl_io_number() local
448 smallValue = (int)bigValue; in sysctl_io_number()
449 if ((long long)smallValue != bigValue) { in sysctl_io_number()
452 error = SYSCTL_OUT(req, &smallValue, sizeof(smallValue)); in sysctl_io_number()
470 error = SYSCTL_IN(req, &smallValue, sizeof(smallValue)); in sysctl_io_number()
472 *(long long *)pValue = (long long)smallValue; in sysctl_io_number()
478 smallValue = (int)bigValue; in sysctl_io_number()
479 if ((long long)smallValue != bigValue) { in sysctl_io_number()
482 *(int *)pValue = smallValue; in sysctl_io_number()