Searched refs:got (Results 26 - 50 of 74) sorted by relevance

123

/osnet-11/usr/src/grub/grub2/include/grub/
H A Ddl.h140 void *got; member in struct:grub_dl
178 grub_size_t *got);
188 grub_size_t *got);
/osnet-11/usr/src/lib/crypt_modules/bsdmd5/
H A Dbsdmd5.c191 ssize_t got; local
200 got = read(fd, &rndval, sizeof (rndval));
201 if (got < sizeof (rndval)) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dfreeze.t51 $got = &dump($root);
54 print "not " unless $got eq $dumped;
H A Dstore.t46 $got = &dump($root);
49 print "not " unless $got eq $dumped;
H A Dtied.t163 $got = &dump($root);
169 ### print "got: $got";
172 ok 5, $got eq $dumped;
/osnet-11/usr/src/lib/libmail/common/
H A Ds_string.c353 size_t got; local
368 got = fread(to->ptr, (size_t)1, have, fp);
369 if (got == (size_t)0)
372 to->ptr += got;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Darray.t263 my $got = runperl (
272 $got =~ s/\n/ /g;
273 print "# $got\nnot " unless $got eq '';
H A Dqq.t29 printf q(not ok %d - got %s expected %s
H A Dpack.t197 skip("Couldn't generate infinity - got error '$@'", 1)
219 skip("Couldn't generate 2**1023 - got error '$@'", 3)
371 my $got = $what eq 'u' ? (unpack $template, $in) : (pack $template, $in);
372 unless (is($got, $out)) {
375 ' not '._qq($got)."\n";
418 # is using UV maths, and we've only got NVs.
736 my $got = eval {pack $template, @in};
738 is($out, $got) ||
740 encode_list (@in), encode_list ($got), encode_list ($out);
755 my @got
[all...]
H A Deval.t388 my $got = runperl (prog => '$h{a}=1; foreach my $k (keys %h) {eval qq{\$k}}',
391 if ($got eq '') {
395 _diag ("# Got '$got'\n");
408 print "not $test # got ", _q ($k), "\n";
417 print "not $test # got ", _q ($k), "\n";
H A Dclosure.t262 print "not ok: got unexpected warning \$msg\\n";
639 my $got = runperl(progfile => $progfile);
640 test { chomp $got; $got eq "yxx" };
648 my $got = runperl(stderr => 1, prog =>
651 test { $got eq "ok\n" };
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dh2xs.t171 my (%got);
172 find (sub {$got{$File::Find::name}++ unless -d $_}, $name);
181 $_ = lc($_) unless exists $got{$_};
183 ok (-e $_, "check for $_") and delete $got{$_};
185 my @extra = keys %got;
H A Dwarnings.t82 die "Internal error test $i didn't split into pairs, got " .
194 my $got = shift ;
197 my @got = sort split "\n", $got ;
200 return "@got" eq "@expected";
H A DAutoSplit.t127 my (%missing, %got);
128 find (sub {$got{$File::Find::name}++ unless -d $_}, $dir);
132 unless (delete $got{$_}) {
142 my @extra = keys %got;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/sdbm/
H A Dsdbm.c456 int got; local
458 || (got=read(db->dirf, db->dirbuf, DBLKSIZ)) < 0)
460 if (got==0)
480 int got; local
482 || (got=read(db->dirf, db->dirbuf, DBLKSIZ)) < 0)
484 if (got==0)
/osnet-11/usr/src/grub/grub2/grub-core/kern/powerpc/
H A Ddl.c42 grub_size_t *got)
49 *got = 0;
41 grub_arch_dl_get_tramp_got_size(const void *ehdr, grub_size_t *tramp, grub_size_t *got) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Devel/
H A DSelfStubber.t135 my ($expect, $got) = @_;
137 print "# $_ expect '$$expect{$_}' got '$$got{$_}'\n";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DPoll.pm91 my($fd,$got) = splice(@poll,0,2);
92 $self->[1]{$fd} = $got if $got;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DComplex.t445 my ($test, $try, $got, $expected, @z) = @_;
449 if ("$got" eq "$expected"
451 ($expected =~ /^-?\d/ && $got == $expected)
453 (abs($got - $expected) < $eps)
459 print "# '$try' expected: '$expected' got: '$got' for $args\n";
/osnet-11/usr/src/grub/grub2/grub-core/kern/
H A Ddl.c241 grub_size_t got;
255 grub_arch_dl_get_tramp_got_size (e, &tramp, &got);
257 got *= sizeof (grub_uint64_t);
261 tsize += ALIGN_UP (got, GRUB_ARCH_DL_GOT_ALIGN);
328 mod->got = ptr;
329 ptr += got;
239 grub_size_t got; local
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A DConstant.t770 $test_body .= "my (\$error, \$got) = ${package}::constant (\$string);\n";
773 if ($error or $got ne $expect) {
774 print "not ok $test # error '$error', got '$got'\n";
787 $test_body .= "my (\$error, \$got) = ${package}::constant (\$string);\n";
790 if ($error or $got ne $expect) {
791 print "not ok $test # error '$error', got '$got'\n";
806 $test_body .= "my (\$error, \$got) = ${package}::constant (\$string);\n";
814 print "not ok $test # expected error, got n
[all...]
/osnet-11/usr/src/lib/crypt_modules/sha256/
H A Dcrypt_sha.c365 ssize_t got; local
395 got = read(fd, &rndval, sizeof (rndval));
396 if (got < sizeof (rndval)) {
/osnet-11/usr/src/lib/crypt_modules/sunmd5/
H A Dsunmd5.c174 ssize_t got; local
203 got = read(fd, &rndval, sizeof (rndval));
204 if (got < sizeof (rndval)) {
/osnet-11/usr/src/lib/libsqlite/src/
H A Dos.c974 int got; local
977 got = read(id->fd, pBuf, amt);
981 /* if( got<0 ) got = 0; */
982 if( got==amt ){
989 DWORD got; local
992 if( !ReadFile(id->h, pBuf, amt, &got, 0) ){
993 got = 0;
995 if( got==(DWORD)amt ){
1002 int got; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/t/
H A Dposix.t183 my $got = POSIX::strftime("%a %b %d %H:%M:%S %Y %j", @_);
184 is($got, $expect, "validating mini_mktime() and strftime(): $expect");

Completed in 118 milliseconds

123