/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | swab.c | 40 register unsigned long temp; local 45 #define STEP temp = *from++,*to++ = *from++,*to++ = temp
|
H A D | strftime.c | 67 int i, temp; local 199 temp = tm->tm_hour > 12 ? 202 if (temp < 10) { 204 cp = itoa(temp, cp, 1); 206 cp = itoa(temp, cp, 2); 281 temp = tm->tm_yday - tm->tm_wday; 282 if (temp >= -3 ) { 283 i = (temp + 1) / 7 + 1; /* +1 for - tm->tm_wday */ 284 if (temp % 7 >= 4) 302 temp 403 char temp[MAXLOCALENAME + 1]; local [all...] |
/illumos-gate/usr/src/lib/libnsl/rpc/ |
H A D | rpcdname.c | 55 char temp[256]; local 65 if (getdomainname(temp, (size_t)sizeof (temp)) < 0) { 69 if ((int)strlen(temp) > 0) { 70 default_domain = strdup(temp);
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | processor_info.c | 50 processor_info_t temp; local 57 bcopy(&cp->cpu_type_info, &temp, sizeof (temp)); 66 if (copyout((caddr_t)&temp, (caddr_t)infop,
|
/illumos-gate/usr/src/lib/krb5/dyn/ |
H A D | dyn_realloc.c | 58 DynPtr temp; local 72 temp = (DynPtr) realloc(obj->array, new_size_in_bytes); 73 if (temp == NULL) { 79 obj->array = temp;
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | ptrmove.c | 90 register void *temp; local 95 temp = *a_ptr; 97 *b_ptr-- = temp;
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | deleteln.c | 35 char *temp; local 42 temp = win->_y[win->_cury]; 51 win->_y[y] = temp; 53 temp = win->_y[y]; 54 for (end = &temp[win->_maxx]; temp < end; ) 55 *temp++ = ' ';
|
H A D | insertln.c | 35 char *temp; local 43 temp = win->_y[win->_maxy - 1]; 52 win->_y[y] = temp; 54 temp = win->_y[y]; 55 for (end = &temp[win->_maxx]; temp < end; ) 56 *temp++ = ' ';
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/ |
H A D | util_cksum.c | 49 void *temp; local 109 if ((temp = xmalloc(cksum->length)) == NULL) { 115 memcpy(temp, cksum->contents, cksum->length); 117 cksum->contents = (krb5_octet *)temp;
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | wcstombs.c | 45 char temp[MB_LEN_MAX]; local 53 if ((val = _curs_wctomb(temp, *pwcs++)) == -1) 60 *s++ = temp[i];
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | swab.c | 43 #define STEP (void)((temp = *from++), (*to++ = *from++), (*to++ = temp)) 48 char temp; local
|
/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | setbuf.c | 49 Uchar *temp; local 80 temp = buf + PUSHBACK; 81 iop->_base = temp; 82 _setbufend(iop, temp + size); 83 iop->_ptr = temp;
|
H A D | setvbuf.c | 47 Uchar *temp; local 106 temp = buf + PUSHBACK; 107 iop->_base = temp; 108 _setbufend(iop, temp + size); 109 iop->_ptr = temp;
|
/illumos-gate/usr/src/cmd/eqn/ |
H A D | font.c | 67 char temp[20]; local 69 (void) getstr(temp, 20); 71 gfont = temp[0];
|
H A D | size.c | 51 char temp[20]; local 53 getstr(temp, 20); 54 if (temp[0] == '+') 55 gsize += atoi(temp+1); 56 else if (temp[0] == '-') 57 gsize -= atoi(temp+1); 59 gsize = atoi(temp);
|
/illumos-gate/usr/src/ucblib/libucb/port/gen/ |
H A D | setbuffer.c | 55 Uchar *temp; local 80 temp = buf + PUSHBACK; 81 iop->_base = temp; 82 _setbufend(iop, temp + size); 83 iop->_ptr = temp;
|
/illumos-gate/usr/src/uts/common/io/rtw/ |
H A D | smc93cx6.c | 103 uint32_t temp; local 111 temp = sd->sd_MS ^ sd->sd_CS; 112 SEEPROM_OUTB(sd, temp ^ sd->sd_CK); 121 temp ^= sd->sd_DO; 122 SEEPROM_OUTB(sd, temp); 124 SEEPROM_OUTB(sd, temp ^ sd->sd_CK); 127 temp ^= sd->sd_DO; 132 temp ^= sd->sd_DO; 133 SEEPROM_OUTB(sd, temp); 135 SEEPROM_OUTB(sd, temp [all...] |
/illumos-gate/usr/src/cmd/lp/lib/msgs/ |
H A D | _getmessage.c | 51 int temp = 0; local 152 temp = stoh(buf); 154 if ((buf + temp) > endbuf) 161 buf += temp;
|
/illumos-gate/usr/src/boot/lib/libc/string/ |
H A D | swab.c | 44 unsigned long temp; local 53 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | ptrmove.c | 84 void *temp; local 89 temp = *a_ptr; 91 *b_ptr-- = temp;
|
/illumos-gate/usr/src/lib/libprtdiag/common/ |
H A D | prom.c | 65 char *temp; local 82 temp = vers + strlen(vers) + 1; 83 log_printf("%s", temp, 0);
|
/illumos-gate/usr/src/cmd/factor/ |
H A D | factor.c | 60 double junk, temp; local 99 modf(nn/ii, &temp); 100 if(nn == temp*ii){ 119 double temp; local 121 modf(nn/arg, &temp); 122 if(nn == temp*arg){
|
/illumos-gate/usr/src/cmd/tbl/ |
H A D | t4.c | 56 char sn[10], *snp, *temp; local 175 temp = snp = csize[nclin][icol-1]; 180 if (snp>temp) 188 if (snp-temp>4) 192 if (atoi(temp)>36) 200 temp = snp = vsize[nclin][icol-1]; 205 if (snp>temp) 213 if (snp-temp>4)
|
/illumos-gate/usr/src/lib/libast/common/comp/ |
H A D | mktemp.c | 44 temp(char* buf, int* fdp) function 76 return temp(buf, NiL); 84 return *temp(buf, &fd) ? fd : -1;
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/des/ |
H A D | string2key.c | 57 register unsigned temp; local 121 temp = (unsigned int) *str++; 124 fprintf(stdout,"%02x ",temp & 0xff); 129 *p_char++ ^= (int) temp & 01; 131 *--p_char ^= (int) temp & 01; 132 temp = temp >> 1; 145 temp = 0; 147 temp |= *p_char++ << (1+j); 148 *k_p++ = (unsigned char) temp; [all...] |