HomeSort by: relevance | last modified time | path
    Searched refs:temp (Results 1 - 25 of 450) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hppa/spmath/
mpyaccu.c 53 struct mdsfu_register temp; local in function:mpyaccu
56 impyu(&opnd1,&opnd2,&temp);
59 if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
64 if ((result_hi += (unsigned)temp.rslt_hi + carry) <
65 (unsigned)temp.rslt_hi) overflow = true;
mpyaccs.c 52 struct mdsfu_register temp; local in function:mpyaccs
55 impys(&opnd1,&opnd2,&temp);
58 if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
63 sign = result_hi ^ temp.rslt_hi;
64 result_hi += temp.rslt_hi + carry;
65 if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0) overflow = true;
  /src/lib/libc/arch/m68k/gen/
ldexp_881.c 49 double temp; local in function:ldexp
52 : "=f" (temp)
54 return (temp);
  /src/lib/libc/arch/m68k/hardfloat/
ldexp_881.c 49 double temp; local in function:ldexp
52 : "=f" (temp)
54 return (temp);
  /src/sys/dev/ic/
smc93cx6.c 113 u_int32_t temp; local in function:read_seeprom
121 temp = sd->sd_MS ^ sd->sd_CS;
122 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
131 temp ^= sd->sd_DO;
132 SEEPROM_OUTB(sd, temp);
134 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
137 temp ^= sd->sd_DO;
142 temp ^= sd->sd_DO;
143 SEEPROM_OUTB(sd, temp);
145 SEEPROM_OUTB(sd, temp ^ sd->sd_CK)
    [all...]
  /src/lib/libc/stdlib/
_rand48.c 41 unsigned short temp[2]; local in function:__dorand48
47 temp[0] = (unsigned short) accu; /* lower 16 bits */
51 temp[1] = (unsigned short) accu; /* middle 16 bits */
56 xseed[0] = temp[0];
57 xseed[1] = temp[1];
  /src/games/mille/
varpush.c 55 int temp; local in function:varpush
77 if ((read(file, (void *) &temp, sizeof temp)) < 0) {
81 Topcard = &Deck[temp];
99 temp = Topcard - Deck;
100 if ((write(file, (void *) &temp, sizeof temp)) < 0) {
end.c 54 int temp, tot, num; local in function:finalscore
61 temp = num * 6 + 21 + 1;
63 mvaddstr(tot, temp, " 0");
65 mvaddstr(5, temp, "40");
68 mvaddstr(6, temp, "30");
72 mvaddstr(7, temp, "30");
76 mvaddstr(8, temp, "20");
80 mvaddstr(9, temp, "50");
  /src/bin/dd/
dd_swab.c 56 char temp; local in function:dd_swab
66 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
  /src/lib/libm/src/
e_jn.c 59 double a, b, temp, di; local in function:__ieee754_jn
62 temp = 0;
98 case 0: temp = cos(x)+sin(x); break;
99 case 1: temp = -cos(x)+sin(x); break;
100 case 2: temp = -cos(x)-sin(x); break;
101 case 3: temp = cos(x)-sin(x); break;
103 b = invsqrtpi*temp/sqrt(x);
108 temp = b;
110 a = temp;
121 temp = x*0.5; b = temp
222 double a, b, temp; local in function:__ieee754_yn
    [all...]
e_jnf.c 37 float a, b, temp, di; local in function:__ieee754_jnf
63 temp = b;
65 a = temp;
75 temp = x*(float)0.5; b = temp;
78 b *= temp; /* b = (x/2)^n */
139 temp = b;
142 a = temp;
147 temp = b;
150 a = temp;
176 float a, b, temp; local in function:__ieee754_ynf
    [all...]
  /src/distrib/acorn32/
mksparkive.sh 145 temp=$(${TOOL_MKTEMP} -t $progname) || exit 1
146 trap "rm -f $temp" 0
169 compress -c "$file" | tail -c +3 >"$temp"
171 size2=$(wc -c "$temp" | awk '{print $1}')
174 makeheader "$temp" "$file" "$filename" "$type" 1
175 nbits=$(dd if="$temp" bs=1 count=1 \
182 tail -c +2 "$temp"
192 makearchive $(ls -A) >$temp
198 makeheader "$temp" "$file" "$file" ddc 0
199 cat "$temp"
    [all...]
  /src/lib/libc/db/btree/
bt_overflow.c 88 size_t temp; local in function:__ovfl_get
111 temp = t->bt_psize - BTDATAOFF;
112 _DBFIT(temp, uint32_t);
113 plen = (uint32_t)temp;
146 size_t temp; local in function:__ovfl_put
152 temp = t->bt_psize - BTDATAOFF;
153 _DBFIT(temp, uint32_t);
154 plen = (uint32_t)temp;
157 temp = dbt->size;
158 _DBFIT(temp, uint32_t)
202 size_t temp; local in function:__ovfl_delete
    [all...]
  /src/bin/sleep/
sleep.c 74 char *arg, *temp; local in function:main
120 for (temp = arg; *temp != '\0'; temp++)
121 if (!isdigit((unsigned char)*temp)) {
122 ch = *temp;
135 val = strtod(arg, &temp);
136 if (*temp != '\0')
137 val = strtod_l(arg, &temp, LC_C_LOCALE);
138 if (val < 0 || temp == arg || *temp != '\0'
    [all...]
  /src/sys/arch/evbarm/iyonix/
iyonix_pci.c 168 int temp; local in function:pci_conf_write_byte
169 temp = pci_conf_read(pc, tag, addr&~3);
170 temp = temp & ~(0xff << ((addr%4) * 8));
171 temp = temp | (value << ((addr%4) * 8));
172 pci_conf_write(pc, tag, addr&~3, temp);
178 int temp; local in function:pci_conf_read_byte
179 temp = pci_conf_read(pc, tag, addr&~3);
180 temp = temp >> ((addr%4) * 8)
    [all...]
  /src/sys/arch/iyonix/iyonix/
iyonix_pci.c 169 int temp; local in function:pci_conf_write_byte
170 temp = pci_conf_read(pc, tag, addr&~3);
171 temp = temp & ~(0xff << ((addr%4) * 8));
172 temp = temp | (value << ((addr%4) * 8));
173 pci_conf_write(pc, tag, addr&~3, temp);
179 int temp; local in function:pci_conf_read_byte
180 temp = pci_conf_read(pc, tag, addr&~3);
181 temp = temp >> ((addr%4) * 8)
    [all...]
  /src/lib/libedit/
filecomplete.c 73 char *temp; local in function:fn_tilde_expand
81 temp = strdup(txt + 1);
82 if (temp == NULL)
87 temp = el_calloc(len, sizeof(*temp));
88 if (temp == NULL)
90 (void)strlcpy(temp, txt + 1, len - 1);
92 if (temp[0] == 0) {
104 if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0)
107 pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf))
207 wchar_t *temp = el->el_line.buffer; local in function:escape_filename
331 char *temp; local in function:fn_filename_completion_function
594 wchar_t *temp; local in function:find_word_to_complete
669 wchar_t *temp; local in function:fn_complete2
    [all...]
  /src/lib/libm/noieee_src/
n_jn.c 116 double a, b, temp; local in function:jn
155 case 0: temp = cos(x)+sin(x); break;
156 case 1: temp = -cos(x)+sin(x); break;
157 case 2: temp = -cos(x)-sin(x); break;
158 case 3: temp = cos(x)-sin(x); break;
160 b = invsqrtpi*temp/sqrt(x);
167 temp = b;
169 a = temp;
180 temp = x*0.5; b = temp;
268 double a, b, temp; local in function:yn
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
gen6_ppgtt.h 66 ({ u32 temp = round_up(start+1, 1 << GEN6_PDE_SHIFT); \
67 temp = min(temp - start, length); \
68 start += temp, length -= temp; }), ++iter)
  /src/games/sail/
dr_2.c 55 char *command, size_t commandmax, char *temp, size_t tempmax,
167 char temp[10]; local in function:closeon
169 temp[0] = command[0] = '\0';
171 try(from, to, command, commandmax, temp, sizeof(temp),
251 char *temp, size_t tempmax,
258 if ((n = str_end(temp)) < '1' || n > '9')
261 strlcat(temp, st, tempmax);
262 new = score(f, t, temp, tempmax, rakeme);
265 strlcpy(command, temp, commandmax)
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
prutils.c 310 char *temp; local in function:PrReplaceResizeSubstring
333 temp = strstr (AslGbl_MacroTokenBuffer, Args->Name);
334 if (temp == NULL)
340 temp = strstr (temp, Args->Name);
341 if (temp == NULL)
346 strlen (temp);
358 temp += strlen (Args->Name);
427 temp = NULL;
441 temp = strstr (AslGbl_MacroTokenBuffer, Args->Name)
    [all...]
  /src/sys/dev/raidframe/
rf_evenodd_dags.c 80 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
82 temp = asmap->parityInfo;
84 asmap->qInfo = temp;
128 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
130 temp = asmap->parityInfo;
132 asmap->qInfo = temp;
141 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
143 temp = asmap->parityInfo;
145 asmap->qInfo = temp;
155 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
    [all...]
rf_pqdeg.c 97 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
99 temp = asmap->parityInfo;
101 asmap->qInfo = temp;
136 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
138 temp = asmap->parityInfo;
140 asmap->qInfo = temp;
153 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
155 temp = asmap->parityInfo;
157 asmap->qInfo = temp;
192 RF_PhysDiskAddr_t *temp; local in function:RF_CREATE_DAG_FUNC_DECL
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/calcs/
amdgpu_dcn_calc_math.c 113 float temp; local in function:dcn_bw_pow
117 temp = dcn_bw_pow(a, (int)(exp / 2));
119 return temp * temp;
122 return a * temp * temp;
124 return (temp * temp) / a;
  /src/sys/dev/onewire/
owtemp.c 94 static bool owtemp_update(struct owtemp_softc *sc, uint32_t *temp);
212 owtemp_update(struct owtemp_softc *sc, uint32_t *temp)
249 *temp = sc->sc_owtemp_decode(data);
278 int temp; local in function:owtemp_decode_ds18b20
284 temp = (int8_t)buf[1];
285 temp = (temp << 8) | buf[0];
290 return (temp * 62500 + 273150000);
296 int temp; local in function:owtemp_decode_ds1920
302 temp = (int8_t)buf[1]
    [all...]

Completed in 18 milliseconds

1 2 3 4 5 6 7 8 91011>>