Searched refs:ob (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | tiearray.t | 23 my ($ob,$sz) = @_; 24 return $#{$ob} = $sz-1; 30 my ($ob,$sz) = @_; 31 return @$ob = $sz; 43 my ($ob,$id) = @_; 44 return $ob->[$id]; 50 my ($ob,$id,$val) = @_; 51 $ob->[$id] = $val; 57 my $ob = shift; 58 unshift(@$ob, [all...] |
H A D | tiehandle.t | 81 my $ob = tie *$fh,'Implement'; 82 is(ref($ob), 'Implement'); 83 is(tied(*$fh), $ob); 85 @expect = (PRINT => $ob,"some","text"); 89 @expect = (PRINTF => $ob,"%s","text"); 94 @expect = (READLINE => $ob); 104 @expect = (GETC => $ob); 110 @expect = (READ => $ob, $buf, 3); 118 @expect = (READ => $ob, $buf, 3,3); 125 @expect = (WRITE => $ob, [all...] |
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/x86pi/common/ |
H A D | x86pi_bay.c | 91 smbios_obdev_ext_t ob; local 92 (void) smbios_info_obdevs_ext(shp, dev_id, &ob); 93 bus = ob.smboe_bus; 94 dev_funct = ob.smboe_df; 101 devt == SMB_TYPE_SLOT ? "slot" : "ob dev", bus, dev_funct);
|
/osnet-11/usr/src/lib/libpp/common/ |
H A D | ppproto.c | 79 char* ob; /* output buffer base */ member in struct:proto 611 if (op > proto->ob && *(op - 1) == '=' && (op == proto->ob + 1 || *(op - 2) != '=')) switch (c) 857 if (op != proto->ob && LASTOUT() != ' ' && LASTOUT() != '\n') 1057 while (op > proto->ob && (*(op - 1) == ' ' || *(op - 1) == '\t')) 1059 if (op > proto->ob && *(op - 1) != '\n') *op++ = ' '; 2188 proto->op = proto->ob = iob; 2360 proto->iz += proto->op - proto->ob; 2461 else if ((n = read(proto->fd, proto->ob, proto->oz)) <= 0 || (proto->options & REGULAR) && n < proto->oz) 2469 if (proto->op == proto->ob) [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/ |
H A D | Array.pm | 104 my $ob = shift; 105 my $sz = $ob->FETCHSIZE; 109 return splice(@$ob,$off,$len,@_);
|
/osnet-11/usr/src/lib/libast/common/misc/ |
H A D | optget.c | 125 char* ob; /* next char in old string */ member in struct:Push_s 558 register int ob = b; local 609 if (n == 0 && b-- == ob) 1215 tsp->ob = s; 1259 tsp->ob = t; 1379 s = psp->ob; 1496 s = psp->ob; 1832 s = psp->ob; 1972 s = psp->ob; 2091 s = psp->ob; [all...] |
/osnet-11/usr/src/lib/libast/common/comp/ |
H A D | conf.sh | 79 ob='{' 300 printf "%29s %35s %8s %2s %1d %5s %s$nl" "$name" "$key" "$standard" "$call" "$section" "$flags" "$define${values:+$sp=$values}${headers:+$sp$headers$nl}${script:+$sp$ob$script$nl$cb}" 634 printf "%29s %35s %8s %2s %1d %5s %s$nl" "$name" "$key" "$standard" "$call" "$section" "$flags" "$define${values:+$sp=$values}${headers:+$sp$headers$nl}${script:+$sp$ob$script$nl$cb}"
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | pp_hot.c | 3084 SV* ob; local 3102 ob = (SV*)SvRV(sv); 3121 !(ob=(SV*)GvIO(iogv))) 3148 /* if we got here, ob should be a reference or a glob */ 3149 if (!ob || !(SvOBJECT(ob) 3150 || (SvTYPE(ob) == SVt_PVGV && (ob = (SV*)GvIO((GV*)ob)) 3151 && SvOBJECT(ob)))) [all...] |
H A D | proto.h | 745 PERL_CALLCONV char* Perl_sv_reftype(pTHX_ SV* sv, int ob);
|
H A D | sv.c | 7599 Perl_sv_reftype(pTHX_ SV *sv, int ob) argument 7601 if (ob && SvOBJECT(sv)) {
|
Completed in 65 milliseconds