/illumos-gate/usr/src/cmd/bnu/ |
H A D | versys.c | 50 register char *iptr; local 59 if ((iptr = aliasFind(name)) != NULL) { 61 strncpy(name, iptr, MAXBASENAME); 75 if ((iptr=strpbrk(line, " \t")) == NULL) 77 *iptr = '\0';
|
H A D | uuencode.c | 184 unsigned char *iptr, *optr; local 192 iptr = in_buf; 196 n = fread(iptr, 1, 45, in); 201 *(optr++) = ENC(*iptr >> 2); 202 *(optr++) = ENC((*iptr << 4) & 060 | 203 (*(iptr + 1) >> 4) & 017); 204 *(optr++) = ENC((*(iptr + 1) << 2) & 074 | 205 (*(iptr + 2) >> 6) & 03); 206 *(optr++) = ENC(*(iptr + 2) & 077); 207 iptr [all...] |
H A D | uudecode.c | 290 char inbuf[120], *ibp, *iptr; local 358 iptr = inbuf; 359 while ((curchr = *(iptr++)) != NULL) {
|
/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | modf.c | 34 * modf(x, iptr) decomposes x into an integral part and a fractional 36 * in *iptr and returns the fractional part. 38 * If x is infinite, modf sets *iptr to x and returns copysign(0.0,x). 39 * If x is NaN, modf sets *iptr to x and returns x. 48 __modf(double x, double *iptr) { argument 59 *iptr = x; 71 *iptr = xx.d; 86 *iptr = yy.d;
|
H A D | modff.c | 36 __modff(float x, float *iptr) { argument 47 *iptr = x; 55 *iptr = xx.f; 62 *iptr = yy.f;
|
H A D | modfl.c | 37 __modfl(long double x, long double *iptr) { argument 48 *iptr = x; 60 *iptr = xx.q; 84 *iptr = yy.q; 99 __modfl(long double x, long double *iptr) { argument 114 *iptr = x; 126 *iptr = xx.e; 140 *iptr = yy.e;
|
/illumos-gate/usr/src/lib/libsmbfs/smb/ |
H A D | utf_str.c | 96 const char *iptr; local 105 iptr = (const char *)us; 117 ret = iconv(cd, &iptr, &ileft, &optr, &oleft); 171 const char *iptr; local 180 iptr = utf8_string; 181 ileft = strlen(iptr); 191 ret = iconv(cd, &iptr, &ileft, (char **)&optr, &oleft);
|
/illumos-gate/usr/src/common/iscsi/ |
H A D | base64.c | 118 char *iptr; local 133 iptr = hstr; 135 while (((curchr = *(iptr++)) != NULL) && 136 (((uintptr_t)iptr - (uintptr_t)hstr) <= hstr_len)) { 189 uint8_t *iptr; local 194 iptr = in_buf; 204 while (iptr + 3 <= in_buf + in_buf_len) { 208 *(optr++) = ENC(*iptr >> 2); 209 *(optr++) = ENC((*iptr << 4) & 060 | 210 (*(iptr [all...] |
/illumos-gate/usr/src/cmd/iconv/ |
H A D | iconv_main.c | 47 size_t (*pconv)(const char **iptr, size_t *ileft, 51 lib_iconv(const char **iptr, size_t *ileft, char **optr, size_t *oleft) argument 53 return (iconv(ich, iptr, ileft, optr, oleft)); 185 const char *iptr; local 194 iptr = ibuf + MB_LEN_MAX; 198 assert(iptr <= ibuf+MB_LEN_MAX); 214 rc = (*pconv)(&iptr, &ileft, &optr, &oleft); 247 (void) memmove(p, iptr, ileft); 248 iptr = p; 264 iptr[ [all...] |
H A D | charmap.c | 505 cm_iconv(const char **iptr, size_t *ileft, char **optr, size_t *oleft) argument 511 if (iptr == NULL || *iptr == NULL) 523 cm = find_mbs(*iptr, mbs_len); 526 find_mbs_partial(*iptr, mbs_len)) { 546 *iptr += cm->cm_frmbs_len; 551 *iptr += cm->cm_frmbs_len;
|
/illumos-gate/usr/src/lib/efcode/engine/ |
H A D | actions.c | 76 instance_t **iptr; local 79 iptr = (instance_t **)get_internal_address(env); 80 PUSH(DS, (fstack_t)(*iptr)); 86 instance_t **iptr; local 89 iptr = (instance_t **)get_internal_address(env); 90 *iptr = (instance_t *)POP(DS);
|
/illumos-gate/usr/src/lib/libtecla/common/ |
H A D | keytab.c | 549 const char *iptr = keyseq; /* Pointer into keyseq[] */ local 556 while(*iptr) { 560 switch(*iptr) { 567 if(iptr[1]) { 571 if(iptr[1] == '\\') { 572 c = _kt_backslash_escape(iptr+2, &iptr); 574 c = iptr[1]; 575 iptr += 2; 582 *optr++ = *iptr [all...] |
/illumos-gate/usr/src/cmd/nl/ |
H A D | nl.c | 119 FILE *iptr = stdin; local 298 if ((iptr = fopen(argv[0], "r")) == NULL) { 511 } else if ((iptr = fopen(argv[j], "r")) == NULL) { 517 } else if ((iptr = fopen(argv[j], "r")) == NULL) { 543 while ((p = fgets(line, sizeof (line), iptr)) != NULL) { 648 (void) fclose(iptr);
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | expand.c | 177 uint32_t *iptr = (uint32_t *)vendor; local 179 *iptr++ = vcr->r_ebx; 180 *iptr++ = vcr->r_edx; 181 *iptr++ = vcr->r_ecx;
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4v/lib/snmp/ |
H A D | pdu.h | 47 int *iptr; member in union:pdu_varlist::__anon1253
|
/illumos-gate/usr/src/cmd/bdiff/ |
H A D | bdiff.c | 327 saverest(char **linep, size_t *bufsizp, FILE *iptr) argument 339 lp = readline(linep, bufsizp, iptr);
|
/illumos-gate/usr/src/uts/sun4/os/ |
H A D | intr.c | 454 struct intr_dist *iptr; local 464 for (iptr = *phead, pptr = phead; iptr != NULL; 465 pptr = &iptr->next, iptr = iptr->next) { 467 if ((iptr->func == func) && (iptr->arg == arg)) { 498 struct intr_dist *iptr; local 502 for (iptr 574 struct intr_dist *iptr; local [all...] |
/illumos-gate/usr/src/cmd/sgs/tools/common/ |
H A D | sgsmsg.c | 365 const char *iptr, *_ptr; local 370 for (iptr = 0, _ptr = fldefs; _ptr && (*_ptr != '\0'); _ptr++) { 372 iptr = _ptr + 1; 374 if (iptr == 0) 375 iptr = fldefs; 378 for (*optr++ = '_'; iptr && (*iptr != '\0'); iptr++, optr++) { 379 if (*iptr == '.') { 386 *optr = toupper(*iptr); [all...] |
/illumos-gate/usr/src/lib/libm1/common/ |
H A D | libmv1.c | 492 __modff(float x, float *iptr) { argument 624 __modfl(long double x, long double *iptr) { argument
|
/illumos-gate/usr/src/cmd/vscan/vscand/ |
H A D | vs_icap.c | 1971 unsigned char *iptr; local 1976 for (iptr = (unsigned char *)data; *iptr; iptr++) { 1977 if (vs_icap_uri_illegal_char(*iptr)) { 1980 (void) sprintf(optr, "%%%0x", *iptr); 1985 *optr++ = *iptr;
|
/illumos-gate/usr/src/uts/i86pc/io/ |
H A D | mp_platform_misc.c | 217 int *iptr; local 236 iptr = (int *)&apic_irq_table[0]; 239 *iptr++ = NULL;
|
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/ |
H A D | emlxs_mbox.c | 2402 uint32_t *iptr; local 2409 iptr = (uint32_t *)&nsp->portName; 2410 if (iptr[0] == 0 && iptr[1] == 0) { 2414 iptr = (uint32_t *)&nsp->nodeName; 2415 if (iptr[0] == 0 && iptr[1] == 0) {
|
/illumos-gate/usr/src/uts/i86xpv/io/psm/ |
H A D | mp_platform_xpv.c | 206 int *iptr; local 225 iptr = (int *)&apic_irq_table[0]; 228 *iptr++ = 0;
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | cryptmod.c | 440 char *iptr, *optr, *lastoutput; local 443 iptr = (char *)mp->b_rptr; 446 while (iptr < (char *)mp->b_wptr) { 480 *(optr++) = *(iptr++) ^ 536 char *iptr; local 543 lastinput = iptr = (char *)mp->b_rptr; 561 while (iptr < (char *)mp->b_wptr) { 595 *(iptr++) ^= tmi->dec_data.block[tmi->dec_data.bytes %
|
/illumos-gate/usr/src/uts/i86pc/io/apix/ |
H A D | apix.c | 292 int i, *iptr; local 308 iptr = (int *)&apic_irq_table[0]; 311 *iptr++ = NULL;
|