Searched refs:optr (Results 1 - 9 of 9) sorted by relevance
| /src/lib/libc/stdlib/ |
| H A D | reallocarray.c | 47 reallocarray(void *optr, size_t nmemb, size_t size) argument 52 return realloc(optr, 0); 54 e = reallocarr(&optr, nmemb, size); 56 return optr;
|
| H A D | reallocarr.c | 60 void *optr; local in function:__weak_alias 64 memcpy(&optr, ptr, sizeof(ptr)); 66 free(optr); 85 nptr = realloc(optr, number * size);
|
| /src/lib/libc/stdio/ |
| H A D | flags.c | 54 * to be passed to an open() syscall through *optr. 58 __sflags(const char *mode, int *optr) argument 120 *optr = m | o;
|
| /src/sys/arch/evbppc/wii/dev/ |
| H A D | si.c | 262 uint8_t *optr = report; local in function:si_make_report 269 optr[off++] = chan + 1; 272 optr[off] = 0; 273 optr[off] |= GCPAD_X(iptr) ? 0x01 : 0; 274 optr[off] |= GCPAD_A(iptr) ? 0x02 : 0; 275 optr[off] |= GCPAD_B(iptr) ? 0x04 : 0; 276 optr[off] |= GCPAD_Y(iptr) ? 0x08 : 0; 277 optr[off] |= GCPAD_LCLICK(iptr) ? 0x10 : 0; 278 optr[off] |= GCPAD_RCLICK(iptr) ? 0x20 : 0; 279 optr[of [all...] |
| /src/sbin/dump/ |
| H A D | Makefile | 7 # optr.c operator interface 31 SRCS= itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
|
| /src/sbin/dump_lfs/ |
| H A D | Makefile | 18 SRCS= itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
|
| /src/sys/ufs/ext2fs/ |
| H A D | ext2fs_vfsops.c | 173 struct ext2_gd *optr = inmemory; 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); 183 memset((char *)optr + E2FS_REV0_GD_SIZE, 0, 184 sizeof(*optr) - E2FS_REV0_GD_SIZE); 200 char *optr = ondisk; local in function:e2fs_cgsave 204 for (int i = 0; i < lim; i++, iptr++, optr [all...] |
| /src/lib/libc/nameser/ |
| H A D | ns_parse.c | 89 const u_char *optr = ptr; local in function:ns_skiprr 108 _DIAGASSERT(__type_fit(int, ptr - optr)); 109 return (int)(ptr - optr);
|
| /src/sys/dev/ic/ |
| H A D | isp.c | 4864 uint32_t iptr, optr, junk; local in function:isp_intr 4868 optr = isp->isp_residx; 4933 optr = ISP_READ(isp, BIU2400_ATIO_RSPOUTP); 4935 while (optr != iptr) { 4941 oop = optr; 4955 optr = ISP_NXT_QENTRY(oop, RESULT_QUEUE_LEN(isp)); 4956 ISP_WRITE(isp, BIU2400_ATIO_RSPOUTP, optr); 4958 optr = isp->isp_residx; 4968 optr = ISP_READ(isp, isp->isp_respoutrp); 4972 if (isp->isp_residx != optr) { [all...] |
Completed in 132 milliseconds