HomeSort by: relevance | last modified time | path
    Searched defs:temp1 (Results 1 - 14 of 14) sorted by relevancy

  /src/lib/libcurses/
insch.c 94 __LDATA *end, *temp1, *temp2; local in function:winsch
105 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
106 temp2 = temp1 - 1;
107 while (temp1 > end) {
108 (void)memcpy(temp1, temp2, sizeof(__LDATA));
109 temp1--, temp2--;
111 temp1->ch = (wchar_t)ch & __CHARTEXT;
112 if (temp1->ch == win->bch) {
113 temp1->ch = win->bch;
114 temp1->cflags &= ~CA_CONTINUATION
    [all...]
delch.c 90 __LDATA *end, *temp1, *temp2; local in function:wdelch
97 temp1 = &win->alines[win->cury]->line[win->curx];
98 temp2 = temp1 + 1;
99 while (temp1 < end) {
100 (void)memcpy(temp1, temp2, sizeof(__LDATA));
101 temp1++, temp2++;
103 temp1->ch = win->bch;
104 temp1->cflags = CA_BACKGROUND;
106 temp1->attr = win->battr & __COLOR;
108 temp1->attr = 0
    [all...]
ins_wch.c 88 __LDATA *start, *temp1, *temp2; local in function:wins_wch
154 temp1 = &win->alines[y]->line[win->maxx - 1];
155 temp2 = temp1 - cw;
160 while (temp1 > temp2 + cw) {
161 np = temp1->nsp;
168 temp1->nsp = NULL;
170 temp1->ch = win->bch;
171 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
173 temp1->attr = win->battr;
174 temp1->wcols = 1
    [all...]
insstr.c 145 __LDATA *end, *temp1, *temp2; local in function:winsnstr
167 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
168 temp2 = temp1 - len;
171 np = temp1->nsp;
178 temp1->nsp = NULL;
181 (void)memcpy(temp1, temp2, sizeof(__LDATA));
182 temp1--, temp2--;
186 for (scp = str, temp1 = end, x = win->curx;
188 scp++, temp1++, x++)
190 temp1->ch = (wchar_t)*scp & __CHARTEXT
    [all...]
ins_wstr.c 133 __LDATA *start, *temp1, *temp2; local in function:wins_nwstr
317 temp1 = &win->alines[y]->line[win->maxx - 1];
318 temp2 = temp1 - width;
325 while (temp1 > temp2 + width) {
326 temp1->ch = win->bch;
327 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR) {
331 temp1->attr = win->battr;
332 temp1->cflags |= CA_BACKGROUND;
333 temp1->cflags &= ~CA_CONTINUATION;
334 temp1->wcols = 1
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
armada-385-clearfog-gtr.dtsi 384 temp1: nct75@4c { label
imx6q-dmo-edmqmx6.dts 268 temp1: ad7414@4c { label
  /src/games/phantasia/
interplayer.c 673 double temp1 = 0.0, temp2 = 0.0; /* other tampering values */ local in function:dotampered
707 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
708 Enrgyvoid.ev_x = floor(temp1);
719 temp1 = infloat();
720 if (temp1 > Player.p_gold || temp1 < 0) {
733 fread((char *) &temp1, sizeof(double), 1, fp);
740 mvprintw(4, 0, "You have collected %.0f in gold.\n", temp1);
741 Player.p_gold += floor(temp1);
783 temp1 = distance(Player.p_x, Enrgyvoid.ev_x, Player.p_y, Enrgyvoid.ev_y)
    [all...]
  /src/sys/dev/raidframe/
rf_evenodd_dagfuncs.c 309 short temp1; local in function:rf_e_EncOneSect
313 long temp1; local in function:rf_e_EncOneSect
338 temp1 = destShortBuf[j] ^ srcShortBuf1[j];
342 destShortBuf[j] = (srcShortBuf2[j]) ^ temp1;
346 destShortBuf[j] = temp1;
353 temp1 = destLongBuf[j] ^ srcLongBuf1[j];
355 destLongBuf[j] = (srcLongBuf2[j]) ^ temp1;
357 destLongBuf[j] = temp1;
  /src/sys/dev/isa/
aps.c 115 uint8_t temp1; member in struct:sensor_rec
457 sc->aps_data.temp1 = iobuf[APS_TEMP];
479 if (sc->aps_data.temp1 == 0xff)
483 temp = sc->aps_data.temp1 * 1000000;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
amdgpu_color_gamma.c 873 struct fixed31_32 temp1; local in function:hermite_spline_eetf
906 temp1 = dc_fixpt_mul(two, t3);
911 dc_fixpt_sub(temp1, temp2)));
915 dc_fixpt_sub(temp2, temp1)));
917 temp1 = dc_fixpt_mul(two, t2);
922 dc_fixpt_add(t, dc_fixpt_sub(t3, temp1))));
926 temp1 = dc_fixpt_sub(dc_fixpt_one, E2);
927 temp2 = dc_fixpt_mul(temp1, temp1);
  /src/sys/dev/pci/bktr/
bktr_core.c 1937 unsigned int temp, temp1; local in function:tuner_ioctl
2056 temp1 = INB(bktr, BKTR_O_CONTROL);
2060 temp1 |= (BT848_O_CONTROL_SAT_U_MSB |
2066 temp1 &= ~(BT848_O_CONTROL_SAT_U_MSB |
2073 OUTB(bktr, BKTR_O_CONTROL, temp1);
2088 temp1 = INB(bktr, BKTR_O_CONTROL);
2091 temp1 |= BT848_O_CONTROL_SAT_V_MSB;
2095 temp1 &= ~BT848_O_CONTROL_SAT_V_MSB;
2100 OUTB(bktr, BKTR_O_CONTROL, temp1);
2115 temp1 = INB(bktr, BKTR_O_CONTROL)
    [all...]
  /src/sys/dev/pci/
arcmsrvar.h 268 uint8_t temp1; member in struct:arc_fw_hwmon
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_gfx_v8_0.c 5721 uint32_t temp, temp1, data, data1; local in function:gfx_v8_0_update_coarse_grain_clock_gating
5728 temp1 = data1 = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
5730 if (temp1 != data1)
5752 temp1 = data1 = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
5755 if (temp1 != data1)
5773 temp1 = data1 = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
5776 if (temp1 != data1)

Completed in 143 milliseconds