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

  /src/lib/libcurses/
insch.c 94 __LDATA *end, *temp1, *temp2; local in function:winsch
106 temp2 = temp1 - 1;
108 (void)memcpy(temp1, temp2, sizeof(__LDATA));
109 temp1--, temp2--;
delch.c 90 __LDATA *end, *temp1, *temp2; local in function:wdelch
98 temp2 = temp1 + 1;
100 (void)memcpy(temp1, temp2, sizeof(__LDATA));
101 temp1++, temp2++;
134 temp2 = temp1 + cw;
136 (void)memcpy(temp1, temp2, sizeof(__LDATA));
137 temp1++, temp2++;
ins_wch.c 88 __LDATA *start, *temp1, *temp2; local in function:wins_wch
155 temp2 = temp1 - cw;
156 pcw = (temp2 + 1)->wcols;
159 temp2 += pcw;
160 while (temp1 > temp2 + cw) {
178 while (temp2 >= start) {
179 (void)memcpy(temp1, temp2, sizeof(__LDATA));
180 temp1--, temp2--;
insstr.c 145 __LDATA *end, *temp1, *temp2; local in function:winsnstr
168 temp2 = temp1 - len;
169 while (temp2 >= end) {
181 (void)memcpy(temp1, temp2, sizeof(__LDATA));
182 temp1--, temp2--;
ins_wstr.c 133 __LDATA *start, *temp1, *temp2; local in function:wins_nwstr
318 temp2 = temp1 - width;
319 pcw = (temp2 + 1)->wcols;
324 temp2 += pcw;
325 while (temp1 > temp2 + width) {
340 while (temp2 >= start) {
341 (void)memcpy(temp1, temp2, sizeof(__LDATA));
342 temp1--, temp2--;
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
armada-385-clearfog-gtr.dtsi 390 temp2: nct75@4d { label
imx6q-dmo-edmqmx6.dts 273 temp2: ad7414@4d { 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);
709 Enrgyvoid.ev_y = floor(temp2);
736 temp2 = 0.0;
737 fwrite((char *) &temp2, sizeof(double), 1, fp);
802 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
850 && CIRCLE(temp1, temp2) < CIRCLE(Other.p_x, Other.p_y)
861 Other.p_2scratch = floor(temp2);
  /src/games/warp/
util.c 59 double temp, temp2; local in function:exdis
63 temp2 = (double) myrand();
65 temp2 = 0.0;
68 return (int) exp(temp2 * log(temp)/0x7fff);
71 return (int) exp(temp2 * log(temp)/0xffff);
73 return (int) exp(temp2 * log(temp)/0x7fffffff);
  /src/sys/dev/i2c/
nxt2k.c 519 uint16_t temp, temp2; local in function:nxt2k_get_snr
529 temp2 = 0x7fff - temp;
531 printf("snr temp2: %04hx\n", temp2);
533 if (temp2 > 0x7f00)
534 tsnr = 1000*24+(1000*(30-24)*(temp2-0x7f00)/(0x7fff-0x7f00));
535 else if ( temp2 > 0x7ec0)
536 tsnr = 1000*18+(1000*(24-18)*(temp2-0x7ec0)/(0x7f00-0x7ec0));
537 else if ( temp2 > 0x7c00)
538 tsnr = 1000*12+(1000*(18-12)*(temp2-0x7c00)/(0x7ec0-0x7c00))
    [all...]
  /src/sys/netinet/
dccp_tfrc.c 311 struct fixpoint temp, temp2; local in function:tfrc_updateX
322 temp2.num = cb->s;
323 temp2.denom = TFRC_MAX_BACK_OFF_TIME;
324 if (fixpoint_cmp(&temp, &temp2) < 0)
325 cb->x = temp2;
338 temp2 = cb->x;
339 temp2.num *= 2;
340 if (fixpoint_cmp(&temp2, &temp) < 0)
341 temp = temp2;
  /src/sys/dev/isa/
aps.c 118 uint8_t temp2; member in struct:sensor_rec
460 sc->aps_data.temp2 = iobuf[APS_TEMP2];
490 if (sc->aps_data.temp2 == 0xff)
494 temp = sc->aps_data.temp2 * 1000000;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
amdgpu_color_gamma.c 874 struct fixed31_32 temp2; local in function:hermite_spline_eetf
907 temp2 = dc_fixpt_mul(three, t2);
911 dc_fixpt_sub(temp1, temp2)));
915 dc_fixpt_sub(temp2, temp1)));
918 temp2 = dc_fixpt_sub(dc_fixpt_one, ks);
921 E2 = dc_fixpt_add(E2, dc_fixpt_mul(temp2,
927 temp2 = dc_fixpt_mul(temp1, temp1);
928 temp2 = dc_fixpt_mul(temp2, temp2);
    [all...]
  /src/sys/dev/pci/
if_wm.c 12371 uint16_t temp, temp2; local in function:wm_gmii_i80003_readreg
12402 rv = wm_gmii_mdic_readreg(dev, phy, page_select, &temp2);
12403 if ((rv != 0) || (temp2 != temp)) {
12431 uint16_t temp, temp2; local in function:wm_gmii_i80003_writereg
12461 rv = wm_gmii_mdic_readreg(dev, phy, page_select, &temp2);
12462 if ((rv != 0) || (temp2 != temp)) {

Completed in 34 milliseconds