Home
last modified time | relevance | path

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

12345678910>>...13

/NextBSD/contrib/ldns/compat/
HDsnprintf.c91 get_negsign(int negative, int plus, int space) in get_negsign() argument
93 if(negative) in get_negsign()
240 int zero, int negative, char* buf, int len) in print_num() argument
243 char s = get_negsign(negative, plus, space); in print_num()
300 int negative = (value < 0); in print_num_d() local
303 (unsigned int)(negative?-value:value)); in print_num_d()
305 plus, space, zero, negative, buf, len); in print_num_d()
315 int negative = (value < 0); in print_num_ld() local
318 (unsigned long)(negative?-value:value)); in print_num_ld()
320 plus, space, zero, negative, buf, len); in print_num_ld()
[all …]
/NextBSD/contrib/unbound/compat/
HDsnprintf.c92 get_negsign(int negative, int plus, int space) in get_negsign() argument
94 if(negative) in get_negsign()
241 int zero, int negative, char* buf, int len) in print_num() argument
244 char s = get_negsign(negative, plus, space); in print_num()
301 int negative = (value < 0); in print_num_d() local
304 (unsigned int)(negative?-value:value)); in print_num_d()
306 plus, space, zero, negative, buf, len); in print_num_d()
316 int negative = (value < 0); in print_num_ld() local
319 (unsigned long)(negative?-value:value)); in print_num_ld()
321 plus, space, zero, negative, buf, len); in print_num_ld()
[all …]
/NextBSD/contrib/gcc/config/sparc/
HDlb1spc.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 …]
/NextBSD/contrib/apr/strings/
HDapr_strings.c365 int negative; in apr_itoa() local
367 negative = 1; in apr_itoa()
371 negative = 0; in apr_itoa()
378 if (negative) { in apr_itoa()
389 int negative; in apr_ltoa() local
391 negative = 1; in apr_ltoa()
395 negative = 0; in apr_ltoa()
402 if (negative) { in apr_ltoa()
413 int negative; in apr_off_t_toa() local
415 negative = 1; in apr_off_t_toa()
[all …]
/NextBSD/contrib/compiler-rt/lib/builtins/sparc64/
HDdivsi3.S57 orcc %o1,%o0,%g0 ! are either %o0 or %o1 negative
186 ! remainder is negative
191 ! remainder is negative
201 ! remainder is negative
206 ! remainder is negative
221 ! remainder is negative
226 ! remainder is negative
236 ! remainder is negative
241 ! remainder is negative
261 ! remainder is negative
[all …]
HDmodsi3.S57 orcc %o1,%o0,%g0 ! are either %o0 or %o1 negative
186 ! remainder is negative
191 ! remainder is negative
201 ! remainder is negative
206 ! remainder is negative
221 ! remainder is negative
226 ! remainder is negative
236 ! remainder is negative
241 ! remainder is negative
261 ! remainder is negative
[all …]
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_printf.cc47 bool negative) { in AppendNumber() argument
50 RAW_CHECK(base == 10 || !negative); in AppendNumber()
51 RAW_CHECK(absolute_value || !negative); in AppendNumber()
54 if (negative && minimal_num_length) in AppendNumber()
56 if (negative && pad_with_zero) in AppendNumber()
77 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber()
94 bool negative = (num < 0); in AppendSignedDecimal() local
95 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10, in AppendSignedDecimal()
96 minimal_num_length, pad_with_zero, negative); in AppendSignedDecimal()
/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
HDtst.negorder.d.out1 Ordering of quantize() with some negative weights:
148 Ordering of lquantize() with some negative weights:
295 Ordering of sum() with some negative weights:
322 Ordering of max() with some negative weights:
349 Ordering of min() with some negative weights:
/NextBSD/contrib/groff/font/devlj4/generate/
HDwingdings.map116 -1 F08C u2776 # Dingbat negative circled digit one
117 -1 F08D u2777 # Dingbat negative circled digit two
118 -1 F08E u2778 # Dingbat negative circled digit three
119 -1 F08F u2779 # Dingbat negative circled digit four
120 -1 F090 u277A # Dingbat negative circled digit five
121 -1 F091 u277B # Dingbat negative circled digit six
122 -1 F092 u277C # Dingbat negative circled digit seven
123 -1 F093 u277D # Dingbat negative circled digit eight
124 -1 F094 u277E # Dingbat negative circled digit nine
125 -1 F095 u277F # Dingbat negative circled number ten
/NextBSD/crypto/heimdal/lib/asn1/
HDder_cmp.c94 if (p->negative != q->negative) in der_heim_integer_cmp()
95 return q->negative - p->negative; in der_heim_integer_cmp()
HDder_format.c45 data->negative = 0; in der_parse_hex_heim_integer()
50 data->negative = 1; in der_parse_hex_heim_integer()
97 if (data->negative) { in der_print_hex_heim_integer()
/NextBSD/sbin/mount/
HDgetmntopts.c59 int negative, len; in getmntopts() local
70 negative = 1; in getmntopts()
73 negative = 0; in getmntopts()
94 if (negative == m->m_inverse) in getmntopts()
/NextBSD/sbin/dhclient/
HDparse.c326 int negative = 0, tval, max; in convert_num() local
331 negative = 1; in convert_num()
371 if (negative) in convert_num()
379 negative ? "-" : "", val, max); in convert_num()
383 negative ? "-" : "", val, max); in convert_num()
387 negative ? "-" : "", val, max); in convert_num()
392 if (negative) in convert_num()
/NextBSD/contrib/groff/src/devices/xditview/
HDlex.c67 int negative = 0; in GetNumber() local
72 negative = 1; in GetNumber()
77 if (negative) in GetNumber()
/NextBSD/contrib/libxo/encoder/cbor/
HDenc_cbor.c216 int negative = 0; in cbor_content() local
219 negative = 1; in cbor_content()
228 *xbp->xb_curp = negative ? CBOR_NEGATIVE : CBOR_UNSIGNED; in cbor_content()
229 if (negative) in cbor_content()
231 cbor_encode_uint(xbp, ival, negative ? CBOR_NLIMIT : CBOR_ULIMIT); in cbor_content()
/NextBSD/contrib/groff/src/roff/troff/
HDnumber.cpp403 int negative = 0; in parse_term() local
411 negative = !negative; in parse_term()
440 if (negative) { in parse_term()
485 if (negative) { in parse_term()
643 if (negative) { in parse_term()
/NextBSD/crypto/openssl/doc/crypto/
HDBN_add.pod64 The result is rounded towards zero; thus if I<a> is negative, the
65 remainder will be zero or negative.
70 BN_nnmod() reduces I<a> modulo I<m> and places the non-negative
73 BN_mod_add() adds I<a> to I<b> modulo I<m> and places the non-negative
77 non-negative result in I<r>.
79 BN_mod_mul() multiplies I<a> by I<b> and finds the non-negative
HDBN_bn2bin.pod37 hexadecimal and decimal encoding of B<a> respectively. For negative
45 number is negative. BN_dec2bn() is the same using the decimal system.
48 with a leading '-' for negative numbers, to the B<BIO> or B<FILE>
54 the most significant bit signals a negative number (the representation
HDX509_verify_cert.pod23 return a negative code.
34 The negative return value from X509_verify_cert() can only occur if no
/NextBSD/lib/msun/tests/
HDnearbyint_test.c76 get_output(int testindex, int rmodeindex, int negative) in get_output() argument
80 if (negative) { /* swap downwards and upwards if input is negative */ in get_output()
89 return (negative ? -out : out); in get_output()
/NextBSD/contrib/ofed/management/doc/
HDlibibumad.txt131 umad_get_port() for details). Return non-negative portid handle (int) or
132 negative value on errors.
167 Return non-negative agent id number on success, and a negative value on errors.
194 umad_register() or umad_register_oui(). Returns 0 on success and negative
216 wait forever for the reply. Returns 0 on success and negative value on errors.
231 Return non negative receiving agentid on success and negative value on errors.
377 be queried by passing negative values.
/NextBSD/contrib/netbsd-tests/fs/tmpfs/
HDt_mount.sh84 atf_test_case negative
137 atf_add_test_case negative
/NextBSD/lib/libc/mips/gen/
HDldexp.S177 bge v1, zero, 1f # should result be negative?
196 bge v1, zero, 1f # is result negative?
211 bge v1, zero, 1f # should result be negative infinity?
212 neg.d $f0, $f0 # result is negative infinity
/NextBSD/contrib/netbsd-tests/bin/expr/
HDt_expr.sh175 atf_test_case negative
227 atf_add_test_case negative
/NextBSD/contrib/netbsd-tests/usr.bin/grep/
HDt_grep.sh150 atf_test_case negative
252 atf_add_test_case negative

12345678910>>...13