Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/refquota/
H A Drefquota_008_neg.ksh42 oldvalue=$(get_tunable SPA_ASIZE_INFLATION)
45 set_tunable32 SPA_ASIZE_INFLATION $oldvalue
/f-stack/app/redis-5.0.5/src/
H A Dt_string.c340 long long value, oldvalue; in incrDecrCommand() local
347 oldvalue = value; in incrDecrCommand()
348 if ((incr < 0 && oldvalue < 0 && incr < (LLONG_MIN-oldvalue)) || in incrDecrCommand()
349 (incr > 0 && oldvalue > 0 && incr > (LLONG_MAX-oldvalue))) { in incrDecrCommand()
H A Dt_hash.c560 long long value, incr, oldvalue; in hincrbyCommand() local
579 oldvalue = value; in hincrbyCommand()
580 if ((incr < 0 && oldvalue < 0 && incr < (LLONG_MIN-oldvalue)) || in hincrbyCommand()
581 (incr > 0 && oldvalue > 0 && incr > (LLONG_MAX-oldvalue))) { in hincrbyCommand()