Home | History | Annotate | Download | only in helgrind

Lines Matching refs:tmpb

2173          ScalarTS* tmpb = &b->ts[ib];
2174 thrid = tmpb->thrid;
2176 tymb = tmpb->tym;
2190 ScalarTS* tmpb = &b->ts[ib];
2191 if (tmpa->thrid < tmpb->thrid) {
2197 } else if (tmpa->thrid > tmpb->thrid) {
2199 thrid = tmpb->thrid;
2201 tymb = tmpb->tym;
2205 tl_assert(tmpa->thrid == tmpb->thrid);
2206 thrid = tmpa->thrid; /* == tmpb->thrid */
2208 tymb = tmpb->tym;
2267 ScalarTS* tmpb = &b->ts[ib];
2269 tymb = tmpb->tym;
2270 thrid = tmpb->thrid;
2284 ScalarTS* tmpb = &b->ts[ib];
2285 if (tmpa->thrid < tmpb->thrid) {
2293 if (tmpa->thrid > tmpb->thrid) {
2296 tymb = tmpb->tym;
2297 thrid = tmpb->thrid;
2301 tl_assert(tmpa->thrid == tmpb->thrid);
2304 tymb = tmpb->tym;
2348 ScalarTS *tmpa = NULL, *tmpb = NULL;
2354 tmpb = &ctsb[i];
2355 if (LIKELY(tmpa->tym == tmpb->tym
2356 && tmpa->thrid == tmpb->thrid))
2366 if (tmpa->tym < tmpb->tym) return -1;
2367 if (tmpa->tym > tmpb->tym) return 1;
2368 if (tmpa->thrid < tmpb->thrid) return -1;
2369 if (tmpa->thrid > tmpb->thrid) return 1;