Home
last modified time | relevance | path

Searched refs:negative (Results 1 – 25 of 536) sorted by relevance

12345678910>>...22

/openbsd-src/sys/dev/pci/drm/amd/display/dc/dml/calcs/
H A Dcustom_float.c32 bool *negative, in build_custom_float() argument
48 *negative = false; in build_custom_float()
57 *negative = format->sign; in build_custom_float()
60 *negative = false; in build_custom_float()
124 bool negative, in setup_custom_float() argument
174 if (negative && format->sign) in setup_custom_float()
189 bool negative; in convert_to_custom_float_format() local
192 value, format, &negative, &mantissa, &exponenta) && in convert_to_custom_float_format()
194 format, negative, mantissa, exponenta, result); in convert_to_custom_float_format()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dlb1spc.asm131 ! compute sign of result; if neither is negative, no problem
132 orcc %o1, %o0, %g0 ! either negative?
138 ! %o1 is definitely negative; %o0 might also be negative
139 bge ready_to_divide ! if %o0 not negative...
141 1: ! %o0 is negative, %o1 is nonnegative
275 ! remainder is negative
282 ! remainder is negative
293 ! remainder is negative
299 ! remainder is negative
315 ! remainder is negative
[all …]
/openbsd-src/gnu/gcc/gcc/config/sparc/
H A Dlb1spc.asm131 ! compute sign of result; if neither is negative, no problem
132 orcc %o1, %o0, %g0 ! either negative?
138 ! %o1 is definitely negative; %o0 might also be negative
139 bge ready_to_divide ! if %o0 not negative...
141 1: ! %o0 is negative, %o1 is nonnegative
275 ! remainder is negative
282 ! remainder is negative
293 ! remainder is negative
299 ! remainder is negative
315 ! remainder is negative
[all …]
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dextend.t37 like $@, qr/panic: .*negative count/, "test_EXTEND($offset, -1, $use_ss)";
51 like $@, qr/panic: .*negative count/,
57 like $@, qr/panic: .*negative count/,
62 like $@, qr/panic: .*negative count/,
/openbsd-src/sbin/mount/
H A Dgetmntopts.c69 int inverse, negative, needval, ret = 0; in getmntopt() local
80 negative = 1; in getmntopt()
83 negative = 0; in getmntopt()
102 if (negative == inverse) in getmntopt()
107 else if (negative == inverse) in getmntopt()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp43 bool negative, bool uppercase) { in AppendNumber() argument
46 RAW_CHECK(base == 10 || !negative); in AppendNumber()
47 RAW_CHECK(absolute_value || !negative); in AppendNumber()
50 if (negative && minimal_num_length) in AppendNumber()
52 if (negative && pad_with_zero) in AppendNumber()
73 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber()
91 bool negative = (num < 0); in AppendSignedDecimal() local
92 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10, in AppendSignedDecimal()
93 minimal_num_length, pad_with_zero, negative, in AppendSignedDecimal()
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Djavaop.h62 unsigned int negative : 1; member
72 unsigned int negative : 1; member
115 f.negative = (w & 0x80000000) >> 31; in WORD_TO_FLOAT()
146 d.negative = (hi & 0x80000000) >> 31; in WORDS_TO_DOUBLE()
/openbsd-src/sys/dev/pci/drm/amd/display/include/
H A Dfixed31_32.h226 bool negative = arg.value < 0; in dc_fixpt_shr() local
228 if (negative) in dc_fixpt_shr()
231 if (negative) in dc_fixpt_shr()
519 bool negative = arg.value < 0; in dc_fixpt_truncate() local
526 if (negative) in dc_fixpt_truncate()
529 if (negative) in dc_fixpt_truncate()
/openbsd-src/usr.sbin/dhcpd/
H A Dparse.c397 int negative = 0, tval, max; in convert_num() local
402 negative = 1; in convert_num()
443 if (negative) in convert_num()
451 negative ? "-" : "", val, max); in convert_num()
455 negative ? "-" : "", val, max); in convert_num()
459 negative ? "-" : "", val, max); in convert_num()
464 if (negative) { in convert_num()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h290 bool negative() const { return CapExpr.getInt(); } in negative() function
297 return (negative() == other.negative()) && in equals()
302 return (negative() == other.negative()) && in matches()
311 return (negative() == other.negative()) && in partiallyMatches()
316 if (negative() || sexpr() == nullptr) in valueDecl()
326 if (negative()) in toString()
/openbsd-src/gnu/gcc/gcc/config/m88k/
H A Dconstraints.md9 "A non-negative 16-bit value."
19 "A non-negative value < 32."
34 "A negative value."
/openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2000-12-06-EncodingIdea.txt10 have it operate on two negative offsets based on the current register
20 they correspond to expressions like (x+y*z+p*q/ ...), so the negative
23 the negative sign is reduntant, so you would be storing small integers
/openbsd-src/regress/usr.bin/mandoc/roff/sp/
H A Dnegative.out_ascii4 sp-negative - negative vertical spacing
/openbsd-src/regress/lib/libm/msun/
H A Dnearbyint_test.c72 get_output(int testindex, int rmodeindex, int negative) in get_output() argument
76 if (negative) { /* swap downwards and upwards if input is negative */ in get_output()
85 return (negative ? -out : out); in get_output()
/openbsd-src/regress/usr.bin/mandoc/roff/nr/
H A Dincr.out_ascii13 Down in negative steps is up: -1 1 3 5
16 (negative) step size: 40 38 36
/openbsd-src/sys/lib/libkern/arch/alpha/
H A Ddivrem.m474 /* Compute sign of result. If either is negative, this is easy. */
77 blbc NEG, Ldoit /* neither negative? do it! */
85 srl A, WORDSIZE - 1, I /* is A negative? */
87 /* A is negative; flip it. */
93 srl B, WORDSIZE - 1, I /* is B negative? */
96 /* B is definitely negative, no matter how we got here. */
/openbsd-src/gnu/usr.bin/perl/dist/Time-HiRes/t/
H A Dsleep.t24 like $@, qr/::sleep\(-1\): negative time not invented yet/,
25 "negative time error";
H A Dutime.t236 print "# negative atime dies\n";
239 like $@, qr/::utime\(-4, 2\.22222\): negative time not invented yet/,
240 "negative time error";
243 print "# negative mtime dies;\n";
246 like $@, qr/::utime\(1.11111, -4\): negative time not invented yet/,
247 "negative time error";
H A Dnanosleep.t16 like $@, qr/::nanosleep\(-5\): negative time not invented yet/,
17 "negative time error";
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dmagic684 tie my $negative, 'TieScalarCounter', -1;
685 $fetch = $negative;
687 is tied($negative)->{fetch}, 1;
688 is tied($negative)->{store}, 0;
689 is Devel::PPPort::magic_SvIV_nomg($negative), -1;
691 ok !Devel::PPPort::SVf_IVisUV($negative);
695 is tied($negative)->{fetch}, 1;
696 is tied($negative)->{store}, 0;
697 Devel::PPPort::magic_SvUV_nomg($negative);
699 ok !Devel::PPPort::SVf_IVisUV($negative);
[all …]
/openbsd-src/regress/usr.bin/seq/
H A Dseqtest.expected13 seq: needs negative decrement
19 seq: needs negative decrement
/openbsd-src/lib/libc/arch/alpha/gen/
H A Ddivrem.m499 /* Compute sign of result. If either is negative, this is easy. */
102 blbc NEG, Ldoit /* neither negative? do it! */
110 srl A, WORDSIZE - 1, I /* is A negative? */
112 /* A is negative; flip it. */
118 srl B, WORDSIZE - 1, I /* is B negative? */
121 /* B is definitely negative, no matter how we got here. */
/openbsd-src/gnu/usr.bin/perl/t/lib/croak/
H A Dregcomp90 # NAME \K not permitted in negative lookahead
95 # NAME \K not permitted in negative lookahead (alpha)
112 # NAME \K not permitted in negative lookbehind
117 # NAME \K not permitted in negative lookbehind (alpha)
128 # NAME \K nesting in lookahead after negative lookahead
133 # NAME \K nesting in lookahead in negative lookahead
158 # NAME \K nesting in negative lookbehind after lookahead
/openbsd-src/lib/libc/arch/sparc64/gen/
H A Ddivrem.m4113 ! remainder is negative
126 ` ! compute sign of result; if neither is negative, no problem
127 orcc divisor, dividend, %g0 ! either negative?
135 ! divisor is definitely negative; dividend might also be negative
136 bge 2f ! if dividend not negative...
138 1: ! dividend is negative, divisor is nonnegative
/openbsd-src/regress/usr.bin/mandoc/roff/cond/
H A Dnumeric.out_ascii9 negative number: plain (f) negated (t)
25 with negative numbers: mm (t) mp (t) pm (t)

12345678910>>...22