Searched refs:obj (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/krb5/dyn/
H A Ddyn_size.c19 int DynSize(obj)
20 DynObjectP obj;
22 if (obj->debug)
23 fprintf(stderr, "dyn: size: returning size %d.\n", obj->num_el);
25 return obj->num_el;
28 int DynCapacity(obj)
29 DynObjectP obj;
31 if (obj->debug)
32 fprintf(stderr, "dyn: capacity: returning cap of %d.\n", obj->size);
34 return obj
[all...]
H A Ddyn_delete.c25 int DynDelete(obj, idx)
26 DynObjectP obj;
30 if (obj->debug)
35 if (idx >= obj->num_el) {
36 if (obj->debug)
38 obj->num_el);
42 if (idx == obj->num_el-1) {
43 if (obj->paranoid) {
44 if (obj->debug)
46 memset(obj
[all...]
H A Ddyn_create.c31 DynObjectP obj; local
33 obj = (DynObjectP) malloc(sizeof(DynObjectRecP));
34 if (obj == NULL)
38 obj->array = (DynPtr) malloc(1);
40 obj->array = (DynPtr) malloc(0);
42 obj->el_size = el_size;
43 obj->num_el = obj->size = 0;
44 obj->debug = obj
[all...]
H A Ddyn_insert.c19 int DynInsert(obj, idx, els_in, num)
20 DynObjectP obj;
27 if (idx < 0 || idx > obj->num_el) {
28 if (obj->debug)
30 idx, obj->num_el);
35 if (obj->debug)
41 if (obj->debug)
43 (obj->num_el-idx)*obj->el_size, obj
[all...]
H A Ddyn_realloc.c23 int _DynResize(obj, req)
24 DynObjectP obj;
29 if (obj->size > req)
31 else if (obj->inc > 0)
32 return _DynRealloc(obj, (req - obj->size) / obj->inc + 1);
34 if (obj->size == 0)
35 size = -obj->inc;
37 size = obj
[all...]
H A Ddyn_put.c20 DynPtr DynArray(obj)
21 DynObjectP obj;
23 if (obj->debug)
25 obj->array);
27 return obj->array;
30 DynPtr DynGet(obj, num)
31 DynObjectP obj;
35 if (obj->debug)
40 if (num >= obj->num_el) {
41 if (obj
[all...]
H A Ddyn_append.c22 int DynAppend(obj, els, num)
23 DynObjectP obj;
27 return DynInsert(obj, DynSize(obj), els, num);
H A Ddyn_initzero.c19 int DynInitzero(obj, state)
20 DynObjectP obj;
23 obj->initzero = state;
25 if (obj->debug)
H A Ddyn_paranoid.c19 int DynParanoid(obj, state)
20 DynObjectP obj;
23 obj->paranoid = state;
25 if (obj->debug)
H A Ddyn_debug.c19 int DynDebug(obj, state)
20 DynObjectP obj;
23 obj->debug = state;
H A Ddyn.h43 #define DynHigh(obj) (DynSize(obj) - 1)
44 #define DynLow(obj) (0)
59 DynObject DynCreate P((int el_size, int inc)), DynCopy P((DynObject obj));
60 int DynDestroy P((DynObject obj)), DynRelease P((DynObject obj));
61 int DynAdd P((DynObject obj, void *el));
62 int DynPut P((DynObject obj, void *el, int idx));
63 int DynInsert P((DynObject obj, int idx, void *els, int num));
64 int DynDelete P((DynObject obj, in
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Class/
H A DStruct.t42 my $obj = MyObj->new;
43 isa_ok $obj, 'MyObj';
45 $obj->s('foo');
46 is $obj->s(), 'foo';
48 isa_ok $obj->a, 'ARRAY';
49 $obj->a(2, 'secundus');
50 is $obj->a(2), 'secundus';
52 $obj->a([4,5,6]);
53 is $obj->a(1), 5;
55 isa_ok $obj
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/des/
H A Dmakefile.bc13 .c.obj:
16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
21 # "make clean": use a directory containing only libdes .exe and .obj files...
24 del *.obj
28 OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
29 qud_cksm.obj rand_ke
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DStackobj.pm57 my $obj = shift;
58 if (!($obj->{flags} & VALID_SV)) {
59 $obj->write_back;
60 $obj->{flags} |= VALID_SV;
62 return $obj->{sv};
66 my $obj = shift;
67 if (!($obj->{flags} & VALID_INT)) {
68 $obj->load_int;
69 $obj->{flags} |= VALID_INT|SAVE_INT;
71 return $obj
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/io/drm/
H A Ddrm_gem.c92 struct drm_gem_object *obj,
98 key = obj->name % DRM_GEM_OBJIDR_HASHNODE;
100 entry->obj = obj;
101 entry->handle = obj->name;
102 *handlep = obj->name;
116 return (entry->obj);
176 drm_gem_object_reference(struct drm_gem_object *obj) argument
178 atomic_inc(&obj->refcount);
182 drm_gem_object_unreference(struct drm_gem_object *obj) argument
91 idr_list_get_new_above(struct idr_list *head, struct drm_gem_object *obj, int *handlep) argument
193 drm_gem_object_handle_reference(struct drm_gem_object *obj) argument
200 drm_gem_object_handle_unreference(struct drm_gem_object *obj) argument
260 struct drm_gem_object *obj; local
385 struct drm_gem_object *obj; local
427 drm_gem_handle_create(struct drm_file *file_priv, struct drm_gem_object *obj, int *handlep) argument
460 struct drm_gem_object *obj; local
513 struct drm_gem_object *obj; local
564 struct drm_gem_object *obj; local
617 drm_gem_object_release_handle(struct drm_gem_object *obj) argument
647 drm_gem_object_free(struct drm_gem_object *obj) argument
677 drm_gem_object_handle_free(struct drm_gem_object *obj) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
H A DAMRefConverter.java49 public String convertToString(Object obj) { argument
50 if (obj != null)
51 return (((AMRef) obj).getName());
71 * @param obj AMRef object for which to generate code
73 public String convertToCode(Object obj) { argument
74 return (/* NOI18N */"new AMRef(\"" + convertToString(obj)
H A DStringConverter.java45 public String convertToString(Object obj) { argument
46 if (obj != null)
47 return ((String) obj);
59 public String convertToCode(Object obj) { argument
61 ListParser.quote(convertToString(obj), buf, true);
H A DImageRefConverter.java52 * @param obj an instance of ImageRef
54 public String convertToString(Object obj) { argument
55 if (obj != null)
56 return (((ImageRef) obj).toString());
76 * @param obj an instance of ImageRef
78 public String convertToCode(Object obj) { argument
81 if (obj == null)
85 ListParser.quote(convertToString(obj), buf, true);
H A DIntegerConverter.java45 public String convertToString(Object obj) { argument
46 if (obj != null)
47 return (((Integer) obj).toString());
68 public String convertToCode(Object obj) { argument
69 if (obj != null)
71 ((Integer) obj).toString() + /* NOI18N */")");
H A DCharacterConverter.java48 * @param obj a instance of Character
50 public String convertToString(Object obj) { argument
51 Character c = (Character)obj;
75 * @param obj a instance of Character
77 public String convertToCode(Object obj) { argument
79 ((Character) obj).toString() + /* NOI18N */"')");
H A DUnknownTypeConverter.java54 public String convertToString(Object obj) { argument
57 ((obj == null) ? /* NOI18N */"null" : obj.getClass().getName())));
/opensolaris-onvv-gate/usr/src/cmd/perl/contrib/
H A Dcopy_contrib.sh80 for obj in $(cd $src && find $modules -name SCCS -prune -o -print); do
82 if [[ -d $src/$obj ]]; then
84 if [[ ! -d $dst/$obj ]]; then
86 printf 'mkdir -p %s/%s\n' $dst $obj
87 mkdir -p $dst/$obj
92 elif [[ -f $src/$obj ]]; then
93 if [[ $obj != */@(req|inc).flg && \
94 $src/$obj -nt $dst/$obj ]]; then
96 rm -f $dst/$obj
[all...]
/opensolaris-onvv-gate/usr/src/lib/libast/common/cdt/
H A Ddtwalk.c39 reg Void_t *obj, *next; local
43 for(obj = dtfirst(dt); obj; )
46 next = dtnext(dt,obj);
47 if((rv = (*userf)(walk, obj, data )) < 0)
49 obj = next;
/opensolaris-onvv-gate/usr/src/cmd/isns/isnsd/
H A Ddseng.c59 isns_obj_t *obj; local
74 ec = target_load_obj(&prev, &obj, &phase);
75 while (ec == 0 && obj != NULL) {
77 switch (obj->type) {
80 ptype = obj->type;
81 ec = register_object(obj, &puid, NULL);
85 ec = register_object(obj, &puid, NULL);
87 eid_attr = &obj->attrs[
95 scn_bitmap = &obj->attrs[ATTR_INDEX_ISCSI(
97 scn_name = &obj
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/BSM/
H A D_BSMparse.pm49 my $obj = shift;
62 $obj = ref($obj) || $obj;
83 'userFile' => $userf}, $obj);
92 my $obj = shift;
94 my $file = $obj->{'attrFile'};
117 my $classFilter = $obj->{'classFilter'};
165 $obj->{'kernelDefault'} = $1;
170 $obj
[all...]

Completed in 190 milliseconds

1234567891011>>