Lines Matching refs:tmpa
2415 ScalarTS* tmpa = &a->ts[ia]; in VTS__join() local
2416 thrid = tmpa->thrid; in VTS__join()
2417 tyma = tmpa->tym; in VTS__join()
2423 ScalarTS* tmpa = &a->ts[ia]; in VTS__join() local
2425 if (tmpa->thrid < tmpb->thrid) { in VTS__join()
2427 thrid = tmpa->thrid; in VTS__join()
2428 tyma = tmpa->tym; in VTS__join()
2431 } else if (tmpa->thrid > tmpb->thrid) { in VTS__join()
2439 tl_assert(tmpa->thrid == tmpb->thrid); in VTS__join()
2440 thrid = tmpa->thrid; /* == tmpb->thrid */ in VTS__join()
2441 tyma = tmpa->tym; in VTS__join()
2509 ScalarTS* tmpa = &a->ts[ia]; in VTS__cmpLEQ() local
2510 tyma = tmpa->tym; in VTS__cmpLEQ()
2511 thrid = tmpa->thrid; in VTS__cmpLEQ()
2517 ScalarTS* tmpa = &a->ts[ia]; in VTS__cmpLEQ() local
2519 if (tmpa->thrid < tmpb->thrid) { in VTS__cmpLEQ()
2521 tyma = tmpa->tym; in VTS__cmpLEQ()
2522 thrid = tmpa->thrid; in VTS__cmpLEQ()
2527 if (tmpa->thrid > tmpb->thrid) { in VTS__cmpLEQ()
2535 tl_assert(tmpa->thrid == tmpb->thrid); in VTS__cmpLEQ()
2536 tyma = tmpa->tym; in VTS__cmpLEQ()
2537 thrid = tmpa->thrid; in VTS__cmpLEQ()
2582 ScalarTS *tmpa = NULL, *tmpb = NULL; in VTS__cmp_structural() local
2587 tmpa = &ctsa[i]; in VTS__cmp_structural()
2589 if (LIKELY(tmpa->tym == tmpb->tym in VTS__cmp_structural()
2590 && tmpa->thrid == tmpb->thrid)) in VTS__cmp_structural()
2600 if (tmpa->tym < tmpb->tym) return -1; in VTS__cmp_structural()
2601 if (tmpa->tym > tmpb->tym) return 1; in VTS__cmp_structural()
2602 if (tmpa->thrid < tmpb->thrid) return -1; in VTS__cmp_structural()
2603 if (tmpa->thrid > tmpb->thrid) return 1; in VTS__cmp_structural()