Lines Matching defs:tndp
272 TsolNodePtr tndp = &(tsol_node[thisAtom]);
276 for (k = 0; k < tndp->slcount; k++) {
277 if (tsolinfo->sl == tndp->sl[k]) {
283 if (tndp->sl == NULL) {
284 tndp->sl = malloc(NODE_SLSIZE * (sizeof(bslabel_t *)));
286 if (tndp->sl == NULL) {
290 tndp->slcount = 0;
291 tndp->slsize = NODE_SLSIZE;
295 if (tndp->slsize < tndp->slcount) {
296 newsize = tndp->slsize + NODE_SLSIZE;
297 tndp->sl = realloc(tndp->sl,
299 if (tndp->sl == NULL) {
302 tndp->slsize = newsize;
307 tndp->sl[tndp->slcount] = tsolinfo->sl;
308 tndp->slcount++;
358 TsolNodePtr tndp;
360 tndp = &(tsol_node[stuff->id]);
362 if ((tndp->flags & TSOLM_ATOM) == 0) {
366 for (k = 0; k < tndp->slcount; k++) {
367 if (tsolinfo->sl == tndp->sl[k])
372 if (k == tndp->slcount)