/illumos-gate/usr/src/lib/iconv_modules/ko/common/ |
H A D | nbyte_to_UTF2.c | 294 code = (temp[1] >= 'A' && temp[1] <= '^') ? in make_johap_code() 298 temp[2] <= '|') ? X32_21[temp[2] - '`'] in make_johap_code() 301 temp[3] <= '^') ? X32_28[temp[3] - '@'] in make_johap_code() 306 if (temp[3] == 'A' && temp[4] == 'U') /* gs */ in make_johap_code() 308 else if (temp[3] == 'D' && temp[4] == 'X') /* nj */ in make_johap_code() 310 else if (temp[3] == 'D' && temp[4] == '^') /* nh */ in make_johap_code() 312 else if (temp[3] == 'I' && temp[4] == 'A') /* rg */ in make_johap_code() 314 else if (temp[3] == 'I' && temp[4] == 'Q') /* rm */ in make_johap_code() 316 else if (temp[3] == 'I' && temp[4] == 'R') /* rb */ in make_johap_code() 318 else if (temp[3] == 'I' && temp[4] == 'U') /* rs */ in make_johap_code() [all …]
|
H A D | nbyte_to_euc.c | 312 code = (temp[1] >= 'A' && temp[1] <= '^') ? in make_johap_code() 316 temp[2] <= '|') ? X32_21[temp[2] - '`'] in make_johap_code() 319 temp[3] <= '^') ? X32_28[temp[3] - '@'] in make_johap_code() 324 if (temp[3] == 'A' && temp[4] == 'U') /* gs */ in make_johap_code() 326 else if (temp[3] == 'D' && temp[4] == 'X') /* nj */ in make_johap_code() 328 else if (temp[3] == 'D' && temp[4] == '^') /* nh */ in make_johap_code() 330 else if (temp[3] == 'I' && temp[4] == 'A') /* rg */ in make_johap_code() 332 else if (temp[3] == 'I' && temp[4] == 'Q') /* rm */ in make_johap_code() 334 else if (temp[3] == 'I' && temp[4] == 'R') /* rb */ in make_johap_code() 336 else if (temp[3] == 'I' && temp[4] == 'U') /* rs */ in make_johap_code() [all …]
|
H A D | nbyte_euc.h | 83 char temp[5];\ 85 temp[1] = cd->hbuf[1];\ 86 temp[2] = cd->hbuf[2];\ 87 temp[3] = cd->hbuf[3];\ 88 temp[4] = cd->hbuf[4];\ 90 make_johap_code((K), temp))) != FAILED)\ 98 cd->hbuf[1] = temp[1];\ 99 cd->hbuf[2] = temp[2];\ 100 cd->hbuf[3] = temp[3];\ 101 cd->hbuf[4] = temp[4];\
|
H A D | nbyte_utf.h | 81 char temp[5];\ 83 temp[1] = cd->hbuf[1];\ 84 temp[2] = cd->hbuf[2];\ 85 temp[3] = cd->hbuf[3];\ 86 temp[4] = cd->hbuf[4];\ 88 make_johap_code((K), temp))) == HANGUL)\ 96 cd->hbuf[1] = temp[1];\ 97 cd->hbuf[2] = temp[2];\ 98 cd->hbuf[3] = temp[3];\ 99 cd->hbuf[4] = temp[4];\
|
/illumos-gate/usr/src/lib/libfdisk/common/ |
H A D | libfdisk.c | 366 for (pno = 5; temp != NULL; temp = temp->next, pno++) { in fdisk_get_solaris_part() 394 for (pno = 5; (pno < pnum) && (temp != NULL); temp = temp->next, pno++) in fdisk_get_part_info() 430 for (temp = epp->ld_head; temp != NULL; ) { in fdisk_free_ld_nodes() 468 for (temp = epp->sorted_ld_head; temp != NULL; temp = in fdisk_ext_find_first_free_sec() 472 temp->logdrive_offset + temp->numsect; in fdisk_ext_find_first_free_sec() 510 temp = temp->sorted_next) { in fdisk_ext_find_last_free_sec() 573 for (temp = epp->ld_head; temp != NULL; temp = temp->next) { in fdisk_ext_overlapping_parts() 864 for (temp = epp->ld_head; temp != NULL; temp = temp->next) { in fdisk_ext_validate_part_start() 882 for (temp = epp->ld_head; i < pno; temp = temp->next, i++) in fdisk_change_logical_drive_id() 1231 for (temp = epp->ld_head; temp != NULL; temp = temp->next) { in fdisk_commit_ext_part() [all …]
|
/illumos-gate/usr/src/cmd/smbsrv/test-msgbuf/ |
H A D | test_msgbuf.c | 47 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_a0() 79 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_a1() 108 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_apad() 138 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_atrunc1() 169 (void) memset(temp, 0, sizeof (temp)); in msg_put_atrunc2() 204 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_u0() 236 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_u1() 264 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_u3() 292 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_u4() 321 smb_msgbuf_init(&mb, temp, sizeof (temp), mbflags); in msg_put_upad() [all …]
|
/illumos-gate/usr/src/common/lzma/ |
H A D | LzHash.h | 18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 19 hash2Value = temp & (kHash2Size - 1); \ 20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; } 23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 24 hash2Value = temp & (kHash2Size - 1); \ 29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 30 hash2Value = temp & (kHash2Size - 1); \ 44 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ 45 hash2Value = temp & (kHash2Size - 1); \ 49 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \ [all …]
|
/illumos-gate/usr/src/lib/libadm/common/ |
H A D | pkginfo.c | 194 char temp[256]; in rdconfig() local 203 *temp = '\0'; in rdconfig() 232 temp[0] = '\0'; in rdconfig() 254 (void) snprintf(temp, sizeof (temp), in rdconfig() 259 (void) snprintf(temp, sizeof (temp), in rdconfig() 379 char temp[256]; in compver() local 381 (void) snprintf(temp, sizeof (temp), in compver() 387 if (*temp == '#') in compver() 425 char temp[128]; in ckinfo() local 438 temp[0] = '\0'; in ckinfo() [all …]
|
/illumos-gate/usr/src/lib/libprtdiag/common/ |
H A D | libdevinfo_sun4u.c | 303 temp->name.opp.oprom_array = temp->name.val_ptr; in dump_di_node() 314 temp->value.opp.oprom_array = temp->value.val_ptr; in dump_di_node() 321 temp->size = retval; in dump_di_node() 325 pnode->props = temp; in dump_di_node() 327 prop->next = temp; in dump_di_node() 328 prop = temp; in dump_di_node() 373 temp->name.opp.oprom_array = temp->name.val_ptr; in dump_di_node() 384 temp->value.opp.oprom_array = temp->value.val_ptr; in dump_di_node() 388 temp->size = retval; in dump_di_node() 394 prop->next = temp; in dump_di_node() [all …]
|
H A D | pdevinfo_funcs.c | 119 StaticProp *temp; in dump_node() local 153 temp->name.opp.oprom_array); in dump_node() 155 temp->size = temp->value.opp.oprom_size; in dump_node() 220 new->size = temp->size; in dump_node() 231 free(temp); in dump_node() 387 if (temp == NULL) in insert_board() 390 bnode->next = temp; in insert_board() 393 while ((temp->next != NULL) && (board > temp->next->board_num)) in insert_board() 394 temp = temp->next; in insert_board() 395 bnode->next = temp->next; in insert_board() [all …]
|
/illumos-gate/usr/src/uts/common/io/rtw/ |
H A D | smc93cx6.c | 103 uint32_t temp; local 121 temp ^= sd->sd_DO; 122 SEEPROM_OUTB(sd, temp); 127 temp ^= sd->sd_DO; 132 temp ^= sd->sd_DO; 133 SEEPROM_OUTB(sd, temp); 138 temp ^= sd->sd_DO; 149 SEEPROM_OUTB(sd, temp); 161 temp = sd->sd_MS; 162 SEEPROM_OUTB(sd, temp); [all …]
|
/illumos-gate/usr/src/lib/libm/common/LD/ |
H A D | jnl.c | 118 temp = cosl(x)+sinl(x); in jnl() 121 temp = -cosl(x)+sinl(x); in jnl() 135 temp = b; in jnl() 138 a = temp; in jnl() 220 temp = b; in jnl() 222 a = temp; in jnl() 226 temp = b; in jnl() 228 a = temp; in jnl() 250 GENERIC a, b, temp = 0; in ynl() local 310 temp = b; in ynl() [all …]
|
/illumos-gate/usr/src/lib/libm/common/Q/ |
H A D | jnl.c | 74 GENERIC a, b, temp, z, w; in jnl() local 118 temp = cosl(x)+sinl(x); in jnl() 135 temp = b; in jnl() 138 a = temp; in jnl() 220 temp = b; in jnl() 222 a = temp; in jnl() 226 temp = b; in jnl() 228 a = temp; in jnl() 250 GENERIC a, b, temp; in ynl() local 309 temp = b; in ynl() [all …]
|
/illumos-gate/usr/src/cmd/svr4pkg/pkgmk/ |
H A D | mkpkgmap.c | 135 char temp[PATH_LGTH]; in mkpkgmap() local 378 mappath(0, temp); in findfile() 379 canonize(temp); in findfile() 414 temp + (*temp == '/' ? 1 : 0)); in findfile() 423 pt = temp; in findfile() 464 (void) snprintf(temp, sizeof (temp), in dosearch() 466 pt = temp; in dosearch() 492 (void) snprintf(temp, sizeof (temp), in dorsearch() 494 pt = temp; in dorsearch() 601 canonize(temp); in doinclude() [all …]
|
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | jn.c | 75 GENERIC a, b, temp = 0; in jn() local 128 temp = cos(x)+sin(x); in jn() 131 temp = -cos(x)+sin(x); in jn() 145 temp = b; in jn() 148 a = temp; in jn() 229 temp = b; in jn() 231 a = temp; in jn() 235 temp = b; in jn() 237 a = temp; in jn() 328 temp = b; in yn() [all …]
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/ |
H A D | kfree.c | 52 for (temp = val; *temp; temp++) { in krb5_free_addresses() 55 krb5_xfree(*temp); in krb5_free_addresses() 121 for (temp = val; *temp; temp++) { in krb5_free_authdata() 123 krb5_xfree_wrap((*temp)->contents, (*temp)->length); in krb5_free_authdata() 224 for (temp = val->ticket_info; *temp; temp++) { in krb5_free_cred_enc_part() 485 for (temp = val; *temp; temp++) in krb5_free_last_req() 486 krb5_xfree(*temp); in krb5_free_last_req() 495 for (temp = val; *temp; temp++) { in krb5_free_pa_data() 498 krb5_xfree(*temp); in krb5_free_pa_data() 569 for (temp = val; *temp; temp++) { in krb5_free_pwd_sequences() [all …]
|
/illumos-gate/usr/src/uts/common/io/ntxn/ |
H A D | niu.c | 124 temp.tx_reset_pb = 1; in unm_niu_gbe_phy_read() 220 temp <<= 16; in unm_niu_macaddr_set() 222 &temp, 4); in unm_niu_macaddr_set() 223 temp = 0; in unm_niu_macaddr_set() 226 &temp, 4); in unm_niu_macaddr_set() 491 temp <<= 16; in unm_niu_xg_macaddr_set() 497 temp = 0; in unm_niu_xg_macaddr_set() 505 temp = 0; in unm_niu_xg_macaddr_set() 515 temp <<= 16; in unm_niu_xg_macaddr_set() 521 temp = 0; in unm_niu_xg_macaddr_set() [all …]
|
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/ |
H A D | utility.c | 81 temp->next = node; in dlist_add_as_last() 114 temp = temp->prev; in dlist_get_first() 116 return (temp); in dlist_get_first() 131 temp = temp->next; in dlist_get_last() 133 return (temp); in dlist_get_last() 144 while (temp) { in dlist_length() 146 temp = temp->next; in dlist_length() 205 if (temp) in dlist_remove_node() 209 return (temp); in dlist_remove_node() 215 while ((temp != NULL) && (temp->next != node)) in dlist_remove_node() [all …]
|
/illumos-gate/usr/src/test/util-tests/tests/awk/ |
H A D | runtests.sh | 106 $AWK -f $PROG > $WORKDIR/test.temp.out 2>&1 || \ 107 echo EXIT CODE: $? >> $WORKDIR/test.temp.out 108 if diff $WORKDIR/test.temp.out <(proctemplate ${PROG/.awk/.ok}); then 124 rm -f $WORKDIR/test.temp* 144 $AWK -f $PROG < $INPUT > $WORKDIR/test.temp.out 2>&1 || \ 145 echo EXIT CODE: $? >> $WORKDIR/test.temp.out 147 $AWK -f $PROG > $WORKDIR/test.temp.out 2>&1 || \ 148 echo EXIT CODE: $? >> $WORKDIR/test.temp.out 150 if diff $WORKDIR/test.temp.out ${PROG/.awk/.ok}; then 162 $script > $WORKDIR/test.temp.out 2>&1 [all …]
|
/illumos-gate/usr/src/cmd/utmp_update/ |
H A D | utmp_update.c | 230 int temp, i; in load_utmpx_struct() local 253 (void) sscanf(pid, "%d", &temp); in load_utmpx_struct() 254 entryx->ut_pid = temp; in load_utmpx_struct() 256 (void) sscanf(type, "%d", &temp); in load_utmpx_struct() 257 entryx->ut_type = temp; in load_utmpx_struct() 263 entryx->ut_exit.e_exit = temp; in load_utmpx_struct() 273 entryx->ut_tv.tv_sec = temp; in load_utmpx_struct() 276 entryx->ut_tv.tv_usec = temp; in load_utmpx_struct() 279 entryx->ut_session = temp; in load_utmpx_struct() 281 temp = strlen(pad); in load_utmpx_struct() [all …]
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/des/ |
H A D | string2key.c | 57 register unsigned temp; in mit_des_string_to_key_int() local 121 temp = (unsigned int) *str++; in mit_des_string_to_key_int() 124 fprintf(stdout,"%02x ",temp & 0xff); in mit_des_string_to_key_int() 129 *p_char++ ^= (int) temp & 01; in mit_des_string_to_key_int() 131 *--p_char ^= (int) temp & 01; in mit_des_string_to_key_int() 132 temp = temp >> 1; in mit_des_string_to_key_int() 145 temp = 0; in mit_des_string_to_key_int() 147 temp |= *p_char++ << (1+j); in mit_des_string_to_key_int() 148 *k_p++ = (unsigned char) temp; in mit_des_string_to_key_int()
|
/illumos-gate/usr/src/cmd/eqn/ |
H A D | size.c | 49 char temp[20]; in globsize() local 51 getstr(temp, 20); in globsize() 52 if (temp[0] == '+') in globsize() 53 gsize += atoi(temp+1); in globsize() 54 else if (temp[0] == '-') in globsize() 55 gsize -= atoi(temp+1); in globsize() 57 gsize = atoi(temp); in globsize()
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | deleteln.c | 33 char *temp; in wdeleteln() local 40 temp = win->_y[win->_cury]; in wdeleteln() 49 win->_y[y] = temp; in wdeleteln() 51 temp = win->_y[y]; in wdeleteln() 52 for (end = &temp[win->_maxx]; temp < end; ) in wdeleteln() 53 *temp++ = ' '; in wdeleteln()
|
H A D | insertln.c | 33 char *temp; in winsertln() local 41 temp = win->_y[win->_maxy - 1]; in winsertln() 50 win->_y[y] = temp; in winsertln() 52 temp = win->_y[y]; in winsertln() 53 for (end = &temp[win->_maxx]; temp < end; ) in winsertln() 54 *temp++ = ' '; in winsertln()
|
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/ |
H A D | T.-f-f | 17 TEMP0=$WORKDIR/test.temp.0 18 TEMP1=$WORKDIR/test.temp.1 19 TEMP2=$WORKDIR/test.temp.2 20 TEMP3=$WORKDIR/test.temp.3 21 TEMP4=$WORKDIR/test.temp.4 22 TEMP5=$WORKDIR/test.temp.5 23 TEMP6=$WORKDIR/test.temp.6
|