Home | History | Annotate | Download | only in booke

Lines Matching defs:tb

671 			uint64_t tb = cpu->cpu_spl_tb[to][from];
672 if (tb == 0)
674 tbs[ntbs++] = (tb << 8) | (to << 4) | from;
683 uint64_t tb = tbs[i];
684 size_t from = tb & 15;
685 size_t to = (tb >> 4) & 15;
686 tb >>= 8;
689 to, from, tb);
691 (*pr)(" (+%"PRId64")", tb - last_tb);
693 last_tb = tb;