Lines Matching refs:tb
1865 u_char *cp, tb[5];
1897 tb[0] = sc->cachetrk / FDNHEADS;
1898 tb[1] = sc->cachetrk % FDNHEADS;
1899 tb[2] = sec + 1;
1901 tb[3] = i < 256 ? 0 : (i < 512 ? 1 : (i < 1024 ? 2 : 3));
1902 rp = msblkencode(rp, tb, 4, &crc);
1903 tb[0] = crc >> 8;
1904 tb[1] = crc & 0xff;
1905 tb[2] = 0x4e; /* GAP1 decoded */
1906 rp = msblkencode(rp, tb, 3, 0);
1927 tb[0] = crc >> 8;
1928 tb[1] = crc & 0xff;
1929 tb[2] = 0x4e; /* GAP3 decoded */
1930 rp = msblkencode(rp, tb, 3, 0);
1952 u_char tb[5], *cp;
1979 rp = msblkdecode(rp, tb, 4);
1982 "bps %d\n", tb[2], tb[0], tb[1], 128 << tb[3]);
1984 if ((tb[0] * FDNHEADS + tb[1]) != sc->cachetrk ||
1985 tb[2] > sc->nsectors)
1988 sec = tb[2];
1989 sc->bytespersec = 128 << tb[3];