HomeSort by: relevance | last modified time | path
    Searched defs:iptr (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/arm/iomd/
iomd_irqhandler.c 181 char *iptr = _intrnames + (irq * 14); local in function:irq_claim
183 strlcpy(iptr, handler->ih_name, 14);
185 snprintf(iptr, 14, "irq %2d ", irq);
291 char *iptr = _intrnames + (irq * 14); local in function:irq_release
293 strlcpy(iptr, irqhandlers[irq]->ih_name, 14);
295 snprintf(iptr, 14, "irq %2d ", irq);
  /src/games/hunt/hunt/
playit.c 73 static unsigned char ibuf[256], *iptr = ibuf; variable in typeref:typename:unsigned char[256]*
75 #define GETCHR() (--icnt < 0 ? getchr() : *iptr++)
230 iptr = ibuf;
232 return *iptr++;
  /src/usr.bin/fsplit/
fsplit.c 337 char line[LINESIZE], *iptr = line; local in function:lname
356 *iptr = tolower((unsigned char)*p);
357 iptr++;
360 *iptr = '\n';
  /src/sys/ufs/ext2fs/
ext2fs_vfsops.c 172 const char *iptr = ondisk; local in function:e2fs_cgload
177 for (int i = 0; i < lim; i++, optr++, iptr += sh) {
178 memcpy(optr, iptr, sizeof(*optr));
181 for (int i = 0; i < lim; i++, optr++, iptr += sh) {
182 memcpy(optr, iptr, E2FS_REV0_GD_SIZE);
199 const struct ext2_gd *iptr = inmemory; local in function:e2fs_cgsave
204 for (int i = 0; i < lim; i++, iptr++, optr += sh) {
205 memcpy(optr, iptr, sizeof(*iptr));
206 memset(optr + sizeof(*iptr), 0, sh - sizeof(*iptr))
    [all...]
  /src/sys/arch/amiga/dev/
grf_cl.c 874 unsigned long long *tptr, *iptr, *mptr, line; local in function:writeshifted
877 iptr = (unsigned long long *) cl_cursprite.image;
889 line = iptr[y];
  /src/sys/dev/ic/
isp.c 4864 uint32_t iptr, optr, junk; local in function:isp_intr
4932 iptr = ISP_READ(isp, BIU2400_ATIO_RSPINP);
4935 while (optr != iptr) {
4989 iptr = ISP_READ(isp, isp->isp_respinrp);
4991 } while (junk != iptr && ++i < 1000);
4993 if (iptr != junk) {
4994 isp_prt(isp, ISP_LOGWARN, "Response Queue Out Pointer Unstable (%x, %x)", iptr, junk);
4998 iptr = ISP_READ(isp, isp->isp_respinrp);
5000 isp->isp_resodx = iptr;
5003 if (optr == iptr && sema == 0)
    [all...]

Completed in 18 milliseconds