Lines Matching defs:hsize
447 u_int hsize = loc->size;
450 if (hsize == 0)
454 if (data < (1UL << (hsize - 1)) || hsize == sizeof(data) * NBBY)
456 return data - (1UL << hsize);
463 u_int hsize = loc->size;
467 if (hsize == 0)
472 num = (hpos + hsize + 7) / 8 - off;
478 if (hsize < sizeof(data) * NBBY)
479 data &= (1UL << hsize) - 1;
481 DPRINTFN(10,("hid_get_udata: loc %d/%d = %lu\n", hpos, hsize, data));