Searched refs:pushlevel (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/lib/libusbhid/
H A Dparse.c66 uint8_t pushlevel; /* current pushlevel */ member in struct:hid_data
223 c = &s->cur[s->pushlevel];
405 if ((s->pushlevel + 1) >= MAXPUSH)
407 s->pushlevel ++;
408 s->cur[s->pushlevel] = *c;
413 c = &s->cur[s->pushlevel];
417 if (s->pushlevel == 0)
419 s->pushlevel --;
420 c = &s->cur[s->pushlevel];
[all...]
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hid.c96 uint8_t pushlevel; /* current pushlevel */ member in struct:hid_data
254 c = &s->cur[s->pushlevel];
438 if ((s->pushlevel + 1) >= MAXPUSH) {
439 DPRINTFN(0, "Cannot push item @ %d\n", s->pushlevel);
442 s->pushlevel ++;
443 s->cur[s->pushlevel] = *c;
448 c = &s->cur[s->pushlevel];
452 if (s->pushlevel == 0) {
456 s->pushlevel
[all...]

Completed in 83 milliseconds