Lines Matching defs:negative
1697 // It returns a negative value if prefix_closed is false and a longer prefix is
3220 // negative value means an extended token, non-negative means a simple token.
3226 // wuffs_base__token__value_extension returns a negative value if the token was
3233 // wuffs_base__token__value_major returns a negative value if the token was not
3240 // wuffs_base__token__value_base_category returns a negative value if the token
4614 // this value be false: a false negative.
5246 // "+" for non-negative numbers: "+0" and "+12.3" instead of "0" and "12.3".
5494 // similar to Go's strconv.FormatFloat with a negative (i.e. non-sensical)
13254 // negative or be larger than num_digits, in which case the explicit digits are
13270 // negative is a sign bit. An HPD can distinguish positive and negative zero.
13281 bool negative;
13309 bool negative) {
13337 h->negative = negative;
13352 h->negative = false;
13373 h->negative = true;
13618 // h's negative bit is ignored: rounding -8.6 returns 9.
13676 // negative means right shift.
14047 // On success, it returns a non-negative int64_t such that the low 63 bits hold
14050 // On failure, it returns a negative value.
14252 bool negative = false;
14257 negative = true;
14326 (negative ? 0x8000000000000000 : 0));
14381 ((uint64_t)r) | (((uint64_t)(h->negative)) << 63));
14474 (h->negative ? 0x8000000000000000 : 0); // (1 << 63).
14484 uint64_t bits = h->negative ? 0x8000000000000000 : 0;
14501 uint64_t bits = h->negative ? 0xFFF0000000000000 : 0x7FF0000000000000;
14553 bool negative = (*p == '-');
14554 if (negative) {
14701 ret.value = negative ? -d : +d;
14722 ((uint64_t)r) | (((uint64_t)negative) << 63));
14785 size_t n = (h->negative ||
14809 if (h->negative) {
14861 size_t n = (h->negative ||
14881 if (h->negative) {
15151 bool negative = false;
15156 negative = true;
15169 } else if (negative) {