Lines Matching defs:ptrs
100 void **ptrs;
144 ptrs = (void **) node->dag_ptrs;
147 ptrs = (void **) node->big_dag_ptrs;
149 ptrs = RF_MallocAndAdd(nptrs * sizeof(*ptrs), alist);
151 node->succedents = (nSucc) ? (RF_DagNode_t **) ptrs : NULL;
152 node->antecedents = (nAnte) ? (RF_DagNode_t **) (ptrs + nSucc) : NULL;
153 node->results = (nResult) ? (void **) (ptrs + nSucc + nAnte) : NULL;
154 node->propList = (nSucc) ? (RF_PropHeader_t **) (ptrs + nSucc + nAnte + nResult) : NULL;
812 RF_DagNode_t **nodes; /* array of ptrs to nodes in dag */