Searched refs:bigValue (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_newsysctl.c393 * value (req->oldptr != NULL), we copy the data (bigValue etc.) out,
399 sysctl_io_number(struct sysctl_req *req, long long bigValue, size_t valueSize, void *pValue, int *changed) { argument
416 smallValue = (int)bigValue;
417 if ((long long)smallValue != bigValue)
422 error = SYSCTL_OUT(req, &bigValue, valueSize);
440 error = SYSCTL_IN(req, &bigValue, sizeof(bigValue));
442 smallValue = (int)bigValue;
443 if ((long long)smallValue != bigValue)
/darwin-on-arm/xnu/bsd/sys/
H A Dsysctl.h274 int sysctl_io_number(struct sysctl_req *req, long long bigValue, size_t valueSize, void *pValue, int *changed);

Completed in 60 milliseconds