Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libcurses/screen/
H A Dwdelch.c55 chtype *temp1, *temp2; in wdelch() local
63 temp2 = &win->_y[cury][curx + 1]; in wdelch()
64 temp1 = temp2 - 1; in wdelch()
86 temp2 = &win->_y[cury][curx+s]; in wdelch()
90 *temp1++ = *temp2++; in wdelch()
/titanic_44/usr/src/ucblib/libcurses/
H A Ddelch.c34 char *temp1, *temp2; in wdelch() local
39 temp2 = temp1 + 1; in wdelch()
41 *temp1++ = *temp2++; in wdelch()
H A Dinsch.c34 char *temp1, *temp2; in winsch() local
39 temp2 = temp1 - 1; in winsch()
41 *temp1-- = *temp2--; in winsch()
/titanic_44/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.c98 char temp2[PATHLEN + 1]; /* temporary file name */ variable
195 (void) sprintf(temp2, "%s/cscope%d.2", tmpdir, (int)pid); in main()
1610 (void) unlink(temp2); in myexit()
/titanic_44/usr/src/uts/common/io/usb/clients/hidparser/
H A Dhidparser.c2783 entity_attribute_t *temp1, *temp2; in hidparser_check_correspondence() local
2786 temp2 = hidparser_lookup_attribute(mainitem, item_tag2); in hidparser_check_correspondence()
2787 if ((temp1 != NULL) && (temp2 == NULL)) { in hidparser_check_correspondence()
2795 if ((temp2 != NULL) && (temp1 == NULL)) { in hidparser_check_correspondence()
2818 entity_attribute_t *temp1, *temp2; in hidparser_check_minmax_val() local
2821 temp2 = hidparser_lookup_attribute(mainitem, item_tag2); in hidparser_check_minmax_val()
2822 if ((temp1 != NULL) && (temp2 != NULL)) { in hidparser_check_minmax_val()
2824 hidparser_find_unsigned_val(temp2)) { in hidparser_check_minmax_val()
2842 if (hidparser_find_unsigned_val(temp2) < in hidparser_check_minmax_val()
2877 entity_attribute_t *temp1, *temp2; in hidparser_check_minmax_val_signed() local
[all …]
/titanic_44/usr/src/lib/libsqlite/src/
H A Dparse.y544 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
545 A = sqliteExpr(TK_DOT, temp1, temp2, 0);
549 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
551 Expr *temp4 = sqliteExpr(TK_DOT, temp2, temp3, 0);
H A Dbuild.c224 Hash temp2; in sqliteResetInternalSchema() local
232 temp2 = pDb->trigHash; in sqliteResetInternalSchema()
236 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ in sqliteResetInternalSchema()
240 sqliteHashClear(&temp2); in sqliteResetInternalSchema()
/titanic_44/usr/src/uts/common/io/ib/ibnex/
H A Dibnex.c1769 char *temp1, *temp2; in ibnex_devname_to_portnum() local
1775 temp2 = strchr(temp1, ','); in ibnex_devname_to_portnum()
1776 if (temp2 == NULL) in ibnex_devname_to_portnum()
1779 *portnum = ibnex_str2hex(temp1, (temp2 - temp1), &ret); in ibnex_devname_to_portnum()