Lines Matching defs:tmpout
1657 int8_t tmpout;
1664 tmpout = *(int8_t *)arg1;
1666 tmpout = arg2;
1667 error = SYSCTL_OUT(req, &tmpout, sizeof(tmpout));
1675 error = SYSCTL_IN(req, arg1, sizeof(tmpout));
1689 int16_t tmpout;
1696 tmpout = *(int16_t *)arg1;
1698 tmpout = arg2;
1699 error = SYSCTL_OUT(req, &tmpout, sizeof(tmpout));
1707 error = SYSCTL_IN(req, arg1, sizeof(tmpout));
1721 int32_t tmpout;
1728 tmpout = *(int32_t *)arg1;
1730 tmpout = arg2;
1731 error = SYSCTL_OUT(req, &tmpout, sizeof(tmpout));
1739 error = SYSCTL_IN(req, arg1, sizeof(tmpout));
1753 int tmpout, error = 0;
1759 tmpout = *(int *)arg1;
1761 tmpout = arg2;
1762 error = SYSCTL_OUT(req, &tmpout, sizeof(int));
1856 uint64_t tmpout;
1862 tmpout = *(uint64_t *)arg1;
1864 tmpout = arg2;
1865 error = SYSCTL_OUT(req, &tmpout, sizeof(uint64_t));