Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/iconv_modules/vi/common/
H A DUTF-8%tcvn.c101 temp2 = 0, in _icv_iconv() local
132 temp2 = (unsigned short)(*(op+1) & 0x3F); in _icv_iconv()
133 temp2 <<= 6; in _icv_iconv()
134 temp1 = temp1 | temp2 | (unsigned short)(*(op+2) & 0x3F); in _icv_iconv()
148 temp2 = (*(op+1) & 0x3F); in _icv_iconv()
149 temp2 <<= 12; in _icv_iconv()
152 temp1 = temp1 | temp2 | temp3 |(unsigned long)(*(op+2) & 0x3F); in _icv_iconv()
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwdelch.c53 chtype *temp1, *temp2; in wdelch() local
61 temp2 = &win->_y[cury][curx + 1]; in wdelch()
62 temp1 = temp2 - 1; in wdelch()
84 temp2 = &win->_y[cury][curx+s]; in wdelch()
88 *temp1++ = *temp2++; in wdelch()
/illumos-gate/usr/src/ucblib/libcurses/
H A Ddelch.c32 char *temp1, *temp2; in wdelch() local
37 temp2 = temp1 + 1; in wdelch()
39 *temp1++ = *temp2++; in wdelch()
H A Dinsch.c32 char *temp1, *temp2; in winsch() local
37 temp2 = temp1 - 1; in winsch()
39 *temp1-- = *temp2--; in winsch()
/illumos-gate/usr/src/tools/cscope-fast/
H A Dcommand.c284 (void) strcat(strcat(newpat, " >"), temp2); in command()
300 if (readrefs(temp2) == NO) { in command()
498 if ((script = fopen(temp2, "w")) == NULL) { in changestring()
499 cannotopen(temp2); in changestring()
663 (void) execute(shell, shell, temp2, (char *)NULL); in changestring()
H A Ddisplay.c415 if ((nonglobalrefs = fopen(temp2, "w")) == NULL) { in search()
416 cannotopen(temp2); in search()
425 (void) freopen(temp2, "r", nonglobalrefs); in search()
H A Dglobal.h106 extern char temp2[]; /* temporary file name */
H A Dmain.c96 char temp2[PATHLEN + 1]; /* temporary file name */ variable
193 (void) sprintf(temp2, "%s/cscope%d.2", tmpdir, (int)pid); in main()
1608 (void) unlink(temp2); in myexit()
/illumos-gate/usr/src/uts/common/io/usb/clients/hidparser/
H A Dhidparser.c2740 entity_attribute_t *temp1, *temp2; in hidparser_check_correspondence() local
2744 if ((temp1 != NULL) && (temp2 == NULL)) { in hidparser_check_correspondence()
2752 if ((temp2 != NULL) && (temp1 == NULL)) { in hidparser_check_correspondence()
2772 entity_attribute_t *temp1, *temp2; in hidparser_check_minmax_val() local
2776 if ((temp1 != NULL) && (temp2 != NULL)) { in hidparser_check_minmax_val()
2778 hidparser_find_unsigned_val(temp2)) { in hidparser_check_minmax_val()
2796 if (hidparser_find_unsigned_val(temp2) < in hidparser_check_minmax_val()
2828 entity_attribute_t *temp1, *temp2; in hidparser_check_minmax_val_signed() local
2832 if ((temp1 != NULL) && (temp2 != NULL)) { in hidparser_check_minmax_val_signed()
2834 hidparser_find_signed_val(temp2)) { in hidparser_check_minmax_val_signed()
[all …]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dparse.y542 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
543 A = sqliteExpr(TK_DOT, temp1, temp2, 0);
547 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
549 Expr *temp4 = sqliteExpr(TK_DOT, temp2, temp3, 0);
H A Dbuild.c221 Hash temp2; in sqliteResetInternalSchema() local
229 temp2 = pDb->trigHash; in sqliteResetInternalSchema()
233 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ in sqliteResetInternalSchema()
237 sqliteHashClear(&temp2); in sqliteResetInternalSchema()
/illumos-gate/usr/src/uts/common/io/ib/ibnex/
H A Dibnex.c1774 char *temp1, *temp2; in ibnex_devname_to_portnum() local
1780 temp2 = strchr(temp1, ','); in ibnex_devname_to_portnum()
1781 if (temp2 == NULL) in ibnex_devname_to_portnum()
1784 *portnum = ibnex_str2hex(temp1, (temp2 - temp1), &ret); in ibnex_devname_to_portnum()