Searched refs:nums (Results 1 - 9 of 9) sorted by relevance

/freebsd-10-stable/lib/msun/tests/
H A Dctrig_test.c294 static const long double nums[] = { local
301 for (i = 0; i < sizeof(nums) / sizeof(nums[0]); i++) {
303 z = CMPLXL(nums[i], 0.0);
304 test_odd_tol(csinh, z, CMPLXL(sinh(nums[i]), 0), DBL_ULP());
305 test_even_tol(ccosh, z, CMPLXL(cosh(nums[i]), 0), DBL_ULP());
306 test_odd_tol(ctanh, z, CMPLXL(tanh(nums[i]), 0), DBL_ULP());
307 test_odd_tol(csin, z, CMPLXL(sin(nums[i]),
308 copysign(0, cos(nums[i]))), DBL_ULP());
309 test_even_tol(ccos, z, CMPLXL(cos(nums[
[all...]
H A Dinvctrig_test.c275 static const long double nums[] = { local
281 for (i = 0; i < sizeof(nums) / sizeof(nums[0]); i++) {
283 z = CMPLXL(nums[i], 0.0);
284 if (fabsl(nums[i]) <= 1) {
285 testall_tol(cacosh, z, CMPLXL(0.0, acos(nums[i])), 1);
286 testall_tol(cacos, z, CMPLXL(acosl(nums[i]), -0.0), 1);
287 testall_tol(casin, z, CMPLXL(asinl(nums[i]), 0.0), 1);
288 testall_tol(catanh, z, CMPLXL(atanh(nums[i]), 0.0), 1);
291 CMPLXL(acosh(fabsl(nums[
[all...]
/freebsd-10-stable/usr.bin/sort/
H A Dbwstring.c329 size_t nums = src->len; local
331 if (nums > dst->len)
332 nums = dst->len;
333 dst->len = nums;
336 memcpy(dst->data.cstr, src->data.cstr, nums);
340 SIZEOF_WCHAR_STRING(nums + 1));
344 return (nums);
356 size_t nums = src->len; local
358 if (nums > dst->len)
359 nums
392 size_t nums = src->len - offset; local
446 int nums; local
454 int nums; local
[all...]
/freebsd-10-stable/crypto/openssl/util/
H A 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{
[all...]
/freebsd-10-stable/tools/regression/zfs/
H A 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/
H A Dlist_test.c272 int nums[10]; local
288 nums[i] = i + 1;
289 RE(atf_list_append(&list, &nums[i], false));
311 int nums[10]; local
327 nums[i] = i + 1;
328 RE(atf_list_append(&list, &nums[i], false));
H A Dmap_test.c286 int nums[10]; local
302 nums[i] = i + 1;
303 snprintf(keys[i], sizeof(keys[i]), "%d", nums[i]);
304 RE(atf_map_insert(&map, keys[i], &nums[i], false));
327 int nums[10]; local
343 nums[i] = i + 1;
344 snprintf(keys[i], sizeof(keys[i]), "%d", nums[i]);
345 RE(atf_map_insert(&map, keys[i], &nums[i], false));
/freebsd-10-stable/usr.bin/tip/tip/
H A Dcmds.c736 int nums[3]; local
739 nums[i] = (int)(a % quant[i]);
744 if (nums[i] || (i == 0 && nums[1] == 0 && nums[2] == 0))
745 printf("%d %s%c ", nums[i], sep[i],
746 nums[i] == 1 ? '\0' : 's');
/freebsd-10-stable/contrib/binutils/gas/
H A Dread.c4123 LITTLENUM_TYPE *nums;
4160 nums = generic_bignum + size / CHARS_PER_LITTLENUM;
4163 --nums;
4164 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
4171 nums = generic_bignum;
4174 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM);
4175 ++nums;
4118 LITTLENUM_TYPE *nums; local

Completed in 215 milliseconds