Searched refs:inf (Results 26 - 44 of 44) sorted by relevance

12

/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dnet.c116 grub_net_link_layer_resolve_check (struct grub_net_network_level_interface *inf, argument
124 entry = link_layer_find_entry (proto_addr, inf->card);
131 grub_net_link_layer_resolve (struct grub_net_network_level_interface *inf, argument
165 entry = link_layer_find_entry (proto_addr, inf->card);
174 err = grub_net_arp_send_request (inf, proto_addr);
177 err = grub_net_icmp6_send_request (inf, proto_addr);
187 entry = link_layer_find_entry (proto_addr, inf->card);
200 struct grub_net_network_level_interface *inf, *next; local
201 FOR_NET_NETWORK_LEVEL_INTERFACES_SAFE(inf, next)
202 if (inf
251 struct grub_net_network_level_interface *inf; local
1167 struct grub_net_network_level_interface *inf; local
1537 struct grub_net_network_level_interface *inf; local
[all...]
H A Dbootp.c355 struct grub_net_network_level_interface *inf; local
371 FOR_NET_NETWORK_LEVEL_INTERFACES(inf)
372 if (grub_memcmp (inf->name, card->name, grub_strlen (card->name)) == 0
373 && grub_memcmp (inf->name + grub_strlen (card->name),
376 grub_net_network_level_interface_unregister (inf);
/osnet-11/usr/src/lib/libc/i386/fp/
H A D_X_cplx_div.c61 } inf = { variable in typeref:union:__anon1284
118 if (ew >= 0x7fff) { /* w is inf or nan */
154 if (ez >= 0x7fff) { /* z is inf or nan */
160 r = inf.f;
/osnet-11/usr/src/lib/libc/sparc/fp/
H A D_D_cplx_div.c64 } inf = { variable in typeref:union:__anon1441
120 if (hw >= 0x7ff00000) { /* w is inf or nan */
171 if (hz >= 0x7ff00000) { /* z is inf or nan */
178 r = inf.d;
H A D_Q_cplx_div.c64 } inf = { variable in typeref:union:__anon1461
127 if (hw >= 0x7fff0000) { /* w is inf or nan */
161 if (hz >= 0x7fff0000) { /* z is inf or nan */
168 r = inf.q;
/osnet-11/usr/src/cmd/hal/utils/
H A Dacpi.c45 struct acpi_drv_output_info inf; local
51 bzero(&inf, sizeof (inf));
52 if ((ioctl(fd, ACPI_DRV_IOC_INFO, &inf) < 0) ||
53 (inf.nlev == 0)) {
68 inf.nlev);
/osnet-11/usr/src/lib/libc/port/fp/
H A Dpack_float.c80 int inf; local
84 inf = 1;
87 inf = 0;
90 inf = !sign;
93 inf = sign;
96 return (inf);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dpack.t195 my $inf = eval '2**10000';
198 unless defined $inf and $inf == $inf / 2 and $inf + 1 == $inf;
204 eval { $x = pack 'w', $inf };
905 eval { my @inf = unpack( 'c/1a', "\x03AAA\x02BB" ); };
908 eval { my @inf = unpack( 'c/*a', "\x03AAA\x02BB" ); };
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm7 # sign : +,-,NaN,+inf,-inf
72 return $self->binf($f->{sign}) if $f->{sign} =~ /^[+-]inf$/;
114 # TODO: trap NaN, inf
121 # TODO: trap NaN, inf
184 # handle inf and NAN cases:
187 # inf/inf => NaN
192 my $s = '+'; # '+inf/+123' or '-inf/
[all...]
H A DBigFloat.pm11 # sign : +,-,+inf,-inf, or "NaN" if not a number
41 $round_mode = 'even'; # one of 'even', 'odd', '+inf', '-inf', 'zero' or 'trunc'
136 # handle '+inf', '-inf' first
137 if ($wanted =~ /^[+-]?inf$/)
145 $self->{sign} = '+inf' if $self->{sign} eq 'inf';
199 # if downgrade, inf, Na
[all...]
H A DComplex.pm17 # We do want an arithmetic overflow, Inf INF inf Infinity:.
18 undef $Inf unless eval <<'EOE' and $Inf =~ /^inf(?:inity)?$/i;
24 undef $Inf unless eval <<'EOE' and $Inf =~ /^inf(?:inity)?$/i;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dbigrat.pm8 @EXPORT = qw( inf NaN );
146 $self->export_to_level(1,$self,@a); # export inf and NaN
149 sub inf () { Math::BigInt->binf(); } subroutine
209 The sign is either '+', '-', 'NaN', '+inf' or '-inf' and stored seperately.
212 numbers or as a result of 0/0. '+inf' and '-inf' represent plus respectively
213 minus infinity. You will get '+inf' when dividing a positive number by 0, and
214 '-inf' when dividing any negative number by 0.
H A Dbignum.pm7 @EXPORT = qw( inf NaN );
170 $self->export_to_level(1,$self,@a); # export inf and NaN
173 sub inf () { Math::BigInt->binf(); } subroutine
190 print inf * inf,"\n"; # prints inf
383 =item inf()
386 handle bareword C<inf> properly.
432 The sign is either '+', '-', 'NaN', '+inf' or '-inf' an
[all...]
H A Dbigint.pm8 @EXPORT = qw( inf NaN );
184 $self->export_to_level(1,$self,@a); # export inf and NaN
187 sub inf () { Math::BigInt->binf(); } subroutine
204 print inf + 42,"\n"; # inf
294 The sign is either '+', '-', 'NaN', '+inf' or '-inf' and stored seperately.
298 numbers or as a result of 0/0. '+inf' and '-inf' represent plus respectively
299 minus infinity. You will get '+inf' whe
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A DConstant.t679 my ($inf, $pound_bytes, $pound_utf8);
681 $inf = chr 0x221E;
696 {name=>$inf, type=>"PV", value=>'"Infinity"', macro=>1},
728 ($pound, $inf, $pound_bytes, $pound_utf8);
739 my ($pound, $inf, $pound_bytes, $pound_utf8) = map {eval "pack 'U*', $_"}
751 [$inf, 'Infinity', []],
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dnet.h477 grub_net_link_layer_resolve_check (struct grub_net_network_level_interface *inf,
480 grub_net_link_layer_resolve (struct grub_net_network_level_interface *inf,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
H A Dmbimbf.inc85 foreach (qw/odd even zero trunc +inf -inf/)
92 ok (${"$mbi\::round_mode"},'-inf'); # from above
371 $mbi->round_mode('even'); $x = $mbi->new('126025')->bsqrt(2,undef,'+inf');
649 @params = $x->_find_round_parameters(undef,2,'+inf');
654 ok ($params[3],'+inf'); # round_mode
656 @params = $x->_find_round_parameters(2,-2,'+inf');
873 $e = "Illegal sign $x->{sign} (expected: '+', '-', '-inf', '+inf' or 'NaN'"
874 if $e eq '0' && $x->{sign} !~ /^(\+|-|\+inf|
[all...]
/osnet-11/usr/src/grub/grub-0.97/
H A Dconfigure451 -infodir | --infodir | --infodi | --infod | --info | --inf)
453 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
/osnet-11/usr/src/grub/grub2/
H A Dconfigure1576 -infodir | --infodir | --infodi | --infod | --info | --inf)
1578 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
4156 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
4182 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
4293 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
4351 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
[all...]

Completed in 100 milliseconds

12