Lines Matching defs:obj

125 	du->obj = direc = malloc_vital(sizeof (itm_direc_t));
172 tbl = obj_array.obj;
211 obj_array.obj = malloc_vital(hdr_size + (size * obj_array.num));
218 (void) memcpy((char *)(obj_array.obj) + offset, ol->obj, size);
222 ((char *)(obj_array.obj) -
223 (char *)(ol->obj) + offset));
228 ((char *)(obj_array.obj) -
229 (char *)(ol->obj) + offset));
234 ((char *)(obj_array.obj) -
235 (char *)(ol->obj) + offset));
259 (((itm_op_t *)ol->obj)->type == ITM_OP_OPERATION)) {
281 obj_list_append(itmc_obj_t *obj_list, itmc_obj_t *obj)
283 if (0 == obj) {
287 obj->next = NULL;
288 obj->last = obj;
291 obj_list->last->next = obj;
292 obj_list->last = obj;
295 return (obj);
302 void *obj, size_t size, itm_place_t *ref,
308 type, name, obj, size, ref, reg_place));
312 refp->referencee = obj;
321 if (NULL == obj) { /* reference to named object */
327 "obj_register: (NULL == obj) "
382 rp = (itmc_data_pair_t *)(ol->obj);
420 rp = (itmc_data_pair_t *)(ol->obj);
447 len_min = ((itm_data_t *)(ol->obj))->size;
449 ep = (itm_data_t *)(ol->obj);
482 *ep = *((itm_data_t *)(ol->obj));
2054 itmc_obj_t *obj;
2062 obj = malloc_vital(sizeof (itmc_obj_t));
2063 obj->type = ITMC_OBJ_OP;
2064 obj->name = NULL;
2065 obj->obj = op;
2066 obj->ref[0] = obj->ref[1] = obj->ref[2] = NULL;
2068 obj->ref[0] = obj_register(ITMC_OBJ_EXPR, NULL,
2074 obj->ref[1] = obj_register(ITMC_OBJ_EXPR, NULL,
2080 obj->ref[2] = obj_register(ITMC_OBJ_EXPR, NULL,
2085 obj->next = NULL;
2086 obj->last = NULL;
2088 return (obj);
2096 itmc_obj_t *obj;
2104 obj = malloc_vital(sizeof (itmc_obj_t));
2105 obj->type = ITMC_OBJ_OP;
2106 obj->name = NULL;
2107 obj->obj = op;
2108 obj->ref[0] = obj->ref[1] = obj->ref[2] = NULL;
2110 return (obj);