Searched defs:temp1 (Results 1 - 17 of 17) sorted by relevance

/illumos-gate/usr/src/ucblib/libcurses/
H A Ddelch.c34 char *temp1, *temp2; local
38 temp1 = &win->_y[win->_cury][win->_curx];
39 temp2 = temp1 + 1;
40 while (temp1 < end)
41 *temp1++ = *temp2++;
42 *temp1 = ' ';
H A Dinsch.c34 char *temp1, *temp2; local
38 temp1 = &win->_y[win->_cury][win->_maxx - 1];
39 temp2 = temp1 - 1;
40 while (temp1 > end)
41 *temp1-- = *temp2--;
42 *temp1 = c;
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dwdelch.c55 chtype *temp1, *temp2; local
64 temp1 = temp2 - 1;
69 if (ISMBIT(*temp1)) {
74 temp1 = &win->_y[cury][curx];
77 for (cp = end; cp >= temp1; --cp)
83 if (ISMBIT(*temp1))
84 s = _curs_scrwidth[TYPE(RBYTE(*temp1))];
89 while (temp1 < end)
90 *temp1++ = *temp2++;
93 *temp1
[all...]
/illumos-gate/usr/src/uts/sun4u/io/i2c/clients/
H A Dadm1031.c890 uint8_t temp1; local
957 temp1 = admp->adm1031_transfer->i2c_rbuf[0];
961 admp->adm1031_transfer->i2c_wbuf[1] = (temp1 | 0x12);
1009 temp1 = admp->adm1031_transfer->i2c_rbuf[0];
1012 admp->adm1031_transfer->i2c_wbuf[1] = (temp1 & (~0x12));
/illumos-gate/usr/src/cmd/sendmail/src/
H A Ddomain.c430 register char *temp1; local
435 temp1 = mxhosts[i];
437 mxhosts[j] = temp1;
H A Ddeliver.c6013 register char *temp1; local
6018 temp1 = mxhosts[i];
6020 mxhosts[j] = temp1;
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_dispatch.c920 unsigned char temp, temp1; local
946 (void) smb_mbc_peek(&sr->reply, offset, "bb", &temp, &temp1);
948 if ((temp != 0xFF) || (temp1 != 0xFF)) {
956 if ((temp != (bcc&0xFF)) || (temp1 != ((bcc>>8)&0xFF)))
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbuild.c223 Hash temp1; local
231 temp1 = pDb->tblHash;
242 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
246 sqliteHashClear(&temp1);
/illumos-gate/usr/src/cmd/sgs/yacc/common/
H A Dy1.c94 int *temp1; /* temp storate, indexed by terms+ntokens or states */ variable
206 temp1 = (int *)malloc(sizeof (int)*size);
218 (ntstates == NULL) || (temp1 == NULL) || (pres == NULL) ||
261 aryfil(temp1, nprod, 0);
264 temp1[i] = ((prdptr[i+1] - prdptr[i]-2) << 1) | had_act[i];
265 warray(L"yyr2", temp1, nprod);
267 aryfil(temp1, nstate, -10000000);
270 temp1[j] = tokset[i].value;
273 temp1[j] = -i;
274 warray(L"yychk", temp1, nstat
[all...]
/illumos-gate/usr/src/tools/cscope-fast/
H A Dmain.c97 char temp1[PATHLEN + 1]; /* temporary file name */ variable
194 (void) sprintf(temp1, "%s/cscope%d.1", tmpdir, (int)pid);
1110 if (invertedindex == YES && (postings = fopen(temp1, "w")) == NULL) {
1111 cannotopen(temp1);
1227 cannotwrite(temp1);
1239 * (void) sprintf(sortcommand, "sort -y -T %s %s", tmpdir, temp1);
1241 (void) sprintf(sortcommand, "LC_ALL=C sort %s", temp1);
1256 (void) unlink(temp1);
1608 if (temp1[0] != '\0') {
1609 (void) unlink(temp1);
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_nx.c588 uint32_t temp1; local
601 temp1 = ((window & 0x1FF) << 7) |
603 if (win_read != temp1) {
605 temp1, win_read);
/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dunm_nic_hw.c1013 unsigned int temp1; local
1028 temp1 = ((window & 0x1FF) << 7) |
1030 if (win_read != temp1) {
1033 __FUNCTION__, temp1, win_read);
/illumos-gate/usr/src/cmd/sa/
H A Dsadp.c213 unsigned temp1; variable
780 if ((temp1 < setup[X1_BUF].n_value) || (index > tbl.v_buf)){
781 index = (int)(temp1 -setup[X1_PBUF].n_value)/
790 index = (int)(temp1 -setup[SWP].n_value)/
816 temp1 = (unsigned)x->av_forw;
838 temp1 = (unsigned)bp[m].av_forw;
/illumos-gate/usr/src/uts/common/io/ib/ibnex/
H A Dibnex.c1769 char *temp1, *temp2; local
1771 temp1 = strchr(device_name, '@');
1772 if (temp1 == NULL) {
1775 temp2 = strchr(temp1, ',');
1778 temp1++;
1779 *portnum = ibnex_str2hex(temp1, (temp2 - temp1), &ret);
1832 char *temp1, *temp; local
1842 if ((temp1 = strchr(++temp, ',')) == NULL) {
1845 *ioc_guid = ibnex_str2hex(temp, (temp1
[all...]
/illumos-gate/usr/src/uts/common/io/usb/clients/hidparser/
H A Dhidparser.c2783 entity_attribute_t *temp1, *temp2; local
2785 temp1 = hidparser_lookup_attribute(mainitem, item_tag1);
2787 if ((temp1 != NULL) && (temp2 == NULL)) {
2795 if ((temp2 != NULL) && (temp1 == NULL)) {
2818 entity_attribute_t *temp1, *temp2; local
2820 temp1 = hidparser_lookup_attribute(mainitem, item_tag1);
2822 if ((temp1 != NULL) && (temp2 != NULL)) {
2823 if (hidparser_find_unsigned_val(temp1) >
2843 hidparser_find_unsigned_val(temp1)) {
2861 } /* if (temp1 !
2877 entity_attribute_t *temp1, *temp2; local
[all...]
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibdm/
H A Dibdm.c4871 ibdm_hca_list_t *head = NULL, *temp, *temp1; local
4879 temp1 = ibdm_dup_hca_attr(temp);
4880 temp1->hl_next = head;
4881 head = temp1;
/illumos-gate/usr/src/uts/common/io/iwk/
H A Diwk2.c5775 uint16_t temp1; local
5809 temp1 = rx_sens_p->auto_corr_ofdm_x4 + 1;
5810 rx_sens_p->auto_corr_ofdm_x4 = (temp1 <= 120) ? temp1 : 120;
5812 temp1 = rx_sens_p->auto_corr_mrc_ofdm_x4 + 1;
5814 (temp1 <= 210) ? temp1 : 210;
5816 temp1 = rx_sens_p->auto_corr_ofdm_x1 + 1;
5817 rx_sens_p->auto_corr_ofdm_x1 = (temp1 <= 140) ? temp1
[all...]

Completed in 192 milliseconds