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

/freebsd-11.0-release/contrib/gperf/src/
H A Doptions.cc415 int curr_value; local
416 for (curr_value = 0; isdigit (static_cast<unsigned char>(*_str)); _str++)
417 curr_value = curr_value * 10 + (*_str - '0');
431 if (!(_range_upper_bound > curr_value && _range_upper_bound <= _high_bound))
433 _range_curr_value = curr_value;
437 if (!(curr_value >= _low_bound && curr_value <= _high_bound))
439 return curr_value;
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc1626 INTERCEPTOR(int, getitimer, int which, void *curr_value) {
1628 COMMON_INTERCEPTOR_ENTER(ctx, getitimer, which, curr_value);
1632 int res = REAL(getitimer)(which, curr_value);
1633 if (!res && curr_value) {
1634 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, curr_value, struct_itimerval_sz);
5027 INTERCEPTOR(int, timerfd_gettime, int fd, void *curr_value) {
5029 COMMON_INTERCEPTOR_ENTER(ctx, timerfd_gettime, fd, curr_value);
5030 int res = REAL(timerfd_gettime)(fd, curr_value);
5031 if (res != -1 && curr_value)
5032 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, curr_value, struct_itimerspec_s
[all...]

Completed in 43 milliseconds