Home
last modified time | relevance | path

Searched refs:nums (Results 1 – 13 of 13) sorted by relevance

/freebsd-10-stable/lib/msun/tests/
Dctrig_test.c294 static const long double nums[] = { in test_axes() local
301 for (i = 0; i < sizeof(nums) / sizeof(nums[0]); i++) { in test_axes()
303 z = CMPLXL(nums[i], 0.0); in test_axes()
304 test_odd_tol(csinh, z, CMPLXL(sinh(nums[i]), 0), DBL_ULP()); in test_axes()
305 test_even_tol(ccosh, z, CMPLXL(cosh(nums[i]), 0), DBL_ULP()); in test_axes()
306 test_odd_tol(ctanh, z, CMPLXL(tanh(nums[i]), 0), DBL_ULP()); in test_axes()
307 test_odd_tol(csin, z, CMPLXL(sin(nums[i]), in test_axes()
308 copysign(0, cos(nums[i]))), DBL_ULP()); in test_axes()
309 test_even_tol(ccos, z, CMPLXL(cos(nums[i]), in test_axes()
310 -copysign(0, sin(nums[i]))), DBL_ULP()); in test_axes()
[all …]
Dinvctrig_test.c275 static const long double nums[] = { in test_axes() local
281 for (i = 0; i < sizeof(nums) / sizeof(nums[0]); i++) { in test_axes()
283 z = CMPLXL(nums[i], 0.0); in test_axes()
284 if (fabsl(nums[i]) <= 1) { in test_axes()
285 testall_tol(cacosh, z, CMPLXL(0.0, acos(nums[i])), 1); in test_axes()
286 testall_tol(cacos, z, CMPLXL(acosl(nums[i]), -0.0), 1); in test_axes()
287 testall_tol(casin, z, CMPLXL(asinl(nums[i]), 0.0), 1); in test_axes()
288 testall_tol(catanh, z, CMPLXL(atanh(nums[i]), 0.0), 1); in test_axes()
291 CMPLXL(acosh(fabsl(nums[i])), in test_axes()
292 (nums[i] < 0) ? pi : 0), 1); in test_axes()
[all …]
/freebsd-10-stable/usr.bin/sort/
Dbwstring.c329 size_t nums = src->len; in bwscpy() local
331 if (nums > dst->len) in bwscpy()
332 nums = dst->len; in bwscpy()
333 dst->len = nums; in bwscpy()
336 memcpy(dst->data.cstr, src->data.cstr, nums); in bwscpy()
340 SIZEOF_WCHAR_STRING(nums + 1)); in bwscpy()
344 return (nums); in bwscpy()
356 size_t nums = src->len; in bwsncpy() local
358 if (nums > dst->len) in bwsncpy()
359 nums = dst->len; in bwsncpy()
[all …]
/freebsd-10-stable/crypto/openssl/util/
Dmkdef.pl1097 (my $name, *nums, my @symbols) = @_;
1105 if (defined($nums{$s})) {
1107 (my $n, my $dummy) = split /\\/, $nums{$s};
1109 $nums{$s} = $n."\\".$i;
1117 my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1119 (my $n, my $i) = split /\\/, $nums{$sym};
1245 (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
1259 if (!defined($nums{$s})) {
1266 … STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($num…
1270 ($nn,$ni)=($nums{$s2} =~ /^(.*?)\\(.*)$/);
[all …]
/freebsd-10-stable/tools/regression/zfs/
Dmisc.sh280 for i in `nums $n $start`; do
289 for i in `nums $ndisks 0`; do
339 for i in `nums $n $start`; do
356 for i in `nums $nfiles 0`; do
373 for i in `nums $nnames 0`; do
395 nums() function
425 for i in `nums 64`; do
/freebsd-10-stable/contrib/atf/atf-c/detail/
Dmap_test.c286 int nums[10]; in ATF_TC_BODY() local
302 nums[i] = i + 1; in ATF_TC_BODY()
303 snprintf(keys[i], sizeof(keys[i]), "%d", nums[i]); in ATF_TC_BODY()
304 RE(atf_map_insert(&map, keys[i], &nums[i], false)); in ATF_TC_BODY()
327 int nums[10]; in ATF_TC_BODY() local
343 nums[i] = i + 1; in ATF_TC_BODY()
344 snprintf(keys[i], sizeof(keys[i]), "%d", nums[i]); in ATF_TC_BODY()
345 RE(atf_map_insert(&map, keys[i], &nums[i], false)); in ATF_TC_BODY()
Dlist_test.c272 int nums[10]; in ATF_TC_BODY() local
288 nums[i] = i + 1; in ATF_TC_BODY()
289 RE(atf_list_append(&list, &nums[i], false)); in ATF_TC_BODY()
311 int nums[10]; in ATF_TC_BODY() local
327 nums[i] = i + 1; in ATF_TC_BODY()
328 RE(atf_list_append(&list, &nums[i], false)); in ATF_TC_BODY()
/freebsd-10-stable/usr.bin/tip/tip/
Dcmds.c736 int nums[3]; in prtime() local
739 nums[i] = (int)(a % quant[i]); in prtime()
744 if (nums[i] || (i == 0 && nums[1] == 0 && nums[2] == 0)) in prtime()
745 printf("%d %s%c ", nums[i], sep[i], in prtime()
746 nums[i] == 1 ? '\0' : 's'); in prtime()
/freebsd-10-stable/contrib/file/magic/Magdir/
Dsequent22 # Symmetry magic nums will not be reached if DOS COM comes before them;
/freebsd-10-stable/contrib/binutils/gas/
Dread.c4118 LITTLENUM_TYPE *nums; in emit_expr() local
4155 nums = generic_bignum + size / CHARS_PER_LITTLENUM; in emit_expr()
4158 --nums; in emit_expr()
4159 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); in emit_expr()
4166 nums = generic_bignum; in emit_expr()
4169 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); in emit_expr()
4170 ++nums; in emit_expr()
/freebsd-10-stable/usr.bin/m4/TEST/
Dtest.m4108 # include a square_root function for fixed nums
/freebsd-10-stable/contrib/gdb/gdb/doc/
Dgdb.texinfo5981 @item delete mem @var{nums}@dots{}
5982 Remove memory regions @var{nums}@dots{}.
5985 @item disable mem @var{nums}@dots{}
5986 Disable memory regions @var{nums}@dots{}.
5991 @item enable mem @var{nums}@dots{}
5992 Enable memory regions @var{nums}@dots{}.
/freebsd-10-stable/contrib/binutils/gas/po/
Dgas.pot9407 msgid "base register nums are over 3 bit"