HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 1 - 25 of 458) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /netvirt/usr/src/cmd/sgs/libconv/common/
deftag.c 35 conv_def_tag(Symref ref, Conv_inv_buf_t *inv_buf)
41 if (ref >= REF_NUM)
42 return (conv_invalid_val(inv_buf, ref, 0));
44 return (MSG_ORIG(refs[ref]));
  /netvirt/usr/src/cmd/geniconvtbl/
assemble.c 110 itmc_ref_t *ref; local
167 (" ref name referencee reloc(10)"
171 for (ref = ref_first[i], j = 0; ref; ref = ref->next, j++) {
174 j, ref,
175 ref->name, ref->referencee,
176 ref->reloc.itm_ptr, ref->size
201 itmc_ref_t *ref; local
432 itmc_ref_t *ref; local
663 itmc_ref_t *ref; local
752 itmc_ref_t *ref; local
757 itmc_ref_t *ref; \/* corresponding object's ref *\/ member in struct:op_nest_vertex
900 itmc_ref_t *ref; local
    [all...]
  /netvirt/usr/src/uts/common/sys/
tnf_writer.h 128 #define tnf_char(ops, item, ref) (item)
131 #define tnf_int8(ops, item, ref) (item)
134 #define tnf_uint8(ops, item, ref) (item)
137 #define tnf_int16(ops, item, ref) (item)
140 #define tnf_uint16(ops, item, ref) (item)
143 #define tnf_int32(ops, item, ref) (item)
146 #define tnf_uint32(ops, item, ref) (item)
149 #define tnf_int64(ops, item, ref) (item)
152 #define tnf_uint64(ops, item, ref) (item)
155 #define tnf_float32(ops, item, ref) (item
    [all...]
  /netvirt/usr/src/uts/common/fs/zfs/
refcount.c 75 reference_t *ref; local
78 while (ref = list_head(&rc->rc_list)) {
79 list_remove(&rc->rc_list, ref);
80 kmem_cache_free(reference_cache, ref);
84 while (ref = list_head(&rc->rc_removed)) {
85 list_remove(&rc->rc_removed, ref);
86 kmem_cache_free(reference_history_cache, ref->ref_removed);
87 kmem_cache_free(reference_cache, ref);
116 reference_t *ref; local
120 ref = kmem_cache_alloc(reference_cache, KM_SLEEP)
144 reference_t *ref; local
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/t/op/
ref.t 56 $ref[0] = \@a;
57 $ref[1] = \@b;
58 $ref[2] = \@c;
59 $ref[3] = \@d;
61 push(@{$ref[$i]}, "ok $ary[$i]\n");
64 print ${$ref[1]}[0];
65 print @{$ref[2]}[0];
76 $ref = [[],2,[3,4,5,]];
77 print scalar @$ref == 3 ? "ok 14\n" : "not ok 14\n";
78 print $$ref[1] == 2 ? "ok 15\n" : "not ok 15\n"
    [all...]
exists_sub.t 35 my $ref;
36 $ref->{A}[0] = \&t4;
37 print "not " unless exists &{$ref->{A}[0]} && not defined &{$ref->{A}[0]};
  /netvirt/usr/src/cmd/sgs/libelf/common/
begin.c 57 _elf_member(int fd, Elf * ref, unsigned flags)
63 if (ref->ed_nextoff >= ref->ed_fsz)
65 if (ref->ed_fd == -1) /* disabled */
71 if (ref->ed_fd != fd) {
75 if ((_elf_vm(ref, ref->ed_nextoff, sizeof (struct ar_hdr)) !=
76 OK_YES) || ((mh = _elf_armem(ref,
77 ref->ed_ident + ref->ed_nextoff, ref->ed_fsz)) == 0)
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/t/op/
ref.t 49 $ref[0] = \@a;
50 $ref[1] = \@b;
51 $ref[2] = \@c;
52 $ref[3] = \@d;
54 push(@{$ref[$i]}, "ok $ary[$i]\n");
57 print ${$ref[1]}[0];
58 print @{$ref[2]}[0];
69 $ref = [[],2,[3,4,5,]];
70 print scalar @$ref == 3 ? "ok 14\n" : "not ok 14\n";
71 print $$ref[1] == 2 ? "ok 15\n" : "not ok 15\n"
    [all...]
die.t 5 $SIG{__DIE__} = sub { print ref($_[0]) ? ("ok ",$_[0]->[0]++,"\n") : @_ } ;
35 print "not " unless ref($@) eq "Out";
exists_sub.t 35 my $ref;
36 $ref->{A}[0] = \&t4;
37 print "not " unless exists &{$ref->{A}[0]} && not defined &{$ref->{A}[0]};
  /netvirt/usr/src/lib/libldap5/sources/ldap/common/
referral.c 54 ldap_next_reference( LDAP *ld, LDAPMessage *ref )
56 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || ref == NULLMSG ) {
60 for ( ref = ref->lm_chain; ref != NULLMSG; ref = ref->lm_chain ) {
61 if ( ref->lm_msgtype == LDAP_RES_SEARCH_REFERENCE ) {
62 return( ref );
95 ldap_parse_reference( LDAP *ld, LDAPMessage *ref, char ***referralsp
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
tied_items.t 10 # Tests ref to items in tied hash/array structures.
42 $ref = \$h{77};
43 $ref2 = dclone $ref;
46 ok 2, $$ref2 eq $$ref;
57 $ref = \$a[78];
58 $ref2 = dclone $ref;
61 ok 6, $$ref2 eq $$ref;
overload.t 40 ok 1, ref $b eq 'OVERLOADED';
44 ok 3, ref $c eq 'REF';
45 ok 4, ref $$c eq 'OVERLOADED';
66 '""' => sub { ref $_[0] };
74 my $ref = REF_TO_OVER->make($self);
75 $self->{ref} = $ref;
84 ok 8, ref $b eq 'OVER';
86 ok 10, ref $b->{ref} eq 'REF_TO_OVER'
    [all...]
  /netvirt/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/server/
DhcpMgr.java 46 public ExportHeader getExportHeader(Object ref)
48 public void exportMacros(Object ref, boolean allMacros, String [] names)
50 public void exportOptions(Object ref, boolean allOptions, String [] names)
52 public void exportNetwork(Object ref, Network net)
54 public ActionError [] importOptions(Object ref, boolean overwrite)
56 public ActionError [] importMacros(Object ref, boolean overwrite)
58 public ActionError [] importNetwork(Network net, Object ref,
62 public void closeExportFile(Object ref, boolean deleteFile)
64 public void closeImportFile(Object ref, boolean deleteFile)
DhcpMgrImpl.java 170 * @param ref Reference to the open file, returned from openExportFile
173 public void closeExportFile(Object ref, boolean delete) throws IOException {
174 if (!isFileOpen((File)ref)) {
175 throw new FileNotFoundException(((File)ref).getName());
182 ((File)ref).delete();
192 clearFile((File)ref);
224 * @param ref Reference to the open file, returned from openImportFile
227 public void closeImportFile(Object ref, boolean delete) throws IOException {
228 if (!isFileOpen((File)ref)) {
229 throw new FileNotFoundException(((File)ref).getName())
    [all...]
  /netvirt/usr/src/uts/common/xen/os/
gnttab.c 117 int ref; local
125 ref = head = gnttab_free_head;
132 return (ref);
166 put_free_entry(grant_ref_t ref)
168 ASSERT(VALID_GRANT_REF(ref));
171 gnttab_list[ref] = gnttab_free_head;
172 gnttab_free_head = ref;
185 int ref; local
187 if ((ref = get_free_entry()) == -1)
190 ASSERT(VALID_GRANT_REF(ref));
271 int ref; local
352 grant_ref_t ref; local
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
asmdata.t 20 is( (grep { ref eq 'ARRAY' } @data), @data, '%insn_data contains arrays' );
26 is( ref $data->[1], 'CODE', ' PUT code ref' );
27 ok( !ref $data->[2], ' GET method' );
44 is( grep(!ref, @specialsv_name), @specialsv_name, ' contains all strings' );
  /netvirt/usr/src/cmd/audio/utilities/
AudioExtent.cc 41 Audio("[extent]"), ref(obj)
43 ref->Reference(); // reference audio object
52 ref->Dereference(); // clear audio object reference
59 return (ref);
67 if (ref == r) // object is not changing
69 ref->Dereference(); // dereference previous object
71 ref = r;
72 ref->Reference(); // reference new object
105 return (ref->GetLength());
117 len = ref->GetLength()
    [all...]
  /netvirt/usr/src/uts/common/xen/sys/
gnttab.h 99 int gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly);
107 void gnttab_end_foreign_access(grant_ref_t ref, int readonly,
112 gnttab_frame_t gnttab_end_foreign_transfer_ref(grant_ref_t ref);
113 gnttab_frame_t gnttab_end_foreign_transfer(grant_ref_t ref);
115 int gnttab_query_foreign_access(grant_ref_t ref);
122 void gnttab_free_grant_reference(grant_ref_t ref);
134 void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
downgrade.t 30 ok (ref(Math::BigFloat->new('inf')),'Math::BigInt');
31 ok (ref(Math::BigFloat->new('-inf')),'Math::BigInt');
32 ok (ref(Math::BigFloat->new('NaN')),'Math::BigInt');
33 ok (ref(Math::BigFloat->new('0')),'Math::BigInt');
34 ok (ref(Math::BigFloat->new('1')),'Math::BigInt');
35 ok (ref(Math::BigFloat->new('10')),'Math::BigInt');
36 ok (ref(Math::BigFloat->new('-10')),'Math::BigInt');
37 ok (ref(Math::BigFloat->new('-10.0E1')),'Math::BigInt');
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/bignum/t/
bignum.t 21 my $x = 5; ok (ref($x) =~ /^Math::BigInt/); # :constant
24 $x = 2 + 3.5; ok (ref($x),'Math::BigFloat');
26 $x = 2 + 2.1; ok (ref($x),'Math::BigFloat');
28 $x = 2 ** 255; ok (ref($x) =~ /^Math::BigInt/);
  /netvirt/usr/src/cmd/man/src/util/nsgmls.src/include/
Resource.h 17 void ref();
48 void Resource::ref() function in class:SP_NAMESPACE::Resource
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/t/
XSLoader.t 18 ok( ref XSLoader->can('load') );
25 ::ok( ref SDBM_File->can('TIEHASH') );
  /netvirt/usr/src/lib/libast/common/hash/
hashalloc.c 41 hashalloc(Hash_table_t* ref, ...)
53 va_start(ap, ref);
60 if (!ref && n == HASH_region)
72 if (ref)
74 tab->flags = ref->flags & ~HASH_RESET;
75 tab->root = ref->root;
101 if (ref) goto out;
113 if (ref) goto out;
117 if (ref) goto out;
121 if (ref) goto out
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
RefHash.t 25 my $ref = []; my $ref1 = [];
79 test(ref($h) eq 'Tie::RefHash');
81 $h{$ref} = 'cholet';
82 test($h{$ref} eq 'cholet');
83 test(exists $h{$ref});
85 test(ref((keys %h)[0]) eq 'ARRAY');
86 test((keys %h)[0] eq $ref);
92 test(ref($k) eq 'ARRAY');
93 test($k eq $ref);
97 delete $h{$ref};
    [all...]

Completed in 1040 milliseconds

1 2 3 4 5 6 7 8 91011>>