/src/sys/net/npf/ |
npf_bpf.c | 146 const size_t icount = len / sizeof(struct bpf_insn); local in function:npf_bpf_validate 147 return bpf_validate_ext(npf_bpfctx, code, icount) != 0;
|
/src/sys/dev/ic/ |
bt485.c | 321 u_int count = 0, icount = 0, index = 0, v; local in function:bt485_set_cursor 351 icount = (CURSOR_MAX_SIZE / NBBY) * data->cursize.y; 352 error = copyin(cursorp->image, image, icount); 355 error = copyin(cursorp->mask, mask, icount); 386 memcpy(data->curimage, image, icount); 387 memcpy(data->curmask, mask, icount);
|
igsfb.c | 911 u_int v, index, count, icount, iwidth; local in function:igsfb_set_cursor 917 index = count = icount = iwidth = 0; /* XXX: gcc */ 944 icount = iwidth * p->size.y; 945 error = copyin(p->image, image, icount); 948 error = copyin(p->mask, mask, icount); 997 memcpy(cc->cc_image, image, icount); 998 memcpy(cc->cc_mask, mask, icount);
|
/src/sys/dev/tc/ |
cfb.c | 714 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 737 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 738 error = copyin(p->image, image, icount); 741 error = copyin(p->mask, mask, icount); 761 memcpy(cc->cc_image, image, icount); 763 memcpy(cc->cc_mask, mask, icount);
|
mfb.c | 609 u_int v, count = 0, icount = 0, index = 0; local in function:set_cursor 628 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 629 error = copyin(p->image, image, icount); 632 error = copyin(p->mask, mask, icount); 649 memcpy(cc->cc_image, image, icount); 651 memcpy(cc->cc_mask, mask, icount);
|
xcfb.c | 588 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 612 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 613 error = copyin(p->image, image, icount); 616 error = copyin(p->mask, mask, icount); 630 memcpy(cc->cc_image, image, icount); 632 memcpy(cc->cc_mask, mask, icount);
|
sfb.c | 768 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 791 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 792 error = copyin(p->image, image, icount); 795 error = copyin(p->mask, mask, icount); 815 memcpy(cc->cc_image, image, icount); 817 memcpy(cc->cc_mask, mask, icount);
|
stic.c | 1294 u_int v, index = 0, count = 0, icount = 0; local in function:stic_set_cursor 1319 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 1320 error = copyin(p->image, image, icount); 1323 error = copyin(p->mask, mask, icount); 1350 memcpy(cc->cc_image, image, icount); 1352 memcpy(cc->cc_mask, mask, icount);
|
tfb.c | 772 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 795 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 796 error = copyin(p->image, image, icount); 799 error = copyin(p->mask, mask, icount); 819 memcpy(cc->cc_image, image, icount); 821 memcpy(cc->cc_mask, mask, icount);
|
sfbplus.c | 751 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 774 icount = ((p->size.x < 33) ? 4 : 8) * p->size.y; 775 error = copyin(p->image, image, icount); 778 error = copyin(p->mask, mask, icount); 798 memcpy(cc->cc_image, image, icount); 800 memcpy(cc->cc_mask, mask, icount);
|
/src/sys/netinet6/ |
ip6_mroute.h | 196 u_quad_t icount; /* Input packet count on mif */ member in struct:sioc_mif_req6
|
/src/sys/arch/arm/iomd/ |
vidcvideo.c | 694 u_int v, index = 0, count = 0, icount = 0; local in function:set_cursor 699 index = count = icount = 0; 722 icount = sizeof(uint32_t) * p->size.y; 723 error = copyin(p->image, &image, icount); 726 error = copyin(p->mask, &mask, icount); 745 memcpy(cc->cc_image, image, icount); 747 memcpy(cc->cc_mask, mask, icount);
|
/src/sys/netinet/ |
ip_mroute.h | 189 u_long icount; /* input packet count on vif */ member in struct:sioc_vif_req
|
/src/sys/compat/netbsd32/ |
netbsd32_ioctl.h | 508 netbsd32_u_long icount; /* input packet count on vif */ member in struct:netbsd32_sioc_vif_req
|