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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/krb5/dyn/
dyn_size.c 19 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->size
    [all...]
dyn_delete.c 25 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->array + idx*obj->el_size, 0, obj->el_size)
    [all...]
dyn_create.c 31 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->paranoid = 0
    [all...]
dyn_insert.c 19 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->array
    [all...]
dyn_realloc.c 23 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->size
    [all...]
dyn_put.c 20 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->debug
    [all...]
dyn_append.c 22 int DynAppend(obj, els, num)
23 DynObjectP obj;
27 return DynInsert(obj, DynSize(obj), els, num);
dyn_initzero.c 19 int DynInitzero(obj, state)
20 DynObjectP obj;
23 obj->initzero = state;
25 if (obj->debug)
dyn_paranoid.c 19 int DynParanoid(obj, state)
20 DynObjectP obj;
23 obj->paranoid = state;
25 if (obj->debug)
dyn_debug.c 19 int DynDebug(obj, state)
20 DynObjectP obj;
23 obj->debug = state;
dyn.h 43 #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, int idx))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Class/
Struct.t 42 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->h, 'HASH'
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/des/
makefile.bc 13 .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_key.obj set_key.obj str2key.obj
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
Stackobj.pm 57 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->{iv}
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/oh/
externoot.c 36 externoot(obj)
37 char *obj;
45 strcat(fname, obj);
is_objtype.c 42 is_objtype(obj)
43 char *obj;
48 if (strCcmp(obj, Detab[i].objtype) == 0)
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
AMRefConverter.java 49 public String convertToString(Object obj) {
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) {
74 return (/* NOI18N */"new AMRef(\"" + convertToString(obj)
StringConverter.java 45 public String convertToString(Object obj) {
46 if (obj != null)
47 return ((String) obj);
59 public String convertToCode(Object obj) {
61 ListParser.quote(convertToString(obj), buf, true);
ImageRefConverter.java 52 * @param obj an instance of ImageRef
54 public String convertToString(Object obj) {
55 if (obj != null)
56 return (((ImageRef) obj).toString());
76 * @param obj an instance of ImageRef
78 public String convertToCode(Object obj) {
81 if (obj == null)
85 ListParser.quote(convertToString(obj), buf, true);
IntegerConverter.java 45 public String convertToString(Object obj) {
46 if (obj != null)
47 return (((Integer) obj).toString());
68 public String convertToCode(Object obj) {
69 if (obj != null)
71 ((Integer) obj).toString() + /* NOI18N */")");
CharacterConverter.java 48 * @param obj a instance of Character
50 public String convertToString(Object obj) {
51 Character c = (Character)obj;
75 * @param obj a instance of Character
77 public String convertToCode(Object obj) {
79 ((Character) obj).toString() + /* NOI18N */"')");
UnknownTypeConverter.java 54 public String convertToString(Object obj) {
57 ((obj == null) ? /* NOI18N */"null" : obj.getClass().getName())));
  /onnv/onnv-gate/usr/src/cmd/perl/contrib/
copy_contrib.sh 80 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...]
  /onnv/onnv-gate/usr/src/lib/libast/common/cdt/
dtwalk.c 39 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;
  /onnv/onnv-gate/usr/src/cmd/isns/isnsd/
dseng.c 59 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->attrs[ATTR_INDEX_ISCSI
    [all...]

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011>>