Lines Matching refs:ol
204 itmc_obj_t *ol; in obj_list_to_array() local
206 for (obj_array.num = 0, ol = obj_list; in obj_list_to_array()
207 ol; obj_array.num += 1, ol = ol->next) { in obj_list_to_array()
216 for (offset = hdr_size, ol = obj_list; in obj_list_to_array()
217 ol; offset += size, ol = ol->next) { in obj_list_to_array()
218 (void) memcpy((char *)(obj_array.obj) + offset, ol->obj, size); in obj_list_to_array()
219 if (ol->ref[0]) { in obj_list_to_array()
220 ol->ref[0]->referencer = in obj_list_to_array()
221 (void *)((char *)(ol->ref[0]->referencer) + in obj_list_to_array()
223 (char *)(ol->obj) + offset)); in obj_list_to_array()
225 if (ol->ref[1]) { in obj_list_to_array()
226 ol->ref[1]->referencer = in obj_list_to_array()
227 (void *)((char *)(ol->ref[1]->referencer) + in obj_list_to_array()
229 (char *)(ol->obj) + offset)); in obj_list_to_array()
231 if (ol->ref[2]) { in obj_list_to_array()
232 ol->ref[2]->referencer = in obj_list_to_array()
233 (void *)((char *)(ol->ref[2]->referencer) + in obj_list_to_array()
235 (char *)(ol->obj) + offset)); in obj_list_to_array()
248 itmc_obj_t *ol; in op_hirarchy() local
257 for (ol = obj_list; ol != NULL; ol = ol->next) { in op_hirarchy()
258 if ((ol->type == ITMC_OBJ_OP) && in op_hirarchy()
259 (((itm_op_t *)ol->obj)->type == ITM_OP_OPERATION)) { in op_hirarchy()
265 in->ref = ol->ref[0]; in op_hirarchy()
371 itmc_obj_t *ol; in range_table() local
381 for (num = 0, ol = obj_list; ol; ol = ol->next, num++) { in range_table()
382 rp = (itmc_data_pair_t *)(ol->obj); in range_table()
419 for (ol = obj_list, i = 0; ol; ol = ol->next, i++) { in range_table()
420 rp = (itmc_data_pair_t *)(ol->obj); in range_table()
437 itmc_obj_t *ol; in escseq_table() local
446 ol = obj_list; in escseq_table()
447 len_min = ((itm_data_t *)(ol->obj))->size; in escseq_table()
448 for (num = 0; NULL != ol; ol = ol->next, num++) { in escseq_table()
449 ep = (itm_data_t *)(ol->obj); in escseq_table()
479 for (ol = obj_list, ep = (itm_data_t *)(eh + 1); in escseq_table()
480 ol != NULL; in escseq_table()
481 ol = ol->next, ep++) { in escseq_table()
482 *ep = *((itm_data_t *)(ol->obj)); in escseq_table()