Home | History | Annotate | Download | only in usb

Lines Matching defs:want

2087 	size_t got, len, want;
2124 want = mtod(m, struct ip *)->ip_hl << 2;
2126 || want != sizeof(struct ip)) {
2129 mtod(m, struct ip *)->ip_v, want);
2137 if (got < want) {
2138 len = MIN(want - got, cc);
2144 if (got < want) {
2146 "(got %zd want %zd)\n", got, want);
2155 want = ntohs(mtod(m, struct ip *)->ip_len);
2156 if (got < want) {
2157 len = MIN(want - got, cc);
2163 if (got < want) {
2165 "(got %zd want %zd)\n", got, want);