Symbol: temp
bin/dd/dd_swab.c
56
char temp;
bin/dd/dd_swab.c
66
#define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
bin/ksh/c_sh.c
818
static char temp[22]; /* enough for 64 bit clock_t */
bin/ksh/c_sh.c
820
char *cp = temp + sizeof(temp);
bin/ksh/exec.c
1263
struct temp *h;
bin/ksh/exec.c
896
static struct tbl temp;
bin/ksh/exec.c
958
tp = &temp;
bin/ksh/exec.c
966
if (tp == &temp) {
bin/ksh/exec.c
983
tp = &temp;
bin/ksh/history.c
208
char **temp;
bin/ksh/history.c
210
temp = hfirst; hfirst = hlast; hlast = temp;
bin/ksh/history.c
83
struct temp UNINITIALIZED(*tf);
bin/ksh/io.c
443
struct temp *
bin/ksh/io.c
447
struct temp **tlist;
bin/ksh/io.c
452
struct temp *tp;
bin/ksh/io.c
461
tp = (struct temp *) alloc(sizeof(struct temp) + len, ap);
bin/ksh/main.c
28
static void remove_temps ARGS((struct temp *tp));
bin/ksh/main.c
763
struct temp *tp;
bin/ksh/proto.h
138
struct temp *maketemp ARGS((Area *, Temp_type, struct temp **));
bin/ksh/sh.h
222
struct temp *temps; /* temp files */
bin/ksh/sh.h
339
struct temp *next;
bin/pax/options.c
2080
char *name, *temp;
bin/pax/options.c
2090
temp = malloc(len);
bin/pax/options.c
2091
if (!temp) {
bin/pax/options.c
2095
memcpy(temp, name, len-1);
bin/pax/options.c
2096
temp[len-1] = 0;
bin/pax/options.c
2097
return temp;
bin/sh/expand.c
2312
char temp[32];
bin/sh/expand.c
2314
char *p = temp + sizeof temp - 1;
bin/sh/expand.c
2322
} while ((num /= 10) != 0 && p > temp + 1);
bin/sh/output.c
416
char temp[TEMPSIZE];
bin/sh/output.c
532
p = temp + TEMPSIZE - 1;
bin/sh/output.c
538
len = (temp + TEMPSIZE - 1) - p;
bin/sleep/sleep.c
120
for (temp = arg; *temp != '\0'; temp++)
bin/sleep/sleep.c
121
if (!isdigit((unsigned char)*temp)) {
bin/sleep/sleep.c
122
ch = *temp;
bin/sleep/sleep.c
135
val = strtod(arg, &temp);
bin/sleep/sleep.c
136
if (*temp != '\0')
bin/sleep/sleep.c
137
val = strtod_l(arg, &temp, LC_C_LOCALE);
bin/sleep/sleep.c
138
if (val < 0 || temp == arg || *temp != '\0')
bin/sleep/sleep.c
152
ntime.tv_sec = strtol(arg, &temp, 10);
bin/sleep/sleep.c
153
if (ntime.tv_sec < 0 || temp == arg || *temp != '\0')
bin/sleep/sleep.c
74
char *arg, *temp;
common/dist/zlib/examples/gun.c
213
unsigned temp; /* current code */
common/dist/zlib/examples/gun.c
311
temp = code; /* save the current code */
common/dist/zlib/examples/gun.c
347
prev = temp;
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
158
*((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
159
*((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
160
*((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
161
*((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
162
*((word32*)(b )) = *((const word32*)T1[temp[0][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
163
^ *((const word32*)T2[temp[1][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
164
^ *((const word32*)T3[temp[2][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
165
^ *((const word32*)T4[temp[3][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
166
*((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
167
^ *((const word32*)T2[temp[2][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
168
^ *((const word32*)T3[temp[3][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
169
^ *((const word32*)T4[temp[0][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
170
*((word32*)(b + 8)) = *((const word32*)T1[temp[2][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
171
^ *((const word32*)T2[temp[3][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
172
^ *((const word32*)T3[temp[0][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
173
^ *((const word32*)T4[temp[1][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
174
*((word32*)(b +12)) = *((const word32*)T1[temp[3][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
175
^ *((const word32*)T2[temp[0][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
176
^ *((const word32*)T3[temp[1][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
177
^ *((const word32*)T4[temp[2][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
179
*((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[r][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
180
*((word32*)temp[1]) = *((word32*)(b+ 4)) ^ *((word32*)rk[r][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
181
*((word32*)temp[2]) = *((word32*)(b+ 8)) ^ *((word32*)rk[r][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
182
*((word32*)temp[3]) = *((word32*)(b+12)) ^ *((word32*)rk[r][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
184
*((word32*)(b )) = *((const word32*)T1[temp[0][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
185
^ *((const word32*)T2[temp[1][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
186
^ *((const word32*)T3[temp[2][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
187
^ *((const word32*)T4[temp[3][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
188
*((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
189
^ *((const word32*)T2[temp[2][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
190
^ *((const word32*)T3[temp[3][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
191
^ *((const word32*)T4[temp[0][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
192
*((word32*)(b + 8)) = *((const word32*)T1[temp[2][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
193
^ *((const word32*)T2[temp[3][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
194
^ *((const word32*)T3[temp[0][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
195
^ *((const word32*)T4[temp[1][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
196
*((word32*)(b +12)) = *((const word32*)T1[temp[3][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
197
^ *((const word32*)T2[temp[0][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
198
^ *((const word32*)T3[temp[1][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
199
^ *((const word32*)T4[temp[2][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
202
*((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[ROUNDS-1][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
203
*((word32*)temp[1]) = *((word32*)(b+ 4)) ^ *((word32*)rk[ROUNDS-1][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
204
*((word32*)temp[2]) = *((word32*)(b+ 8)) ^ *((word32*)rk[ROUNDS-1][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
205
*((word32*)temp[3]) = *((word32*)(b+12)) ^ *((word32*)rk[ROUNDS-1][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
206
b[ 0] = T1[temp[0][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
207
b[ 1] = T1[temp[1][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
208
b[ 2] = T1[temp[2][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
209
b[ 3] = T1[temp[3][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
210
b[ 4] = T1[temp[1][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
211
b[ 5] = T1[temp[2][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
212
b[ 6] = T1[temp[3][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
213
b[ 7] = T1[temp[0][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
214
b[ 8] = T1[temp[2][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
215
b[ 9] = T1[temp[3][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
216
b[10] = T1[temp[0][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
217
b[11] = T1[temp[1][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
218
b[12] = T1[temp[3][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
219
b[13] = T1[temp[0][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
220
b[14] = T1[temp[1][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
221
b[15] = T1[temp[2][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
242
word8 temp[4][4];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
255
*((word32*)temp[0]) = *((const word32*)T1[a[0][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
259
*((word32*)temp[1]) = *((const word32*)T1[a[1][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
263
*((word32*)temp[2]) = *((const word32*)T1[a[2][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
267
*((word32*)temp[3]) = *((const word32*)T1[a[3][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
271
*((word32*)a[0]) = *((word32*)temp[0]) ^ *((word32*)rk[r][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
272
*((word32*)a[1]) = *((word32*)temp[1]) ^ *((word32*)rk[r][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
273
*((word32*)a[2]) = *((word32*)temp[2]) ^ *((word32*)rk[r][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
274
*((word32*)a[3]) = *((word32*)temp[3]) ^ *((word32*)rk[r][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
278
temp[0][0] = T1[a[0][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
279
temp[0][1] = T1[a[1][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
280
temp[0][2] = T1[a[2][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
281
temp[0][3] = T1[a[3][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
282
temp[1][0] = T1[a[1][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
283
temp[1][1] = T1[a[2][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
284
temp[1][2] = T1[a[3][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
285
temp[1][3] = T1[a[0][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
286
temp[2][0] = T1[a[2][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
287
temp[2][1] = T1[a[3][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
288
temp[2][2] = T1[a[0][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
289
temp[2][3] = T1[a[1][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
290
temp[3][0] = T1[a[3][0]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
291
temp[3][1] = T1[a[0][1]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
292
temp[3][2] = T1[a[1][2]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
293
temp[3][3] = T1[a[2][3]][1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
294
*((word32*)a[0]) = *((word32*)temp[0]) ^ *((word32*)rk[ROUNDS][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
295
*((word32*)a[1]) = *((word32*)temp[1]) ^ *((word32*)rk[ROUNDS][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
296
*((word32*)a[2]) = *((word32*)temp[2]) ^ *((word32*)rk[ROUNDS][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
297
*((word32*)a[3]) = *((word32*)temp[3]) ^ *((word32*)rk[ROUNDS][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
323
*((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[ROUNDS][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
324
*((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[ROUNDS][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
325
*((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[ROUNDS][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
326
*((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[ROUNDS][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
328
*((word32*)(b )) = *((const word32*)T5[temp[0][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
329
^ *((const word32*)T6[temp[3][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
330
^ *((const word32*)T7[temp[2][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
331
^ *((const word32*)T8[temp[1][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
332
*((word32*)(b+ 4)) = *((const word32*)T5[temp[1][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
333
^ *((const word32*)T6[temp[0][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
334
^ *((const word32*)T7[temp[3][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
335
^ *((const word32*)T8[temp[2][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
336
*((word32*)(b+ 8)) = *((const word32*)T5[temp[2][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
337
^ *((const word32*)T6[temp[1][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
338
^ *((const word32*)T7[temp[0][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
339
^ *((const word32*)T8[temp[3][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
340
*((word32*)(b+12)) = *((const word32*)T5[temp[3][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
341
^ *((const word32*)T6[temp[2][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
342
^ *((const word32*)T7[temp[1][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
343
^ *((const word32*)T8[temp[0][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
345
*((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[r][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
346
*((word32*)temp[1]) = *((word32*)(b+ 4)) ^ *((word32*)rk[r][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
347
*((word32*)temp[2]) = *((word32*)(b+ 8)) ^ *((word32*)rk[r][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
348
*((word32*)temp[3]) = *((word32*)(b+12)) ^ *((word32*)rk[r][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
349
*((word32*)(b )) = *((const word32*)T5[temp[0][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
350
^ *((const word32*)T6[temp[3][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
351
^ *((const word32*)T7[temp[2][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
352
^ *((const word32*)T8[temp[1][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
353
*((word32*)(b+ 4)) = *((const word32*)T5[temp[1][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
354
^ *((const word32*)T6[temp[0][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
355
^ *((const word32*)T7[temp[3][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
356
^ *((const word32*)T8[temp[2][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
357
*((word32*)(b+ 8)) = *((const word32*)T5[temp[2][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
358
^ *((const word32*)T6[temp[1][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
359
^ *((const word32*)T7[temp[0][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
360
^ *((const word32*)T8[temp[3][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
361
*((word32*)(b+12)) = *((const word32*)T5[temp[3][0]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
362
^ *((const word32*)T6[temp[2][1]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
363
^ *((const word32*)T7[temp[1][2]])
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
364
^ *((const word32*)T8[temp[0][3]]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
367
*((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[1][0]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
368
*((word32*)temp[1]) = *((word32*)(b+ 4)) ^ *((word32*)rk[1][1]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
369
*((word32*)temp[2]) = *((word32*)(b+ 8)) ^ *((word32*)rk[1][2]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
370
*((word32*)temp[3]) = *((word32*)(b+12)) ^ *((word32*)rk[1][3]);
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
371
b[ 0] = S5[temp[0][0]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
372
b[ 1] = S5[temp[3][1]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
373
b[ 2] = S5[temp[2][2]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
374
b[ 3] = S5[temp[1][3]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
375
b[ 4] = S5[temp[1][0]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
376
b[ 5] = S5[temp[0][1]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
377
b[ 6] = S5[temp[3][2]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
378
b[ 7] = S5[temp[2][3]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
379
b[ 8] = S5[temp[2][0]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
380
b[ 9] = S5[temp[1][1]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
381
b[10] = S5[temp[0][2]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
382
b[11] = S5[temp[3][3]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
383
b[12] = S5[temp[3][0]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
384
b[13] = S5[temp[2][1]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
385
b[14] = S5[temp[1][2]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
386
b[15] = S5[temp[0][3]];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
411
word8 temp[4], shift;
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
430
temp[0] = a[(0 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
431
temp[1] = a[(1 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
432
temp[2] = a[(2 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
433
temp[3] = a[(3 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
434
a[0][i] = temp[0];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
435
a[1][i] = temp[1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
436
a[2][i] = temp[2];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
437
a[3][i] = temp[3];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
477
temp[0] = a[(0 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
478
temp[1] = a[(1 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
479
temp[2] = a[(2 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
480
temp[3] = a[(3 + shift) & 3][i];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
481
a[0][i] = temp[0];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
482
a[1][i] = temp[1];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
483
a[2][i] = temp[2];
crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/rijndael-alg-fst.c
484
a[3][i] = temp[3];
games/adventure/vocab.c
107
for (temp = atloc[where]; links[temp] != object; temp = links[temp]);
games/adventure/vocab.c
108
links[temp] = links[object];
games/adventure/vocab.c
95
int temp;
games/canfield/canfield/canfield.c
1227
struct cardtype *temp;
games/canfield/canfield/canfield.c
1232
temp = bottom[sour];
games/canfield/canfield/canfield.c
1235
bottom[des] = temp;
games/canfield/canfield/canfield.c
1236
temp->next = tableau[des];
games/canfield/canfield/canfield.c
535
struct cardtype *temp;
games/canfield/canfield/canfield.c
544
temp = ideck[i];
games/canfield/canfield/canfield.c
546
ideck[j] = temp;
games/canfield/canfield/canfield.c
624
struct cardtype *temp;
games/canfield/canfield/canfield.c
626
temp = *source;
games/canfield/canfield/canfield.c
628
temp->next = *dest;
games/canfield/canfield/canfield.c
629
*dest = temp;
games/fish/fish.c
414
int i, j, temp;
games/fish/fish.c
422
temp = deck[i];
games/fish/fish.c
424
deck[i+j] = temp;
games/mille/end.c
54
int temp, tot, num;
games/mille/end.c
61
temp = num * 6 + 21 + 1;
games/mille/end.c
63
mvaddstr(tot, temp, " 0");
games/mille/end.c
65
mvaddstr(5, temp, "40");
games/mille/end.c
68
mvaddstr(6, temp, "30");
games/mille/end.c
72
mvaddstr(7, temp, "30");
games/mille/end.c
76
mvaddstr(8, temp, "20");
games/mille/end.c
80
mvaddstr(9, temp, "50");
games/mille/init.c
103
temp = Deck[r];
games/mille/init.c
105
Deck[i] = temp;
games/mille/init.c
95
CARD temp;
games/mille/move.c
571
CARD temp;
games/mille/move.c
578
temp = *cp;
games/mille/move.c
580
*tp = temp;
games/mille/print.c
57
int i, j, k, temp;
games/mille/print.c
61
temp = k * COMP_STRT + CARD_STRT;
games/mille/print.c
64
mvaddstr(i, temp, C_name[i + S_CONV]);
games/mille/print.c
66
mvaddch(i, temp - CARD_STRT, '*');
games/mille/print.c
69
show_card(14, temp, pp->battle, &pp->sh_battle);
games/mille/print.c
70
show_card(16, temp, pp->speed, &pp->sh_speed);
games/mille/print.c
79
temp = k * 40;
games/mille/print.c
82
mvwaddstr(Miles, i + 1, (j << 2) + temp, name);
games/mille/print.c
87
temp = CARD_STRT;
games/mille/print.c
90
show_card(i + 6, temp, pp->hand[i], &pp->sh_hand[i]);
games/mille/varpush.c
100
if ((write(file, (void *) &temp, sizeof temp)) < 0) {
games/mille/varpush.c
55
int temp;
games/mille/varpush.c
77
if ((read(file, (void *) &temp, sizeof temp)) < 0) {
games/mille/varpush.c
81
Topcard = &Deck[temp];
games/mille/varpush.c
99
temp = Topcard - Deck;
games/monop/cards.c
223
int temp;
games/monop/cards.c
227
temp = dp->cards[r2];
games/monop/cards.c
229
dp->cards[r1] = temp;
games/monop/cards.c
365
int temp;
games/monop/cards.c
385
temp = dp->cards[gojfpos];
games/monop/cards.c
392
dp->cards[dp->top_card] = temp;
games/monop/cards.c
396
dp->cards[last_card] = temp;
games/monop/houses.c
270
short input[3],temp[3];
games/monop/houses.c
285
input[i] = temp[i] = 0;
games/monop/houses.c
295
temp[i] = pp->houses - input[i];
games/monop/houses.c
296
if (temp[i] < 0) {
games/monop/houses.c
303
if (mp->num_in == 3 && (abs(temp[0] - temp[1]) > 1 ||
games/monop/houses.c
304
abs(temp[0] - temp[2]) > 1 || abs(temp[1] - temp[2]) > 1)) {
games/monop/houses.c
308
else if (mp->num_in == 2 && abs(temp[0] - temp[1]) > 1)
games/monop/houses.c
318
mp->sq[i]->desc->houses = temp[i];
games/phantasia/fight.c
1284
temp = 35;
games/phantasia/fight.c
1287
temp = 0;
games/phantasia/fight.c
1301
temp = 15 + Statptr->c_ringduration + (int) ROLL(0, 5);
games/phantasia/fight.c
1310
Player.p_ring.ring_duration = temp;
games/phantasia/fight.c
935
int temp; /* temporary */
games/phantasia/gamesupport.c
134
temp = today - playerp->p_lastused;
games/phantasia/gamesupport.c
135
if (temp < 0)
games/phantasia/gamesupport.c
137
temp += 365;
games/phantasia/gamesupport.c
138
mvprintw(16, 40, "3:Lastused %d (%d)\n", playerp->p_lastused, temp);
games/phantasia/gamesupport.c
29
int temp; /* temporary variable */
games/phantasia/main.c
452
double temp; /* for temporary calculations */
games/phantasia/main.c
590
temp = distance(Player.p_x, x, Player.p_y, y);
games/phantasia/main.c
596
&& temp > (Player.p_level + Player.p_magiclvl) * 20.0)
games/phantasia/main.c
601
temp = (temp / 75.0 + 1.0) * 20.0; /* mana used */
games/phantasia/main.c
603
if (!Throne && temp > Player.p_mana)
games/phantasia/main.c
607
Player.p_mana -= temp;
games/phantasia/main.c
829
double temp; /* for temporary calculations */
games/phantasia/main.c
837
temp = floor(infloat());
games/phantasia/main.c
838
if (temp < 0.0 || temp > Player.p_gold)
games/phantasia/main.c
844
if (drandom() / 2.0 > (temp + 1.0) / MAX(Player.p_gold, 1))
games/phantasia/main.c
850
Player.p_gold -= temp;
games/phantasia/main.c
862
temp = ROLL(10.0, 75.0);
games/phantasia/main.c
863
mvprintw(4, 0, "You've found %.0f gold pieces, want them ? ", temp);
games/phantasia/main.c
867
collecttaxes(temp, 0.0);
games/phantasia/main.c
918
temp = Player.p_poison * Statptr->c_weakness
games/phantasia/main.c
921
&& temp + 5.0 < Player.p_energy)
games/phantasia/main.c
922
Player.p_energy -= temp;
games/sail/dr_1.c
273
int crew[3], men = 0, target, temp;
games/sail/dr_1.c
341
temp = portside(closest, sp, 1)
games/sail/dr_1.c
343
if (temp < 1)
games/sail/dr_1.c
344
temp += 8;
games/sail/dr_1.c
345
if (temp > 8)
games/sail/dr_1.c
346
temp -= 8;
games/sail/dr_1.c
347
sternrake = temp > 4 && temp < 6;
games/sail/dr_1.c
385
temp = sp->specs->class;
games/sail/dr_1.c
386
if ((temp >= 5 || temp == 1) && windspeed == 5)
games/sail/dr_1.c
388
if (windspeed == 6 && temp == 4)
games/sail/dr_1.c
390
if (windspeed == 6 && temp <= 3)
games/sail/dr_2.c
167
char temp[10];
games/sail/dr_2.c
169
temp[0] = command[0] = '\0';
games/sail/dr_2.c
171
try(from, to, command, commandmax, temp, sizeof(temp),
games/sail/dr_2.c
251
char *temp, size_t tempmax,
games/sail/dr_2.c
258
if ((n = str_end(temp)) < '1' || n > '9')
games/sail/dr_2.c
261
strlcat(temp, st, tempmax);
games/sail/dr_2.c
262
new = score(f, t, temp, tempmax, rakeme);
games/sail/dr_2.c
265
strlcpy(command, temp, commandmax);
games/sail/dr_2.c
267
try(f, t, command, commandmax, temp, tempmax,
games/sail/dr_2.c
270
rmend(temp);
games/sail/dr_2.c
272
if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') ||
games/sail/dr_2.c
273
!strlen(temp)) {
games/sail/dr_2.c
274
strlcat(temp, "r", tempmax);
games/sail/dr_2.c
275
new = score(f, t, temp, tempmax, rakeme);
games/sail/dr_2.c
279
strlcpy(command, temp, commandmax);
games/sail/dr_2.c
281
try(f, t, command, commandmax, temp, tempmax,
games/sail/dr_2.c
285
rmend(temp);
games/sail/dr_2.c
287
if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') ||
games/sail/dr_2.c
288
!strlen(temp)) {
games/sail/dr_2.c
289
strlcat(temp, "l", tempmax);
games/sail/dr_2.c
290
new = score(f, t, temp, tempmax, rakeme);
games/sail/dr_2.c
294
strlcpy(command, temp, commandmax);
games/sail/dr_2.c
296
try(f, t, command, commandmax, temp, tempmax,
games/sail/dr_2.c
300
rmend(temp);
games/sail/dr_2.c
55
char *command, size_t commandmax, char *temp, size_t tempmax,
games/sail/pl_3.c
127
temp = portside(closest, ms, 1) - closest->file->dir + 1;
games/sail/pl_3.c
128
if (temp < 1)
games/sail/pl_3.c
129
temp += 8;
games/sail/pl_3.c
130
else if (temp > 8)
games/sail/pl_3.c
131
temp -= 8;
games/sail/pl_3.c
132
sternrake = temp > 4 && temp < 6;
games/sail/pl_3.c
172
if (((temp = mc->class) >= 5 || temp == 1) && windspeed == 5)
games/sail/pl_3.c
174
if (windspeed == 6 && temp == 4)
games/sail/pl_3.c
176
if (windspeed == 6 && temp <= 3)
games/sail/pl_3.c
50
int target, temp;
games/sail/pl_5.c
212
int temp[3];
games/sail/pl_5.c
215
temp[k] = crew[k];
games/sail/pl_5.c
239
temp[k] && !crew[k]);
games/sail/pl_5.c
244
temp[k] && !crew[k]);
games/snake/snscore/snscore.c
118
temp = players[i];
games/snake/snscore/snscore.c
120
players[i + 1] = temp;
games/snake/snscore/snscore.c
64
static struct player players[MAXPLAYERS], temp;
games/trek/compkl.c
64
double temp;
games/trek/compkl.c
77
temp = Etc.klingon[i].dist;
games/trek/compkl.c
78
Etc.klingon[i].avgdist = 0.5 * (temp + d);
games/warp/move.c
130
if ((temp = occupant[y][x]) != NULL) { /* already occupied? */
games/warp/move.c
131
if (!temp->contend) {
games/warp/move.c
132
if (temp->type == Torp) {
games/warp/move.c
133
if (temp->image == '+')
games/warp/move.c
135
else if (temp->image == 'o' && (base||ent))
games/warp/move.c
137
else if (temp->image == 'O' && (base||ent))
games/warp/move.c
144
curobj->contend = temp;
games/warp/move.c
148
if (numamoebas && curobj == nuke && temp->image == '+')
games/warp/move.c
150
else if (temp->type == Enemy)
games/warp/move.c
163
blast[y][x] += (temp==nuke ? 80000 : 1250);
games/warp/move.c
170
if (temp == ent)
games/warp/move.c
174
if (temp->type == Star) {
games/warp/move.c
225
if ((temp = occupant[y][x]) != NULL) {
games/warp/move.c
226
if (temp->image == '&')
games/warp/move.c
228
else if (temp->type == Web)
games/warp/move.c
231
tmpblast += 50 + temp->energy/100;
games/warp/move.c
242
temp = occupant[y][x];
games/warp/move.c
245
amb[y][x] == '~' && temp != nuke) {
games/warp/move.c
247
if (!temp)
games/warp/move.c
253
if (temp) {
games/warp/move.c
257
for ( ;temp;
games/warp/move.c
258
temp = curobj->contend,curobj->contend = 0){
games/warp/move.c
259
curobj = temp;
games/warp/move.c
73
OBJECT *temp;
games/warp/move.c
93
(!(temp=occupant[y][x]) || temp->image==' ') ) {
games/warp/move.c
98
if (!(temp=occupant[y][x]) || temp->type != Star ||
games/warp/util.c
59
double temp, temp2;
games/warp/util.c
61
temp = (double) maxnum;
games/warp/util.c
68
return (int) exp(temp2 * log(temp)/0x7fff);
games/warp/util.c
71
return (int) exp(temp2 * log(temp)/0xffff);
games/warp/util.c
73
return (int) exp(temp2 * log(temp)/0x7fffffff);
lib/libc/arch/m68k/gen/ldexp_881.c
49
double temp;
lib/libc/arch/m68k/gen/ldexp_881.c
52
: "=f" (temp)
lib/libc/arch/m68k/gen/ldexp_881.c
54
return (temp);
lib/libc/arch/m68k/hardfloat/ldexp_881.c
49
double temp;
lib/libc/arch/m68k/hardfloat/ldexp_881.c
52
: "=f" (temp)
lib/libc/arch/m68k/hardfloat/ldexp_881.c
54
return (temp);
lib/libc/db/btree/bt_open.c
103
size_t temp;
lib/libc/db/btree/bt_open.c
296
temp = (t->bt_psize - BTDATAOFF) / b.minkeypage -
lib/libc/db/btree/bt_open.c
298
_DBFIT(temp, indx_t);
lib/libc/db/btree/bt_open.c
299
t->bt_ovflsize = (indx_t)temp;
lib/libc/db/btree/bt_overflow.c
111
temp = t->bt_psize - BTDATAOFF;
lib/libc/db/btree/bt_overflow.c
112
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_overflow.c
113
plen = (uint32_t)temp;
lib/libc/db/btree/bt_overflow.c
146
size_t temp;
lib/libc/db/btree/bt_overflow.c
152
temp = t->bt_psize - BTDATAOFF;
lib/libc/db/btree/bt_overflow.c
153
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_overflow.c
154
plen = (uint32_t)temp;
lib/libc/db/btree/bt_overflow.c
157
temp = dbt->size;
lib/libc/db/btree/bt_overflow.c
158
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_overflow.c
159
sz = (uint32_t)temp;
lib/libc/db/btree/bt_overflow.c
202
size_t temp;
lib/libc/db/btree/bt_overflow.c
221
temp = t->bt_psize - BTDATAOFF;
lib/libc/db/btree/bt_overflow.c
222
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_overflow.c
223
plen = (uint32_t)temp;
lib/libc/db/btree/bt_overflow.c
88
size_t temp;
lib/libc/db/btree/bt_put.c
143
temp = (uint32_t)data->size;
lib/libc/db/btree/bt_put.c
145
&temp, sizeof(uint32_t));
lib/libc/db/btree/bt_put.c
78
uint32_t nbytes, temp;
lib/libc/db/btree/bt_split.c
189
size_t temp;
lib/libc/db/btree/bt_split.c
195
temp = t->bt_pfx(&a, &b);
lib/libc/db/btree/bt_split.c
196
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_split.c
197
nksize = (uint32_t)temp;
lib/libc/db/btree/bt_split.c
495
size_t temp;
lib/libc/db/btree/bt_split.c
497
temp = t->bt_psize - NRINTERNAL;
lib/libc/db/btree/bt_split.c
498
_DBFIT(temp, uint32_t);
lib/libc/db/btree/bt_split.c
499
sz = (uint32_t)temp;
lib/libc/db/btree/bt_split.c
624
size_t temp;
lib/libc/db/btree/bt_split.c
635
temp = t->bt_psize - BTDATAOFF;
lib/libc/db/btree/bt_split.c
636
_DBFIT(temp, indx_t);
lib/libc/db/btree/bt_split.c
637
full = (indx_t)temp;
lib/libc/db/btree/bt_split.c
691
temp = nbytes + sizeof(indx_t);
lib/libc/db/btree/bt_split.c
692
_DBFIT(temp, indx_t);
lib/libc/db/btree/bt_split.c
693
used += (indx_t)temp;
lib/libc/db/btree/bt_split.c
706
temp = (off + 1) * sizeof(indx_t);
lib/libc/db/btree/bt_split.c
707
_DBFIT(temp, indx_t);
lib/libc/db/btree/bt_split.c
708
l->lower += (indx_t)temp;
lib/libc/db/btree/bt_split.c
771
temp = off * sizeof(indx_t);
lib/libc/db/btree/bt_split.c
772
_DBFIT(temp, indx_t);
lib/libc/db/btree/bt_split.c
773
r->lower += (indx_t)temp;
lib/libc/db/hash/hash_bigkey.c
106
temp = FREESPACE(p) - BIGOVERHEAD;
lib/libc/db/hash/hash_bigkey.c
107
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
108
space = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
120
temp = off - PAGE_META(n);
lib/libc/db/hash/hash_bigkey.c
121
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
122
FREESPACE(p) = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
160
temp = FREESPACE(p) - BIGOVERHEAD;
lib/libc/db/hash/hash_bigkey.c
161
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
162
space = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
166
temp = FREESPACE(p) - BIGOVERHEAD;
lib/libc/db/hash/hash_bigkey.c
167
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
168
space = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
186
temp = off - PAGE_META(n);
lib/libc/db/hash/hash_bigkey.c
187
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
188
FREESPACE(p) = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
200
temp = FREESPACE(p) - BIGOVERHEAD;
lib/libc/db/hash/hash_bigkey.c
201
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
202
space = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
224
size_t temp;
lib/libc/db/hash/hash_bigkey.c
277
temp = HASH_BSIZE(hashp) - PAGE_META(n);
lib/libc/db/hash/hash_bigkey.c
278
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
279
FREESPACE(bp) = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
597
size_t temp;
lib/libc/db/hash/hash_bigkey.c
636
temp = free_space - OVFLSIZE;
lib/libc/db/hash/hash_bigkey.c
637
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
638
FREESPACE(tp) = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
664
temp = free_space + OVFLSIZE;
lib/libc/db/hash/hash_bigkey.c
665
_DBFIT(temp, uint16_t);
lib/libc/db/hash/hash_bigkey.c
666
FREESPACE(tp) = (uint16_t)temp;
lib/libc/db/hash/hash_bigkey.c
92
size_t temp;
lib/libc/db/hash/hash_page.c
101
size_t temp;
lib/libc/db/hash/hash_page.c
108
temp = OFFSET(bp);
lib/libc/db/hash/hash_page.c
109
_DIAGASSERT(temp >= key->size);
lib/libc/db/hash/hash_page.c
110
off = (uint16_t)(temp - key->size);
lib/libc/db/hash/hash_page.c
122
temp = (n + 3) * sizeof(uint16_t);
lib/libc/db/hash/hash_page.c
123
_DIAGASSERT(off >= temp);
lib/libc/db/hash/hash_page.c
124
bp[n + 1] = (uint16_t)(off - temp);
lib/libc/db/hash/hash_page.c
139
size_t temp;
lib/libc/db/hash/hash_page.c
172
temp = bp[n + 1] + pairlen + 2 * sizeof(uint16_t);
lib/libc/db/hash/hash_page.c
173
_DIAGASSERT(temp <= 0xffff);
lib/libc/db/hash/hash_page.c
174
bp[n - 1] = (uint16_t)temp;
lib/libc/db/hash/hash_page.c
196
size_t temp;
lib/libc/db/hash/hash_page.c
252
temp = sizeof(uint16_t) * (ino[0] + 3);
lib/libc/db/hash/hash_page.c
253
_DIAGASSERT(copyto >= temp);
lib/libc/db/hash/hash_page.c
254
FREESPACE(ino) = (uint16_t)(copyto - temp);
lib/libc/db/hash/hash_page.c
297
size_t temp;
lib/libc/db/hash/hash_page.c
339
temp = sizeof(uint16_t) * (ino[0] + 3);
lib/libc/db/hash/hash_page.c
340
_DIAGASSERT(scopyto >= temp);
lib/libc/db/hash/hash_page.c
341
FREESPACE(ino) = (uint16_t)(scopyto - temp);
lib/libc/db/hash/hash_page.c
485
size_t temp;
lib/libc/db/hash/hash_page.c
518
temp = FREESPACE(sp);
lib/libc/db/hash/hash_page.c
519
_DIAGASSERT(temp >= OVFLSIZE);
lib/libc/db/hash/hash_page.c
520
sp[ndx + 3] = (uint16_t)(temp - OVFLSIZE);
lib/libc/db/hash/hash_page.c
542
size_t temp;
lib/libc/db/hash/hash_page.c
86
temp = 3 * sizeof(uint16_t); \
lib/libc/db/hash/hash_page.c
87
_DIAGASSERT((size_t)HASH_BSIZE(hashp) >= temp); \
lib/libc/db/hash/hash_page.c
873
size_t temp;
lib/libc/db/hash/hash_page.c
88
((uint16_t *)(void *)(P))[1] = (uint16_t)(HASH_BSIZE(hashp) - temp); \
lib/libc/db/hash/hash_page.c
892
temp = PAIRSIZE(key, val);
lib/libc/db/hash/hash_page.c
893
_DIAGASSERT(free_space >= temp);
lib/libc/db/hash/hash_page.c
894
FREESPACE(sp) = (uint16_t)(free_space - temp);
lib/libc/db/recno/rec_delete.c
159
size_t temp;
lib/libc/db/recno/rec_delete.c
185
temp = &h->linp[idx] - (ip = &h->linp[0]);
lib/libc/db/recno/rec_delete.c
186
_DBFIT(temp, uint16_t);
lib/libc/db/recno/rec_delete.c
187
for (cnt = (uint16_t)temp; cnt--; ++ip)
lib/libc/db/recno/rec_delete.c
190
temp = &h->linp[NEXTINDEX(h)] - ip;
lib/libc/db/recno/rec_delete.c
191
_DBFIT(temp, uint16_t);
lib/libc/db/recno/rec_delete.c
192
for (cnt = (uint16_t)temp; --cnt; ++ip)
lib/libc/gen/utmpx.c
243
struct utmpx temp, *u = NULL;
lib/libc/gen/utmpx.c
262
(void)memcpy(&temp, utx, sizeof(temp));
lib/libc/gen/utmpx.c
270
if (getutxid(&temp) == NULL) {
lib/libc/gen/utmpx.c
272
if (getutxid(&temp) == NULL) {
lib/libc/gen/utmpx.c
288
new2old(&temp);
lib/libc/gen/utmpx.c
289
if (fwrite(&temp, sizeof (temp), 1, fp) != 1)
lib/libc/gen/utmpx.c
295
u = memcpy(&ut, &temp, sizeof(ut));
lib/libc/rpc/xdr_stdio.c
120
u_int32_t temp;
lib/libc/rpc/xdr_stdio.c
122
if (fread(&temp, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
lib/libc/rpc/xdr_stdio.c
124
*lp = (long)ntohl(temp);
lib/libc/stdlib/_rand48.c
41
unsigned short temp[2];
lib/libc/stdlib/_rand48.c
47
temp[0] = (unsigned short) accu; /* lower 16 bits */
lib/libc/stdlib/_rand48.c
51
temp[1] = (unsigned short) accu; /* middle 16 bits */
lib/libc/stdlib/_rand48.c
56
xseed[0] = temp[0];
lib/libc/stdlib/_rand48.c
57
xseed[1] = temp[1];
lib/libc/stdlib/radixsort.c
154
stack s[SIZE], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
217
swap(*sp0, *sp1, temp); /* Play it safe -- biggest bin last. */
lib/libc/stdlib/radixsort.c
245
stack s[512], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
302
swap(*sp0, *sp1, temp);
lib/libc/time/zic.c
1698
remove_temp(char const *temp)
lib/libc/time/zic.c
1700
if (remove(temp) < 0)
lib/libc/time/zic.c
1702
progname, diagdir(temp), diagslash(temp), temp, strerror(errno));
lib/libcompat/regexp/regexp.c
729
char *temp;
lib/libcompat/regexp/regexp.c
738
temp = regnext(scan);
lib/libcompat/regexp/regexp.c
739
if (temp == NULL)
lib/libcompat/regexp/regexp.c
741
scan = temp;
lib/libcrypt/blowfish.c
388
u_int32_t temp;
lib/libcrypt/blowfish.c
390
temp = 0x00000000;
lib/libcrypt/blowfish.c
396
temp = (temp << 8) | data[j];
lib/libcrypt/blowfish.c
400
return temp;
lib/libcrypt/blowfish.c
409
u_int32_t temp;
lib/libcrypt/blowfish.c
416
temp = Blowfish_stream2word(key, keybytes, &j);
lib/libcrypt/blowfish.c
417
c->P[i] = c->P[i] ^ temp;
lib/libcrypt/blowfish.c
448
u_int32_t temp;
lib/libcrypt/blowfish.c
455
temp = Blowfish_stream2word(key, keybytes, &j);
lib/libcrypt/blowfish.c
456
c->P[i] = c->P[i] ^ temp;
lib/libcurses/EXAMPLES/view.c
238
char temp[BUFSIZ], *s, *d;
lib/libcurses/EXAMPLES/view.c
245
for (s = buf, d = temp, col = 0; (*d = *s) != '\0'; s++) {
lib/libcurses/EXAMPLES/view.c
251
while ((d - temp) != col)
lib/libcurses/EXAMPLES/view.c
263
col = (d - temp);
lib/libcurses/EXAMPLES/view.c
267
*lptr = ch_dup(temp);
lib/libcurses/EXAMPLES/view.c
488
char temp[BUFSIZ];
lib/libcurses/EXAMPLES/view.c
492
sprintf(temp, "%s (%3dx%3d) col %d ", tag, LINES, COLS, shift);
lib/libcurses/EXAMPLES/view.c
493
i = strlen(temp);
lib/libcurses/EXAMPLES/view.c
494
sprintf(temp + i, "view %.*s", (int) (sizeof(temp) - 7 - i), fname);
lib/libcurses/EXAMPLES/view.c
496
printw("%.*s", COLS, temp);
lib/libcurses/EXAMPLES/view.c
499
strcpy(temp, ctime(&this_time));
lib/libcurses/EXAMPLES/view.c
500
if ((i = strlen(temp)) != 0) {
lib/libcurses/EXAMPLES/view.c
501
temp[--i] = 0;
lib/libcurses/EXAMPLES/view.c
503
printw(" %s", temp);
lib/libcurses/PSD.doc/twinkle1.c
147
LOCS temp;
lib/libcurses/PSD.doc/twinkle1.c
152
temp = *lp;
lib/libcurses/PSD.doc/twinkle1.c
154
Layout[r] = temp;
lib/libcurses/PSD.doc/twinkle2.c
136
LOCS temp;
lib/libcurses/PSD.doc/twinkle2.c
142
temp = *lp;
lib/libcurses/PSD.doc/twinkle2.c
144
Layout[r] = temp;
lib/libcurses/insdelln.c
110
temp = win->alines[y + nlines];
lib/libcurses/insdelln.c
112
win->alines[y] = temp;
lib/libcurses/insdelln.c
154
temp = win->alines[y];
lib/libcurses/insdelln.c
156
win->alines[y + nlines] = temp;
lib/libcurses/insdelln.c
72
__LINE *temp;
lib/libedit/filecomplete.c
104
if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0)
lib/libedit/filecomplete.c
107
pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf));
lib/libedit/filecomplete.c
109
pass = getpwnam(temp);
lib/libedit/filecomplete.c
112
el_free(temp); /* value no more needed */
lib/libedit/filecomplete.c
121
temp = el_calloc(len, sizeof(*temp));
lib/libedit/filecomplete.c
122
if (temp == NULL)
lib/libedit/filecomplete.c
124
(void)snprintf(temp, len, "%s/%s", pass->pw_dir, txt);
lib/libedit/filecomplete.c
126
return temp;
lib/libedit/filecomplete.c
207
wchar_t *temp = el->el_line.buffer;
lib/libedit/filecomplete.c
213
while (temp != el->el_line.cursor) {
lib/libedit/filecomplete.c
218
if (temp[0] == '\'' && !d_quoted &&
lib/libedit/filecomplete.c
219
(temp == el->el_line.buffer || temp[-1] != '\\'))
lib/libedit/filecomplete.c
224
else if (temp[0] == '"' && !s_quoted)
lib/libedit/filecomplete.c
226
temp++;
lib/libedit/filecomplete.c
331
char *temp;
lib/libedit/filecomplete.c
432
temp = el_calloc(len, sizeof(*temp));
lib/libedit/filecomplete.c
433
if (temp == NULL)
lib/libedit/filecomplete.c
435
(void)snprintf(temp, len, "%s%s", dirname, entry->d_name);
lib/libedit/filecomplete.c
439
temp = NULL;
lib/libedit/filecomplete.c
442
return temp;
lib/libedit/filecomplete.c
594
wchar_t *temp;
lib/libedit/filecomplete.c
639
temp = el_malloc((len + 1) * sizeof(*temp));
lib/libedit/filecomplete.c
640
if (temp == NULL)
lib/libedit/filecomplete.c
642
(void) wcsncpy(temp, ctemp, len);
lib/libedit/filecomplete.c
643
temp[len] = '\0';
lib/libedit/filecomplete.c
644
return temp;
lib/libedit/filecomplete.c
669
wchar_t *temp;
lib/libedit/filecomplete.c
690
temp = find_word_to_complete(li->cursor,
lib/libedit/filecomplete.c
692
if (temp == NULL)
lib/libedit/filecomplete.c
705
ct_encode_string(temp, &el->el_scratch),
lib/libedit/filecomplete.c
712
ct_encode_string(temp, &el->el_scratch), complete_func);
lib/libedit/filecomplete.c
73
char *temp;
lib/libedit/filecomplete.c
81
temp = strdup(txt + 1);
lib/libedit/filecomplete.c
82
if (temp == NULL)
lib/libedit/filecomplete.c
825
el_free(temp);
lib/libedit/filecomplete.c
87
temp = el_calloc(len, sizeof(*temp));
lib/libedit/filecomplete.c
88
if (temp == NULL)
lib/libedit/filecomplete.c
90
(void)strlcpy(temp, txt + 1, len - 1);
lib/libedit/filecomplete.c
92
if (temp[0] == 0) {
lib/libedit/readline.c
1181
char **result = NULL, *temp, delim = '\0';
lib/libedit/readline.c
1214
temp = el_calloc(len + 1, sizeof(*temp));
lib/libedit/readline.c
1215
if (temp == NULL) {
lib/libedit/readline.c
1221
(void)strlcpy(temp, &str[start], len + 1);
lib/libedit/readline.c
1222
result[idx++] = temp;
lib/libform/form.c
141
int i, max_row, max_col, temp;
lib/libform/form.c
150
temp = form->fields[i]->form_row + form->fields[i]->rows;
lib/libform/form.c
151
max_row = (temp > max_row)? temp : max_row;
lib/libform/form.c
152
temp = form->fields[i]->form_col + form->fields[i]->cols;
lib/libform/form.c
153
max_col = (temp > max_col)? temp : max_col;
lib/libform/internals.c
1753
_FORMI_FIELD_LINES *row, *temp, *next_temp;
lib/libform/internals.c
1794
temp = row->next;
lib/libform/internals.c
1796
next_temp = temp->next;
lib/libform/internals.c
1797
add_to_free(field, temp);
lib/libform/internals.c
1798
temp = next_temp;
lib/libform/internals.c
1799
} while (temp != NULL);
lib/libform/internals.c
470
_FORMI_FIELD_LINES *temp, *row;
lib/libform/internals.c
488
temp = row->next;
lib/libform/internals.c
490
row = temp;
lib/libform/internals.c
507
_FORMI_FIELD_LINES *saved_start_line, *temp;
lib/libform/internals.c
555
temp = row_backup;
lib/libform/internals.c
558
saved_cur_line = temp;
lib/libform/internals.c
559
saved_start_line = temp;
lib/libform/internals.c
562
if ((temp->next = copy_row(row)) == NULL) {
lib/libform/internals.c
568
temp->next->prev = temp;
lib/libform/internals.c
569
temp = temp->next;
lib/libform/internals.c
572
saved_start_line = temp;
lib/libform/internals.c
574
saved_cur_line = temp;
lib/libm/noieee_src/n_cabs.c
194
double temp;
lib/libm/noieee_src/n_cabs.c
203
{ temp=x; x=y; y=temp; }
lib/libm/noieee_src/n_exp2.c
348
uint32_t hx, ix, i0, temp;
lib/libm/noieee_src/n_exp2.c
378
temp = 0x3ff00000+k;
lib/libm/noieee_src/n_exp2.c
380
memcpy(&twopk, &temp, sizeof(temp));
lib/libm/noieee_src/n_exp2.c
382
temp = 0x3ff00000+k + (1000 << 20);
lib/libm/noieee_src/n_exp2.c
384
memcpy(&twopk, &temp, sizeof(temp));
lib/libm/noieee_src/n_exp2f.c
103
int32_t k, temp;
lib/libm/noieee_src/n_exp2f.c
125
temp = 0x3ff00000+k;
lib/libm/noieee_src/n_exp2f.c
127
memcpy(&twopk, &temp, sizeof(temp));
lib/libm/noieee_src/n_jn.c
116
double a, b, temp;
lib/libm/noieee_src/n_jn.c
155
case 0: temp = cos(x)+sin(x); break;
lib/libm/noieee_src/n_jn.c
156
case 1: temp = -cos(x)+sin(x); break;
lib/libm/noieee_src/n_jn.c
157
case 2: temp = -cos(x)-sin(x); break;
lib/libm/noieee_src/n_jn.c
158
case 3: temp = cos(x)-sin(x); break;
lib/libm/noieee_src/n_jn.c
160
b = invsqrtpi*temp/sqrt(x);
lib/libm/noieee_src/n_jn.c
167
temp = b;
lib/libm/noieee_src/n_jn.c
169
a = temp;
lib/libm/noieee_src/n_jn.c
180
temp = x*0.5; b = temp;
lib/libm/noieee_src/n_jn.c
183
b *= temp; /* b = (x/2)^n */
lib/libm/noieee_src/n_jn.c
243
temp = b;
lib/libm/noieee_src/n_jn.c
245
a = temp;
lib/libm/noieee_src/n_jn.c
268
double a, b, temp;
lib/libm/noieee_src/n_jn.c
300
case 0: temp = sin(x)-cos(x); break;
lib/libm/noieee_src/n_jn.c
301
case 1: temp = -sin(x)-cos(x); break;
lib/libm/noieee_src/n_jn.c
302
case 2: temp = -sin(x)+cos(x); break;
lib/libm/noieee_src/n_jn.c
303
case 3: temp = sin(x)+cos(x); break;
lib/libm/noieee_src/n_jn.c
305
b = invsqrtpi*temp/sqrt(x);
lib/libm/noieee_src/n_jn.c
313
temp = b;
lib/libm/noieee_src/n_jn.c
315
a = temp;
lib/libm/src/e_jn.c
100
case 2: temp = -cos(x)-sin(x); break;
lib/libm/src/e_jn.c
101
case 3: temp = cos(x)-sin(x); break;
lib/libm/src/e_jn.c
103
b = invsqrtpi*temp/sqrt(x);
lib/libm/src/e_jn.c
108
temp = b;
lib/libm/src/e_jn.c
110
a = temp;
lib/libm/src/e_jn.c
121
temp = x*0.5; b = temp;
lib/libm/src/e_jn.c
124
b *= temp; /* b = (x/2)^n */
lib/libm/src/e_jn.c
185
temp = b;
lib/libm/src/e_jn.c
188
a = temp;
lib/libm/src/e_jn.c
193
temp = b;
lib/libm/src/e_jn.c
196
a = temp;
lib/libm/src/e_jn.c
222
double a, b, temp;
lib/libm/src/e_jn.c
224
temp = 0;
lib/libm/src/e_jn.c
254
case 0: temp = sin(x)-cos(x); break;
lib/libm/src/e_jn.c
255
case 1: temp = -sin(x)-cos(x); break;
lib/libm/src/e_jn.c
256
case 2: temp = -sin(x)+cos(x); break;
lib/libm/src/e_jn.c
257
case 3: temp = sin(x)+cos(x); break;
lib/libm/src/e_jn.c
259
b = invsqrtpi*temp/sqrt(x);
lib/libm/src/e_jn.c
267
temp = b;
lib/libm/src/e_jn.c
270
a = temp;
lib/libm/src/e_jn.c
59
double a, b, temp, di;
lib/libm/src/e_jn.c
62
temp = 0;
lib/libm/src/e_jn.c
98
case 0: temp = cos(x)+sin(x); break;
lib/libm/src/e_jn.c
99
case 1: temp = -cos(x)+sin(x); break;
lib/libm/src/e_jnf.c
139
temp = b;
lib/libm/src/e_jnf.c
142
a = temp;
lib/libm/src/e_jnf.c
147
temp = b;
lib/libm/src/e_jnf.c
150
a = temp;
lib/libm/src/e_jnf.c
176
float a, b, temp;
lib/libm/src/e_jnf.c
198
temp = b;
lib/libm/src/e_jnf.c
201
a = temp;
lib/libm/src/e_jnf.c
37
float a, b, temp, di;
lib/libm/src/e_jnf.c
63
temp = b;
lib/libm/src/e_jnf.c
65
a = temp;
lib/libm/src/e_jnf.c
75
temp = x*(float)0.5; b = temp;
lib/libm/src/e_jnf.c
78
b *= temp; /* b = (x/2)^n */
libexec/ftpd/ftpd.c
1727
char temp[MAXPATHLEN];
libexec/ftpd/ftpd.c
1733
(void)snprintf(temp, sizeof(temp), "%s", TMPFILE);
libexec/ftpd/ftpd.c
1734
stderrfd = mkstemp(temp);
libexec/ftpd/ftpd.c
1736
(void)unlink(temp);
sbin/apmlabel/apmlabel.c
110
uint64_t temp;
sbin/apmlabel/apmlabel.c
165
temp = (uint64_t)part->pmDataCnt * (uint64_t)blksize;
sbin/apmlabel/apmlabel.c
166
if (temp % label.d_secsize != 0) {
sbin/apmlabel/apmlabel.c
171
npe.p_size = temp / label.d_secsize;
sbin/apmlabel/apmlabel.c
172
temp = (uint64_t)(part->pmPyPartStart + part->pmLgDataStart)
sbin/apmlabel/apmlabel.c
174
if (temp % label.d_secsize != 0) {
sbin/apmlabel/apmlabel.c
179
npe.p_offset = temp / label.d_secsize;
sbin/dump/dump.h
114
extern const char *temp; /* name of the file for doing rewrite of dumpdates */
sbin/dump/main.c
161
temp = _PATH_DTMP;
sbin/dump/main.c
82
const char *temp;
sbin/iscsictl/iscsic_main.c
394
get_response(int temp)
sbin/iscsictl/iscsic_main.c
418
temp = temp || (len > (int)(sizeof(buf) - sizeof(int)));
sbin/iscsictl/iscsic_main.c
420
if (temp) {
sbin/nvmectl/bignum.c
5722
BIGNUM *temp;
sbin/nvmectl/bignum.c
5735
temp = BN_dup(power);
sbin/nvmectl/bignum.c
5739
BN_mul(temp, power, temp, NULL);
sbin/nvmectl/bignum.c
5742
BN_copy(res, temp);
sbin/nvmectl/bignum.c
5744
BN_free(temp);
sbin/nvmectl/logpage.c
366
struct intel_log_temp_stats *temp = buf;
sbin/nvmectl/logpage.c
369
intel_log_temp_stats_swapbytes(temp);
sbin/nvmectl/logpage.c
375
print_temp(temp->current);
sbin/nvmectl/logpage.c
377
(uintmax_t)temp->overtemp_flag_last);
sbin/nvmectl/logpage.c
379
(uintmax_t)temp->overtemp_flag_life);
sbin/nvmectl/logpage.c
381
print_temp(temp->max_temp);
sbin/nvmectl/logpage.c
383
print_temp(temp->min_temp);
sbin/nvmectl/logpage.c
385
print_temp(temp->max_oper_temp);
sbin/nvmectl/logpage.c
387
print_temp(temp->min_oper_temp);
sbin/nvmectl/logpage.c
389
(uintmax_t)temp->est_offset);
sbin/rcorder/rcorder.c
246
filenode *temp;
sbin/rcorder/rcorder.c
248
temp = emalloc(sizeof(*temp));
sbin/rcorder/rcorder.c
249
memset(temp, 0, sizeof(*temp));
sbin/rcorder/rcorder.c
250
temp->filename = estrdup(filename);
sbin/rcorder/rcorder.c
251
temp->req_list = NULL;
sbin/rcorder/rcorder.c
252
temp->prov_list = NULL;
sbin/rcorder/rcorder.c
253
temp->keyword_list = NULL;
sbin/rcorder/rcorder.c
254
temp->in_progress = RESET;
sbin/rcorder/rcorder.c
260
temp->next = fn_head->next;
sbin/rcorder/rcorder.c
261
if (temp->next != NULL)
sbin/rcorder/rcorder.c
262
temp->next->last = temp;
sbin/rcorder/rcorder.c
263
temp->last = fn_head;
sbin/rcorder/rcorder.c
264
fn_head->next = temp;
sbin/rcorder/rcorder.c
265
return (temp);
sbin/restore/symtab.c
454
struct entry temp, *tentry;
sbin/restore/symtab.c
482
tep = &temp;
sys/arch/acorn32/mainbus/lpt_pioc.c
73
u_char temp;
sys/arch/acorn32/mainbus/lpt_pioc.c
80
temp = bus_space_read_1(iot, ioh, off) & mask;
sys/arch/acorn32/mainbus/lpt_pioc.c
81
} while (temp != data && --timeout);
sys/arch/acorn32/mainbus/lpt_pioc.c
82
return (temp == data);
sys/arch/alpha/pci/ttwoga_dma.c
86
uint64_t temp; \
sys/arch/alpha/pci/ttwoga_dma.c
89
temp = T2GA((tcp), T2_IOCSR); \
sys/arch/alpha/pci/ttwoga_dma.c
90
T2GA((tcp), T2_IOCSR) = temp | IOCSR_FTLB; \
sys/arch/alpha/pci/ttwoga_dma.c
93
T2GA((tcp), T2_IOCSR) = temp; \
sys/arch/amiga/amiga/autoconf.c
169
struct device temp;
sys/arch/amiga/amiga/autoconf.c
180
memset(&temp, 0, sizeof temp);
sys/arch/amiga/amiga/autoconf.c
181
parent = &temp;
sys/arch/amiga/dev/afsc.c
105
u_long temp, scratch;
sys/arch/amiga/dev/afsc.c
118
temp = rp->siop_temp;
sys/arch/amiga/dev/afsc.c
124
rp->siop_temp = temp;
sys/arch/amiga/dev/afsc.c
125
if (rp->siop_scratch != scratch || rp->siop_temp != temp)
sys/arch/amiga/dev/gayle_pcmcia.c
480
volatile u_int8_t *temp;
sys/arch/amiga/dev/gayle_pcmcia.c
496
temp = cp1;
sys/arch/amiga/dev/gayle_pcmcia.c
498
cp2 = temp;
sys/arch/amiga/dev/gayle_pcmcia.c
508
volatile u_int8_t *temp;
sys/arch/amiga/dev/gayle_pcmcia.c
524
temp = cp1;
sys/arch/amiga/dev/gayle_pcmcia.c
526
cp2 = temp;
sys/arch/amiga/dev/grf_cc.c
121
struct device temp;
sys/arch/amiga/dev/grf_cc.c
126
gp->g_device = &temp;
sys/arch/amiga/dev/grf_cc.c
127
temp.dv_private = gp;
sys/arch/amiga/dev/grf_cl.c
399
struct device temp;
sys/arch/amiga/dev/grf_cl.c
413
gp->g_device = &temp;
sys/arch/amiga/dev/grf_cl.c
414
temp.dv_private = gp;
sys/arch/amiga/dev/grf_cv.c
481
struct device temp;
sys/arch/amiga/dev/grf_cv.c
494
gp->g_device = &temp;
sys/arch/amiga/dev/grf_cv.c
495
temp.dv_private = gp;
sys/arch/amiga/dev/grf_cv3d.c
427
struct device temp;
sys/arch/amiga/dev/grf_cv3d.c
439
gp->g_device = &temp;
sys/arch/amiga/dev/grf_cv3d.c
440
temp.dv_private = gp;
sys/arch/amiga/dev/grf_et.c
333
struct device temp;
sys/arch/amiga/dev/grf_et.c
345
gp->g_device = &temp;
sys/arch/amiga/dev/grf_et.c
346
temp.dv_private = gp;
sys/arch/amiga/dev/grf_rh.c
1583
struct device temp;
sys/arch/amiga/dev/grf_rh.c
1591
gp->g_device = &temp;
sys/arch/amiga/dev/grf_rh.c
1592
temp.dv_private = gp;
sys/arch/amiga/dev/grf_rt.c
846
struct device temp;
sys/arch/amiga/dev/grf_rt.c
854
gp->g_device = &temp;
sys/arch/amiga/dev/grf_rt.c
855
temp.dv_private = gp;
sys/arch/amiga/dev/grf_ul.c
494
struct device temp;
sys/arch/amiga/dev/grf_ul.c
504
gp->g_device = &temp;
sys/arch/amiga/dev/grf_ul.c
505
temp.dv_private = gp;
sys/arch/amigappc/amigappc/autoconf.c
129
struct device temp;
sys/arch/amigappc/amigappc/autoconf.c
140
memset(&temp, 0, sizeof temp);
sys/arch/amigappc/amigappc/autoconf.c
141
parent = &temp;
sys/arch/arc/jazz/lpt_jazzio.c
101
temp = bus_space_read_1(iot, ioh, off) & mask;
sys/arch/arc/jazz/lpt_jazzio.c
102
} while (temp != data && --timeout);
sys/arch/arc/jazz/lpt_jazzio.c
103
return temp == data;
sys/arch/arc/jazz/lpt_jazzio.c
94
u_char temp;
sys/arch/arm/amlogic/meson_thermal.c
141
int val, temp;
sys/arch/arm/amlogic/meson_thermal.c
155
temp = ((uptat + sc->sc_ao_calib) * CALIB_A);
sys/arch/arm/amlogic/meson_thermal.c
156
temp = (temp - (CALIB_B * (1 << 16))) * 100000LL / (1 << 16);
sys/arch/arm/amlogic/meson_thermal.c
158
return temp; /* microcelsius */
sys/arch/arm/nvidia/tegra_soctherm.c
379
const u_int temp = __SHIFTOUT(status,
sys/arch/arm/nvidia/tegra_soctherm.c
381
int64_t val = ((temp >> 8) & 0xff) * 1000000;
sys/arch/arm/nvidia/tegra_soctherm.c
382
if (temp & 0x80)
sys/arch/arm/nvidia/tegra_soctherm.c
384
if (temp & 0x02)
sys/arch/arm/rockchip/rk_tsadc.c
164
int temp; /* micro-degC */
sys/arch/arm/rockchip/rk_tsadc.c
273
#define ENTRY(d,C) { .data = (d), .temp = (C) * 1000 * 1000, }
sys/arch/arm/rockchip/rk_tsadc.c
321
{ .data = RK3328_DATA_OFFSET - (d), .temp = (C) * 1000 * 1000, }
sys/arch/arm/rockchip/rk_tsadc.c
363
#define ENTRY(d,C) { .data = (d), .temp = (C) * 1000 * 1000, }
sys/arch/arm/rockchip/rk_tsadc.c
821
int temp;
sys/arch/arm/rockchip/rk_tsadc.c
827
temp = rk_tsadc_data_to_temp(sc, data);
sys/arch/arm/rockchip/rk_tsadc.c
831
temp, data);
sys/arch/arm/rockchip/rk_tsadc.c
833
if (temp == sc->sc_data_mask) {
sys/arch/arm/rockchip/rk_tsadc.c
836
edata->value_cur = temp + TEMP_uC_TO_uK;
sys/arch/arm/rockchip/rk_tsadc.c
911
return rd->rd_array[i].temp;
sys/arch/arm/rockchip/rk_tsadc.c
922
temprange = rd->rd_array[first].temp -
sys/arch/arm/rockchip/rk_tsadc.c
923
rd->rd_array[secnd].temp;
sys/arch/arm/rockchip/rk_tsadc.c
929
return rd->rd_array[secnd].temp + offset;
sys/arch/arm/rockchip/rk_tsadc.c
936
rk_tsadc_temp_to_data(struct rk_tsadc_softc *sc, int temp)
sys/arch/arm/rockchip/rk_tsadc.c
942
if (rd->rd_array[i].temp >= temp) {
sys/arch/arm/rockchip/rk_tsadc.c
947
if (rd->rd_array[i].temp == temp)
sys/arch/arm/rockchip/rk_tsadc.c
961
temprange = rd->rd_array[first].temp -
sys/arch/arm/rockchip/rk_tsadc.c
962
rd->rd_array[secnd].temp;
sys/arch/arm/rockchip/rk_tsadc.c
963
tempdiff = temp - rd->rd_array[secnd].temp;
sys/arch/arm/sunxi/sunxi_thermal.c
405
sunxi_thermal_setshut(struct sunxi_thermal_softc *sc, int sensor, int temp)
sys/arch/arm/sunxi/sunxi_thermal.c
411
val |= (sc->conf->to_reg(sensor, temp) << SHUT_T_HOT_SHIFT);
sys/arch/arm/sunxi/sunxi_thermal.c
438
sunxi_thermal_setalarm(struct sunxi_thermal_softc *sc, int sensor, int temp)
sys/arch/arm/sunxi/sunxi_thermal.c
444
val |= (sc->conf->to_reg(sensor, temp) << ALARM_T_HOT_SHIFT);
sys/arch/arm/sunxi/sunxi_thermal.c
510
const int64_t temp = sunxi_thermal_gettemp(sc, edata->private);
sys/arch/arm/sunxi/sunxi_thermal.c
512
edata->value_cur = temp * 1000000 + TEMP_C_TO_K;
sys/arch/arm/xilinx/zynq_xadc.c
256
int64_t temp;
sys/arch/arm/xilinx/zynq_xadc.c
264
temp = ((int64_t)(val.u16 >> 4) * 503975) / 4096;
sys/arch/arm/xilinx/zynq_xadc.c
265
edata->value_cur = 1000 * temp;
sys/arch/atari/atari/autoconf.c
145
struct device temp;
sys/arch/atari/atari/autoconf.c
155
memset(&temp, 0, sizeof(temp));
sys/arch/atari/atari/autoconf.c
157
parent = &temp;
sys/arch/evbarm/iyonix/iyonix_pci.c
168
int temp;
sys/arch/evbarm/iyonix/iyonix_pci.c
169
temp = pci_conf_read(pc, tag, addr&~3);
sys/arch/evbarm/iyonix/iyonix_pci.c
170
temp = temp & ~(0xff << ((addr%4) * 8));
sys/arch/evbarm/iyonix/iyonix_pci.c
171
temp = temp | (value << ((addr%4) * 8));
sys/arch/evbarm/iyonix/iyonix_pci.c
172
pci_conf_write(pc, tag, addr&~3, temp);
sys/arch/evbarm/iyonix/iyonix_pci.c
178
int temp;
sys/arch/evbarm/iyonix/iyonix_pci.c
179
temp = pci_conf_read(pc, tag, addr&~3);
sys/arch/evbarm/iyonix/iyonix_pci.c
180
temp = temp >> ((addr%4) * 8);
sys/arch/evbarm/iyonix/iyonix_pci.c
181
temp = temp & 0xff;
sys/arch/evbarm/iyonix/iyonix_pci.c
182
return temp;
sys/arch/hp300/stand/common/devopen.c
192
int temp;
sys/arch/hp300/stand/common/devopen.c
203
if ((temp = atoi(s)) > 255)
sys/arch/hp300/stand/common/devopen.c
205
*adapt = temp / 8;
sys/arch/hp300/stand/common/devopen.c
206
*ctlr = temp % 8;
sys/arch/hppa/gsc/lpt_gsc.c
100
u_char temp;
sys/arch/hppa/gsc/lpt_gsc.c
107
temp = bus_space_read_1(iot, ioh, off) & mask;
sys/arch/hppa/gsc/lpt_gsc.c
108
} while (temp != data && --timeout);
sys/arch/hppa/gsc/lpt_gsc.c
110
(unsigned)(base + off), (unsigned)data, (unsigned)temp, timeout));
sys/arch/hppa/gsc/lpt_gsc.c
111
return (temp == data);
sys/arch/hppa/spmath/fcnvfx.c
108
|| (Sgl_isone_lowmantissa(temp))) {
sys/arch/hppa/spmath/fcnvfx.c
156
register unsigned int src, temp, resultp2;
sys/arch/hppa/spmath/fcnvfx.c
193
temp = src;
sys/arch/hppa/spmath/fcnvfx.c
194
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfx.c
195
Dint_from_sgl_mantissa(temp,src_exponent,resultp1,resultp2);
sys/arch/hppa/spmath/fcnvfx.c
59
register unsigned int src, temp;
sys/arch/hppa/spmath/fcnvfx.c
88
temp = src;
sys/arch/hppa/spmath/fcnvfx.c
89
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfx.c
90
Int_from_sgl_mantissa(temp,src_exponent);
sys/arch/hppa/spmath/fcnvfx.c
91
if (Sgl_isone_sign(src)) result = -Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfx.c
92
else result = Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfxt.c
123
register unsigned int src, temp, resultp2;
sys/arch/hppa/spmath/fcnvfxt.c
159
temp = src;
sys/arch/hppa/spmath/fcnvfxt.c
160
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfxt.c
161
Dint_from_sgl_mantissa(temp,src_exponent,resultp1,resultp2);
sys/arch/hppa/spmath/fcnvfxt.c
61
register unsigned int src, temp;
sys/arch/hppa/spmath/fcnvfxt.c
89
temp = src;
sys/arch/hppa/spmath/fcnvfxt.c
90
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfxt.c
91
Int_from_sgl_mantissa(temp,src_exponent);
sys/arch/hppa/spmath/fcnvfxt.c
92
if (Sgl_isone_sign(src)) result = -Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfxt.c
93
else result = Sgl_all(temp);
sys/arch/hppa/spmath/mpyaccs.c
52
struct mdsfu_register temp;
sys/arch/hppa/spmath/mpyaccs.c
55
impys(&opnd1,&opnd2,&temp);
sys/arch/hppa/spmath/mpyaccs.c
58
if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
sys/arch/hppa/spmath/mpyaccs.c
63
sign = result_hi ^ temp.rslt_hi;
sys/arch/hppa/spmath/mpyaccs.c
64
result_hi += temp.rslt_hi + carry;
sys/arch/hppa/spmath/mpyaccs.c
65
if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0) overflow = true;
sys/arch/hppa/spmath/mpyaccu.c
53
struct mdsfu_register temp;
sys/arch/hppa/spmath/mpyaccu.c
56
impyu(&opnd1,&opnd2,&temp);
sys/arch/hppa/spmath/mpyaccu.c
59
if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
sys/arch/hppa/spmath/mpyaccu.c
64
if ((result_hi += (unsigned)temp.rslt_hi + carry) <
sys/arch/hppa/spmath/mpyaccu.c
65
(unsigned)temp.rslt_hi) overflow = true;
sys/arch/ia64/stand/common/dev_net.c
199
char temp[FNAME_SIZE];
sys/arch/ia64/stand/common/dev_net.c
275
memcpy(&temp[0], &rootpath[i], strlen(&rootpath[i])+1);
sys/arch/ia64/stand/common/dev_net.c
276
memcpy(&rootpath[0], &temp[0], strlen(&rootpath[i])+1);
sys/arch/ia64/stand/common/dev_net.c
289
memset(temp, '\0', sizeof(temp));
sys/arch/ia64/stand/common/dev_net.c
293
strncat(temp, "0", 1);
sys/arch/ia64/stand/common/dev_net.c
296
strncat(temp, num, 2);
sys/arch/ia64/stand/common/dev_net.c
299
strncat(temp, ":", 1);
sys/arch/ia64/stand/common/dev_net.c
305
setenv("boot.netif.hwaddr", temp, 1);
sys/arch/iyonix/iyonix/iyonix_pci.c
169
int temp;
sys/arch/iyonix/iyonix/iyonix_pci.c
170
temp = pci_conf_read(pc, tag, addr&~3);
sys/arch/iyonix/iyonix/iyonix_pci.c
171
temp = temp & ~(0xff << ((addr%4) * 8));
sys/arch/iyonix/iyonix/iyonix_pci.c
172
temp = temp | (value << ((addr%4) * 8));
sys/arch/iyonix/iyonix/iyonix_pci.c
173
pci_conf_write(pc, tag, addr&~3, temp);
sys/arch/iyonix/iyonix/iyonix_pci.c
179
int temp;
sys/arch/iyonix/iyonix/iyonix_pci.c
180
temp = pci_conf_read(pc, tag, addr&~3);
sys/arch/iyonix/iyonix/iyonix_pci.c
181
temp = temp >> ((addr%4) * 8);
sys/arch/iyonix/iyonix/iyonix_pci.c
182
temp = temp & 0xff;
sys/arch/iyonix/iyonix/iyonix_pci.c
183
return temp;
sys/arch/luna68k/stand/boot/sc.c
654
uint8_t ints, temp;
sys/arch/luna68k/stand/boot/sc.c
681
temp = hd->scsi_temp & ~(1 << SCSI_ID);
sys/arch/luna68k/stand/boot/sc.c
682
for (i = 0; temp != 1; i++) {
sys/arch/luna68k/stand/boot/sc.c
683
temp >>= 1;
sys/arch/m68k/fpsp/fpsp.h
137
VER_TMP equ LV+123 ;temp holding for version number
sys/arch/m68k/fpsp/fpsp.h
156
WBTEMP equ LV-76 ;write back temp (12 bytes)
sys/arch/m68k/fpsp/l_fpsp.h
149
VER_TMP equ LV+123 ;temp holding for version number
sys/arch/mac68k/nubus/if_netdock_nubus.c
380
u_short temp;
sys/arch/mac68k/nubus/if_netdock_nubus.c
410
temp = ifp->if_flags & IFF_UP;
sys/arch/mac68k/nubus/if_netdock_nubus.c
412
ifp->if_flags |= temp;
sys/arch/mac68k/nubus/if_netdock_nubus.c
421
temp = ifp->if_flags & IFF_UP;
sys/arch/mac68k/nubus/if_netdock_nubus.c
423
ifp->if_flags |= temp;
sys/arch/macppc/dev/fancontrol.c
52
int temp, i, speed, diff, step;
sys/arch/macppc/dev/fancontrol.c
57
temp = sysmon_envsys_get_max_value(z->filter, true);
sys/arch/macppc/dev/fancontrol.c
58
if (temp == 0) {
sys/arch/macppc/dev/fancontrol.c
68
temp = (temp - 273150000) / 1000000;
sys/arch/macppc/dev/fancontrol.c
69
diff = temp - z->Tmin;
sys/arch/macppc/dev/fancontrol.c
70
DPRINTF("%s %d %d\n", z->name, temp, z->Tmin);
sys/arch/macppc/macppc/machdep.c
347
uint32_t temp;
sys/arch/macppc/macppc/machdep.c
372
OF_interpret("screen-width", 0, 1, &temp);
sys/arch/macppc/macppc/machdep.c
373
prop_dictionary_set_uint32(dict, "width", temp);
sys/arch/macppc/macppc/machdep.c
377
OF_interpret("screen-height", 0, 1, &temp);
sys/arch/macppc/macppc/machdep.c
378
prop_dictionary_set_uint32(dict, "height", temp);
sys/arch/macppc/macppc/machdep.c
410
temp = 0;
sys/arch/macppc/macppc/machdep.c
411
if (OF_getprop(node, "ATY,RefCLK", &temp, sizeof(temp)) != 4) {
sys/arch/macppc/macppc/machdep.c
413
OF_getprop(OF_parent(node), "ATY,RefCLK", &temp,
sys/arch/macppc/macppc/machdep.c
414
sizeof(temp));
sys/arch/macppc/macppc/machdep.c
416
if (temp != 0)
sys/arch/macppc/macppc/machdep.c
417
prop_dictionary_set_uint32(dict, "refclk", temp / 10);
sys/arch/macppc/macppc/machdep.c
434
if (OF_getprop(node, "backlight-control", &temp, sizeof(temp)) == 4) {
sys/arch/macppc/macppc/machdep.c
436
} else if (OF_getprop(OF_parent(node), "backlight-control", &temp,
sys/arch/macppc/macppc/machdep.c
437
sizeof(temp)) == 4) {
sys/arch/newsmips/apbus/if_sn.c
226
u_short temp;
sys/arch/newsmips/apbus/if_sn.c
268
temp = ifp->if_flags & IFF_UP;
sys/arch/newsmips/apbus/if_sn.c
270
ifp->if_flags |= temp;
sys/arch/newsmips/apbus/if_sn.c
283
temp = ifp->if_flags & IFF_UP;
sys/arch/newsmips/apbus/if_sn.c
285
ifp->if_flags |= temp;
sys/arch/newsmips/apbus/if_sn.c
477
u_short temp;
sys/arch/newsmips/apbus/if_sn.c
488
temp = ifp->if_flags & IFF_UP;
sys/arch/newsmips/apbus/if_sn.c
490
ifp->if_flags |= temp;
sys/arch/ofppc/ofppc/machdep.c
463
uint32_t temp;
sys/arch/ofppc/ofppc/machdep.c
475
OF_interpret("screen-width", 0, 1, &temp);
sys/arch/ofppc/ofppc/machdep.c
476
prop_dictionary_set_uint32(dict, "width", temp);
sys/arch/ofppc/ofppc/machdep.c
480
OF_interpret("screen-height", 0, 1, &temp);
sys/arch/ofppc/ofppc/machdep.c
481
prop_dictionary_set_uint32(dict, "height", temp);
sys/arch/powerpc/powerpc/trap.c
1031
register_t temp = bswap32(*t_reg_addr);
sys/arch/powerpc/powerpc/trap.c
1032
*t_reg_addr = temp;
sys/arch/powerpc/powerpc/trap.c
1053
register_t temp = bswap32(*s_reg_addr);
sys/arch/powerpc/powerpc/trap.c
1055
if (copyout(&temp,
sys/arch/powerpc/powerpc/trap.c
942
uint32_t temp = *t_reg_addr;
sys/arch/powerpc/powerpc/trap.c
944
*t_reg_addr = ((temp & 0x000000ff) << 8 ) |
sys/arch/powerpc/powerpc/trap.c
945
((temp & 0x0000ff00) >> 8 );
sys/arch/riscv/starfive/jh71x0_temp.c
72
uint32_t temp = RD4(sc, JH71X0_TEMP);
sys/arch/riscv/starfive/jh71x0_temp.c
73
uint32_t dout = __SHIFTOUT(temp, JH71X0_TEMP_DOUT_MASK);
sys/arch/sgimips/dev/scn.c
515
u_char temp;
sys/arch/sgimips/dev/scn.c
517
temp = dp->base[DU_CSTRT];
sys/arch/sgimips/dev/scn.c
518
__USE(temp);
sys/arch/sparc64/dev/pcf8591_envctrl.c
354
int32_t temp;
sys/arch/sparc64/dev/pcf8591_envctrl.c
356
temp = 273150000 + 1000000 *
sys/arch/sparc64/dev/pcf8591_envctrl.c
358
temp &= ~0xff;
sys/arch/sparc64/dev/pcf8591_envctrl.c
359
temp += data[1 + chp->chan_num];
sys/arch/sparc64/dev/pcf8591_envctrl.c
360
chp->chan_sensor.value_cur = temp;
sys/arch/sparc64/dev/pcf8591_envctrl.c
364
chp->chan_sensor.desc, temp,
sys/arch/sparc64/dev/pcf8591_envctrl.c
469
u_int8_t temp, speed;
sys/arch/sparc64/dev/pcf8591_envctrl.c
492
temp = sysmon_envsys_get_max_value(is_cpu_temp, true)
sys/arch/sparc64/dev/pcf8591_envctrl.c
494
if (!temp) {
sys/arch/sparc64/dev/pcf8591_envctrl.c
500
if (temp > XLATE_MAX)
sys/arch/sparc64/dev/pcf8591_envctrl.c
501
temp = XLATE_MAX;
sys/arch/sparc64/dev/pcf8591_envctrl.c
502
speed = chp->chan_xlate[temp];
sys/arch/sparc64/sparc64/autoconf.c
1527
uint32_t temp, fboffset;
sys/arch/sparc64/sparc64/autoconf.c
1575
temp = 0;
sys/arch/sparc64/sparc64/autoconf.c
1576
if (OF_getprop(node, "ATY,RefCLK", &temp, sizeof(temp)) != 4) {
sys/arch/sparc64/sparc64/autoconf.c
1578
OF_getprop(OF_parent(node), "ATY,RefCLK", &temp,
sys/arch/sparc64/sparc64/autoconf.c
1579
sizeof(temp));
sys/arch/sparc64/sparc64/autoconf.c
1581
if (temp != 0)
sys/arch/sparc64/sparc64/autoconf.c
1582
prop_dictionary_set_uint32(dict, "refclk", temp / 10);
sys/arch/vax/vsa/lcg.c
1000
u_int ch, temp;
sys/arch/vax/vsa/lcg.c
1130
temp = QFONT(ch, line);
sys/arch/vax/vsa/lcg.c
1132
fontaddr[(ch * lcg_font.fontheight) + line] = temp;
sys/arch/vax/vsa/lcg.c
1135
fontaddr[(ch * lcg_font.stride * lcg_font.fontheight) + line] = temp & 0xff;
sys/arch/vax/vsa/lcg.c
1136
fontaddr[(ch * lcg_font.stride * lcg_font.fontheight) + line + 1] = (temp >> 16) & 0xff;
sys/arch/vax/vsa/spx.c
460
long temp = 0;
sys/arch/vax/vsa/spx.c
468
temp = ((SPX_REG1(0x10) & 0xc0) << (30 - 6)) | \
sys/arch/vax/vsa/spx.c
471
SPX_REG(SPX_DSTPIX) = temp + LINEAR(dxpos, dypos);
sys/arch/vax/vsa/spx.c
472
SPX_REG(SPX_SRCPIX) = temp + LINEAR(sxpos, sypos);
sys/arch/vax/vsa/spx.c
493
long temp = 0;
sys/arch/vax/vsa/spx.c
501
temp = 0x3f << 24;
sys/arch/vax/vsa/spx.c
503
SPXg_REG(SPX_DSTPIX) = temp + LINEAR(dxpos, dypos); spxg_delay();
sys/arch/vax/vsa/spx.c
505
SPXg_REG(SPX_SRCPIX) = temp + LINEAR(sxpos, sypos); spxg_delay();
sys/arch/vax/vsa/spx.c
546
long temp = 0;
sys/arch/vax/vsa/spx.c
556
temp = ((SPX_REG1(0x10) & 0xc0) << (30 - 6)) |
sys/arch/vax/vsa/spx.c
558
SPX_REG(SPX_DSTPIX) = temp + LINEAR(xpos, ypos);
sys/arch/vax/vsa/spx.c
573
long temp = 0;
sys/arch/vax/vsa/spx.c
582
temp = 0x3f << 24;
sys/arch/vax/vsa/spx.c
583
SPXg_REG(SPX_DSTPIX) = temp + LINEAR(xpos, ypos); spxg_delay();
sys/arch/vax/vsa/spx.c
746
long temp = 0;
sys/arch/vax/vsa/spx.c
757
temp = ((SPX_REG1(0x10) & 0xc0) << (30 - 6)) | \
sys/arch/vax/vsa/spx.c
760
SPX_REG(SPX_DSTPIX) = temp + LINEAR(col * spx_font.fontwidth,
sys/arch/vax/vsa/spx.c
762
SPX_REG(SPX_SRCPIX) = temp + FONT_STORAGE_START
sys/arch/vax/vsa/spx.c
782
long temp = 0;
sys/arch/vax/vsa/spx.c
801
temp = 0x3f << 24;
sys/arch/vax/vsa/spx.c
803
SPXg_REG(SPX_DSTPIX) = temp + LINEAR(col * spx_font.fontwidth,
sys/arch/vax/vsa/spx.c
808
SPXg_REG(SPX_SRCPIX) = temp + FONT_STORAGE_START +
sys/arch/x68k/x68k/iodevice.h
247
char pad16; unsigned char temp;
sys/arch/x86/pci/amdzentemp.c
294
uint32_t val, temp;
sys/arch/x86/pci/amdzentemp.c
304
temp = __SHIFTOUT(val, F10_TEMP_CURTMP);
sys/arch/x86/pci/amdzentemp.c
307
edata->value_cur = (temp * 125000) + 273150000;
sys/arch/x86/pci/amdzentemp.c
327
uint32_t temp;
sys/arch/x86/pci/amdzentemp.c
334
error = amdsmn_read(sc->sc_smn, AMD_17H_CUR_TMP, &temp);
sys/arch/x86/pci/amdzentemp.c
339
minus49 = (temp & AMD_17H_CUR_TMP_RANGE_SEL) ?
sys/arch/x86/pci/amdzentemp.c
341
temp = __SHIFTOUT(temp, F10_TEMP_CURTMP);
sys/arch/x86/pci/amdzentemp.c
347
AMD_17H_CUR_TMP + sc->sc_ccd_offset + (i * sizeof(temp)),
sys/arch/x86/pci/amdzentemp.c
348
&temp);
sys/arch/x86/pci/amdzentemp.c
349
if (error || !ISSET(temp, AMD_17H_CCD_TMP_VALID)) {
sys/arch/x86/pci/amdzentemp.c
354
temp &= F10_TEMP_CURTMP_MASK;
sys/arch/x86/pci/amdzentemp.c
362
edata->value_cur = (temp * 125000) + 273150000;
sys/arch/x86/pci/amdzentemp.c
491
uint32_t temp;
sys/arch/x86/pci/amdzentemp.c
496
AMD_17H_CUR_TMP + sc->sc_ccd_offset + (i * sizeof(temp)),
sys/arch/x86/pci/amdzentemp.c
497
&temp);
sys/arch/x86/pci/amdzentemp.c
498
if (error || !ISSET(temp, AMD_17H_CCD_TMP_VALID))
sys/arch/x86/pci/pchtemp.c
101
uint16_t temp = bus_space_read_2(sc->sc_iot, sc->sc_ioh, PCHTEMP_TEMP);
sys/arch/x86/pci/pchtemp.c
102
uint16_t tsr = temp & PCHTEMP_TEMP_TSR_MASK;
sys/coda/coda_namecache.c
628
int i, xmax = 0, sum = 0, temp, zeros = 0, ave, n;
sys/coda/coda_namecache.c
657
temp = coda_nc_hash[i].length - ave;
sys/coda/coda_namecache.c
658
sum += temp * temp;
sys/compat/linux/arch/alpha/linux_osf1.c
771
u_int64_t temp;
sys/compat/linux/arch/alpha/linux_osf1.c
779
if ((error = copyin(SCARG(uap, buffer), &temp, sizeof(temp))))
sys/compat/linux/arch/alpha/linux_osf1.c
781
if (temp >> 63 != 0)
sys/compat/linux/arch/alpha/linux_osf1.c
782
temp |= IEEE_INHERIT;
sys/compat/linux/arch/alpha/linux_osf1.c
783
alpha_write_fp_c(l, temp);
sys/dev/acpi/thinkpad_acpi.c
821
int temp;
sys/dev/acpi/thinkpad_acpi.c
829
temp = (int)val;
sys/dev/acpi/thinkpad_acpi.c
830
if (temp > 127 || temp < -127) {
sys/dev/acpi/thinkpad_acpi.c
835
edata->value_cur = temp * 1000000 + 273150000;
sys/dev/i2c/adadc.c
273
int temp;
sys/dev/i2c/adadc.c
274
temp = (rdata * sc->sc_diode_slope +
sys/dev/i2c/adadc.c
277
edata->value_cur = (temp >> 12) * 62500 + 273150000;
sys/dev/i2c/adadc.c
283
int temp = rdata * slope[edata->private];
sys/dev/i2c/adadc.c
284
edata->value_cur = (temp >> 12) * 62500;
sys/dev/i2c/adm1026.c
130
#define TEMP_TO_VAL(temp) ((temp < 273150000 ? \
sys/dev/i2c/adm1026.c
131
((temp - 145150000) / 1000000) ^ 0x80 : \
sys/dev/i2c/adm1026.c
132
(temp - 273150000) / 1000000) & 0xff)
sys/dev/i2c/adm1026.c
661
int temp = sc->sc_map[edata->sensor];
sys/dev/i2c/adm1026.c
664
reg = adm1026_temps_table[temp].v_reg;
sys/dev/i2c/adm1026.c
729
int temp = sc->sc_map[edata->sensor];
sys/dev/i2c/adm1026.c
734
reg = adm1026_temps_table[temp].t_reg;
sys/dev/i2c/adm1026.c
740
reg = adm1026_temps_table[temp].h_reg;
sys/dev/i2c/adm1026.c
746
reg = adm1026_temps_table[temp].l_reg;
sys/dev/i2c/adm1026.c
818
int temp, snum;
sys/dev/i2c/adm1026.c
821
temp = sc->sc_map[edata->sensor];
sys/dev/i2c/adm1026.c
822
snum = ADM1026_TEMP_NUM(temp);
sys/dev/i2c/adm1026.c
830
reg = adm1026_temps_table[temp].h_reg;
sys/dev/i2c/adm1026.c
840
reg = adm1026_temps_table[temp].t_reg;
sys/dev/i2c/adm1026.c
850
reg = adm1026_temps_table[temp].l_reg;
sys/dev/i2c/adt7462.c
1041
int temp = sc->sc_env_map[edata->sensor];
sys/dev/i2c/adt7462.c
1045
reg = ADT7462_TEMP_LSB(temp);
sys/dev/i2c/adt7462.c
1148
int temp, snum;
sys/dev/i2c/adt7462.c
1151
temp = sc->sc_env_map[edata->sensor];
sys/dev/i2c/adt7462.c
1152
snum = ADT7462_TEMP_NUM(temp);
sys/dev/i2c/adt7462.c
1157
reg = ADT7462_TEMP_THERM1(temp);
sys/dev/i2c/adt7462.c
1159
reg = ADT7462_TEMP_THERM2(temp);
sys/dev/i2c/adt7462.c
1165
reg = ADT7462_TEMP_HIGH(temp);
sys/dev/i2c/adt7462.c
1171
reg = ADT7462_TEMP_LOW(temp);
sys/dev/i2c/adt7462.c
1242
int temp, snum;
sys/dev/i2c/adt7462.c
1245
temp = sc->sc_env_map[edata->sensor];
sys/dev/i2c/adt7462.c
1246
snum = ADT7462_TEMP_NUM(temp);
sys/dev/i2c/adt7462.c
1259
reg = ADT7462_TEMP_THERM1(temp);
sys/dev/i2c/adt7462.c
126
#define TEMP_TO_MSB(temp) \
sys/dev/i2c/adt7462.c
1264
reg = ADT7462_TEMP_THERM2(temp);
sys/dev/i2c/adt7462.c
127
(((temp - ADT7462_TEMP_BASE) / 1000000) & 0xff)
sys/dev/i2c/adt7462.c
1278
reg = ADT7462_TEMP_HIGH(temp);
sys/dev/i2c/adt7462.c
1288
reg = ADT7462_TEMP_LOW(temp);
sys/dev/i2c/adt7462.c
1410
int temp, sysval, err;
sys/dev/i2c/adt7462.c
1413
temp = node.sysctl_num & 0xff;
sys/dev/i2c/adt7462.c
1414
reg = ADT7462_TMIN(temp);
sys/dev/i2c/adt7462.c
1432
if (sc->sc_crit_therm[temp] == 1) {
sys/dev/i2c/adt7462.c
1433
if (val > sc->sc_therm1[temp] - 1)
sys/dev/i2c/adt7462.c
1436
if (val > sc->sc_therm2[temp] - 1)
sys/dev/i2c/adt7462.c
1453
int temp, sysval, err;
sys/dev/i2c/adt7462.c
1456
temp = node.sysctl_num & 0xff;
sys/dev/i2c/adt7462.c
1457
reg = ADT7462_OP_POINT(temp);
sys/dev/i2c/adt7462.c
1475
if (sc->sc_crit_therm[temp] == 1) {
sys/dev/i2c/adt7462.c
1476
if (val > sc->sc_therm1[temp] - 1)
sys/dev/i2c/adt7462.c
1479
if (val > sc->sc_therm2[temp] - 1)
sys/dev/i2c/adt7462.c
1483
mreg = ADT7462_TMIN(temp);
sys/dev/i2c/dbcool.c
1000
temp += 250000 * (int)ext;
sys/dev/i2c/dbcool.c
1001
temp += 273150000U;
sys/dev/i2c/dbcool.c
1003
return temp;
sys/dev/i2c/dbcool.c
931
int temp;
sys/dev/i2c/dbcool.c
993
temp = val;
sys/dev/i2c/dbcool.c
994
temp -= sc->sc_temp_offset;
sys/dev/i2c/dbcool.c
996
temp = (int8_t)val;
sys/dev/i2c/dbcool.c
999
temp *= 1000000;
sys/dev/i2c/ds1307.c
797
dsrtc_read_temp(struct dsrtc_softc *sc, uint32_t *temp)
sys/dev/i2c/ds1307.c
829
*temp = tc + 273150000;
sys/dev/i2c/ds1307.c
837
uint32_t temp = 0; /* XXX gcc */
sys/dev/i2c/ds1307.c
839
if (dsrtc_read_temp(sc, &temp) == 0) {
sys/dev/i2c/ds1307.c
844
edata->value_cur = temp;
sys/dev/i2c/hytp14.c
441
uint16_t temp;
sys/dev/i2c/hytp14.c
447
temp = HYTP14_TEMP_RAWVAL((sc->sc_data[2] << 8) | sc->sc_data[3]);
sys/dev/i2c/hytp14.c
450
edata->value_cur *= (int32_t)temp;
sys/dev/i2c/lm75.c
506
int temp;
sys/dev/i2c/lm75.c
513
temp = (int8_t) buf[0];
sys/dev/i2c/lm75.c
514
temp = (temp << 1) + ((buf[1] >> 7) & 0x1);
sys/dev/i2c/lm75.c
518
val = temp / 2;
sys/dev/i2c/lm75.c
520
val = temp * 500000 + 273150000;
sys/dev/i2c/lm75.c
528
int temp;
sys/dev/i2c/lm75.c
534
temp = (int8_t)buf[0];
sys/dev/i2c/lm75.c
535
temp = (temp << 4) | ((buf[1] >> 4) & 0xf);
sys/dev/i2c/lm75.c
541
return temp / 16;
sys/dev/i2c/lm75.c
543
return (temp * 62500 + 273150000);
sys/dev/i2c/lm75.c
549
int temp;
sys/dev/i2c/lm75.c
557
temp = (int8_t)buf[0];
sys/dev/i2c/lm75.c
558
temp = (temp << 5) | ((buf[1] >> 3) & 0x1f);
sys/dev/i2c/lm75.c
562
val = temp / 2;
sys/dev/i2c/lm75.c
564
val = temp * 500000 + 273150000;
sys/dev/i2c/lm75.c
571
int temp;
sys/dev/i2c/lm75.c
575
temp = val * 2;
sys/dev/i2c/lm75.c
577
temp = (val - 273150000) / 500000;
sys/dev/i2c/lm75.c
578
buf[0] = (temp >> 1) & 0xff;
sys/dev/i2c/lm75.c
579
buf[1] = (temp & 1) << 7;
sys/dev/i2c/lm75.c
584
int temp;
sys/dev/i2c/lm75.c
588
temp = val * 16;
sys/dev/i2c/lm75.c
590
temp = (val - 273150000) / 62500;
sys/dev/i2c/lm75.c
591
buf[0] = (temp >> 4) & 0xff;
sys/dev/i2c/lm75.c
592
buf[1] = (temp & 0xf) << 4;
sys/dev/i2c/lm75.c
597
int temp;
sys/dev/i2c/lm75.c
601
temp = val * 2;
sys/dev/i2c/lm75.c
603
temp = (val - 273150000) / 500000;
sys/dev/i2c/lm75.c
604
buf[0] = (temp >> 5) & 0xff;
sys/dev/i2c/lm75.c
605
buf[1] = (temp & 0x1f) << 3;
sys/dev/i2c/lm75.c
631
int temp, error;
sys/dev/i2c/lm75.c
639
temp = *(int *)node.sysctl_data;
sys/dev/i2c/lm75.c
640
sc->sc_tmax = temp;
sys/dev/i2c/nxp75a.c
294
uint32_t temp;
sys/dev/i2c/nxp75a.c
297
temp = (int) (val - 273150000) / 125000 ;
sys/dev/i2c/nxp75a.c
298
buf[0] = (temp >> 3) & 0xff;
sys/dev/i2c/nxp75a.c
299
buf[1] = (temp << 5) & 0xe0;
sys/dev/i2c/nxt2k.c
500
uint16_t temp;
sys/dev/i2c/nxt2k.c
508
temp = (b[0] << 8) | b[1];
sys/dev/i2c/nxt2k.c
510
printf("a6: %04hx\n", temp);
sys/dev/i2c/nxt2k.c
512
return 0x7fff - temp * 16;
sys/dev/i2c/nxt2k.c
519
uint16_t temp, temp2;
sys/dev/i2c/nxt2k.c
527
temp = (b[0] << 8) | b[1];
sys/dev/i2c/nxt2k.c
529
temp2 = 0x7fff - temp;
sys/dev/i2c/sdtemp.c
541
uint16_t temp;
sys/dev/i2c/sdtemp.c
543
temp = htobe16(val);
sys/dev/i2c/sdtemp.c
545
sc->sc_address, &reg, 1, &temp, sizeof(temp), 0);
sys/dev/i2c/sdtemp.c
549
sdtemp_decode_temp(struct sdtemp_softc *sc, uint16_t temp)
sys/dev/i2c/sdtemp.c
555
temp &= SDTEMP_TEMP_MASK;
sys/dev/i2c/sdtemp.c
559
(temp & SDTEMP_TEMP_NEGATIVE))
sys/dev/i2c/sdtemp.c
560
temp |= SDTEMP_TEMP_SIGN_EXT;
sys/dev/i2c/sdtemp.c
563
temp &= ~(0x7 >> sc->sc_resolution);
sys/dev/i2c/sdtemp.c
566
stemp = (int16_t)temp;
sys/dev/i2c/titemp.c
154
uint8_t reg_hi, reg_lo, temp[2];
sys/dev/i2c/titemp.c
169
if ((error = titemp_read(sc, reg_hi, &temp[0])) != 0)
sys/dev/i2c/titemp.c
171
if ((error = titemp_read(sc, reg_lo, &temp[1])) != 0)
sys/dev/i2c/titemp.c
180
((uint64_t)temp[0] * 1000000) +
sys/dev/i2c/titemp.c
181
((uint64_t)(temp[1]>>4) * 62500) +
sys/dev/i2c/tsllux.c
1026
temp = ((channel0 * table[idx].b) - (channel1 * table[idx].m));
sys/dev/i2c/tsllux.c
1029
if (temp < 0)
sys/dev/i2c/tsllux.c
1030
temp = 0;
sys/dev/i2c/tsllux.c
1033
temp += (1 << (TSL2561_LUX_LUXSCALE-1));
sys/dev/i2c/tsllux.c
1036
lux = temp >> TSL2561_LUX_LUXSCALE;
sys/dev/i2c/tsllux.c
938
int32_t temp;
sys/dev/ic/apple_smc_temp.c
178
int32_t temp;
sys/dev/ic/apple_smc_temp.c
201
temp = (int16_t)utemp16;
sys/dev/ic/apple_smc_temp.c
204
temp *= 250;
sys/dev/ic/apple_smc_temp.c
205
temp >>= 6;
sys/dev/ic/apple_smc_temp.c
208
temp += 273150;
sys/dev/ic/apple_smc_temp.c
211
temp *= 1000;
sys/dev/ic/apple_smc_temp.c
214
edata->value_cur = temp;
sys/dev/ic/arn9003.c
2639
int32_t scale, atemp, avolt, tempcal, voltcal, temp, volt;
sys/dev/ic/arn9003.c
2656
temp = MS(reg, AR_PHY_BB_THERM_ADC_4_LATEST_THERM);
sys/dev/ic/arn9003.c
2663
tempcorr = (atemp * (temp - tempcal) + 128) / 256;
sys/dev/ic/arn9380.c
832
int chain, int *corr, int *temp)
sys/dev/ic/arn9380.c
857
*temp = athn_interpolate(fbin,
sys/dev/ic/arn9380.c
869
int i, corr, temp, temp0;
sys/dev/ic/arn9380.c
878
ar9380_get_correction(sc, c, i, &corr, &temp);
sys/dev/ic/arn9380.c
880
temp0 = temp;
sys/dev/ic/bmx280.c
759
int32_t *temp,
sys/dev/ic/bmx280.c
816
*temp = x_temp;
sys/dev/ic/gem.c
1904
uint32_t optsum, temp;
sys/dev/ic/gem.c
1907
temp = hlen - sizeof(struct ip);
sys/dev/ic/gem.c
1911
while (temp > 1) {
sys/dev/ic/gem.c
1913
temp -= 2;
sys/dev/ic/smc93cx6.c
113
u_int32_t temp;
sys/dev/ic/smc93cx6.c
121
temp = sd->sd_MS ^ sd->sd_CS;
sys/dev/ic/smc93cx6.c
122
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
131
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
132
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
134
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
137
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
142
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
143
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
145
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
148
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
159
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
164
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
171
temp = sd->sd_MS;
sys/dev/ic/smc93cx6.c
172
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
174
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
176
SEEPROM_OUTB(sd, temp);
sys/dev/ieee1394/sbp.c
2580
STAILQ_HEAD(, sbp_ocb) temp;
sys/dev/ieee1394/sbp.c
2583
STAILQ_INIT(&temp);
sys/dev/ieee1394/sbp.c
2584
STAILQ_CONCAT(&temp, &sdev->ocbs);
sys/dev/ieee1394/sbp.c
2588
for (ocb = STAILQ_FIRST(&temp); ocb != NULL; ocb = next) {
sys/dev/isa/aps.c
469
int64_t temp;
sys/dev/isa/aps.c
483
temp = sc->aps_data.temp1 * 1000000;
sys/dev/isa/aps.c
485
temp += 273150000;
sys/dev/isa/aps.c
486
sc->sc_sensor[APS_SENSOR_TEMP1].value_cur = temp;
sys/dev/isa/aps.c
494
temp = sc->aps_data.temp2 * 1000000;
sys/dev/isa/aps.c
496
temp += 273150000;
sys/dev/isa/aps.c
497
sc->sc_sensor[APS_SENSOR_TEMP2].value_cur = temp;
sys/dev/isa/gus.c
2474
u_long temp, f;
sys/dev/isa/gus.c
2486
temp = (u_long) gus_max_frequency[sc->sc_voices-GUS_MIN_VOICES];
sys/dev/isa/gus.c
2488
fc = (unsigned int)(((f << 9L) + (temp >> 1L)) / temp);
sys/dev/isa/if_iy.c
1305
uint8_t temp;
sys/dev/isa/if_iy.c
1330
temp = bus_space_read_1(iot, ioh, MEDIA_SELECT);
sys/dev/isa/if_iy.c
1331
bus_space_write_1(iot, ioh, MEDIA_SELECT, temp);
sys/dev/isa/if_iy.c
1365
temp = bus_space_read_1(iot, ioh, 0);
sys/dev/isa/if_iy.c
1368
if (temp & 0x20) {
sys/dev/isa/if_iy.c
1371
} else if (((temp & 0x0f) == 0x03) &&
sys/dev/isa/if_iy.c
1392
uint16_t temp;
sys/dev/isa/if_iy.c
1435
temp = MATCH_ALL;
sys/dev/isa/if_iy.c
1437
temp = MATCH_BRDCST;
sys/dev/isa/if_iy.c
1439
bus_space_write_1(iot, ioh, RECV_MODES_REG, temp);
sys/dev/isa/if_iy.c
1441
temp = bus_space_read_1(iot, ioh, MEDIA_SELECT);
sys/dev/isa/if_iy.c
1442
bus_space_write_1(iot, ioh, MEDIA_SELECT, temp);
sys/dev/isa/if_iy.c
282
unsigned temp;
sys/dev/isa/if_iy.c
366
temp = bus_space_read_1(iot, ioh, INT_NO_REG);
sys/dev/isa/if_iy.c
367
bus_space_write_1(iot, ioh, INT_NO_REG, (temp & 0xf8) | sc->mappedirq);
sys/dev/isa/if_iy.c
439
unsigned temp;
sys/dev/isa/if_iy.c
454
temp = bus_space_read_1(iot, ioh, EEPROM_REG);
sys/dev/isa/if_iy.c
455
if (temp & 0x10)
sys/dev/isa/if_iy.c
456
bus_space_write_1(iot, ioh, EEPROM_REG, temp & ~0x10);
sys/dev/isa/if_iy.c
462
temp = bus_space_read_1(iot, ioh, REG1);
sys/dev/isa/if_iy.c
464
temp | /* XMT_CHAIN_INT | XMT_CHAIN_ERRSTOP | */ RCV_DISCARD_BAD);
sys/dev/isa/if_iy.c
467
temp = MATCH_ALL;
sys/dev/isa/if_iy.c
469
temp = MATCH_BRDCST;
sys/dev/isa/if_iy.c
471
bus_space_write_1(iot, ioh, RECV_MODES_REG, temp);
sys/dev/isa/if_iy.c
479
temp);
sys/dev/isa/if_iy.c
486
temp = bus_space_read_1(iot, ioh, MEDIA_SELECT);
sys/dev/isa/if_iy.c
487
bus_space_write_1(iot, ioh, MEDIA_SELECT, temp);
sys/dev/isa/if_iy.c
493
temp = bus_space_read_1(iot, ioh, MEDIA_SELECT);
sys/dev/isa/if_iy.c
500
temp);
sys/dev/isa/if_iy.c
505
temp = (temp & TEST_MODE_MASK);
sys/dev/isa/if_iy.c
509
temp &= ~ (BNC_BIT | TPE_BIT);
sys/dev/isa/if_iy.c
513
temp = (temp & ~TPE_BIT) | BNC_BIT;
sys/dev/isa/if_iy.c
517
temp = (temp & ~BNC_BIT) | TPE_BIT;
sys/dev/isa/if_iy.c
523
switch (temp & (BNC_BIT | TPE_BIT)) {
sys/dev/isa/if_iy.c
534
bus_space_write_1(iot, ioh, MEDIA_SELECT, temp);
sys/dev/isa/if_iy.c
541
temp);
sys/dev/isa/if_iy.c
550
temp = bus_space_read_1(iot, ioh, INT_NO_REG);
sys/dev/isa/if_iy.c
551
bus_space_write_1(iot, ioh, INT_NO_REG, (temp & 0xf8) | sc->mappedirq);
sys/dev/isa/if_iy.c
558
"\020\4bad_irq\010flash/boot present", temp);
sys/dev/isa/if_iy.c
562
temp = bus_space_read_1(iot, ioh, INT_NO_REG);
sys/dev/isa/if_iy.c
564
"\020\4bad_irq\010flash/boot present", temp);
sys/dev/isa/if_iy.c
574
temp = bus_space_read_1(iot, ioh, REG1);
sys/dev/isa/if_iy.c
580
temp);
sys/dev/isa/if_iy.c
585
bus_space_write_1(iot, ioh, REG1, temp | INT_ENABLE); /* XXX what about WORD_WIDTH? */
sys/dev/isa/if_iy.c
591
temp = bus_space_read_1(iot, ioh, REG1);
sys/dev/isa/if_iy.c
593
temp);
sys/dev/isa/if_iy.c
635
unsigned temp;
sys/dev/isa/if_iy.c
714
temp = bus_space_read_1(iot, ioh, REG1);
sys/dev/isa/if_iy.c
716
temp & ~XMT_CHAIN_INT);
sys/dev/isa/if_iy.c
851
temp = bus_space_read_1(iot, ioh, REG1);
sys/dev/isa/if_iy.c
852
bus_space_write_1(iot, ioh, REG1, temp | XMT_CHAIN_INT);
sys/dev/isa/lpt_isa.c
111
u_char temp;
sys/dev/isa/lpt_isa.c
118
temp = bus_space_read_1(iot, ioh, off) & mask;
sys/dev/isa/lpt_isa.c
119
} while (temp != data && --timeout);
sys/dev/isa/lpt_isa.c
121
(unsigned)(base + off), (unsigned)data, (unsigned)temp, timeout));
sys/dev/isa/lpt_isa.c
122
return (temp == data);
sys/dev/isa/smsc.c
290
int temp=t;
sys/dev/isa/smsc.c
292
return temp * 1000000 + 273150000U;
sys/dev/mii/mii_physubr.c
65
char temp[MII_MAX_DESCR_LEN];
sys/dev/mii/mii_physubr.c
69
if (mii_findvendor(temp, sizeof(temp), oui) == NULL) {
sys/dev/mii/mii_physubr.c
73
strlcpy(descr, temp, len);
sys/dev/mii/mii_physubr.c
75
if (mii_findproduct(temp, sizeof(temp), oui, model) == NULL) {
sys/dev/mii/mii_physubr.c
79
strlcat(descr, temp, len);
sys/dev/onewire/owtemp.c
212
owtemp_update(struct owtemp_softc *sc, uint32_t *temp)
sys/dev/onewire/owtemp.c
249
*temp = sc->sc_owtemp_decode(data);
sys/dev/onewire/owtemp.c
278
int temp;
sys/dev/onewire/owtemp.c
284
temp = (int8_t)buf[1];
sys/dev/onewire/owtemp.c
285
temp = (temp << 8) | buf[0];
sys/dev/onewire/owtemp.c
290
return (temp * 62500 + 273150000);
sys/dev/onewire/owtemp.c
296
int temp;
sys/dev/onewire/owtemp.c
302
temp = (int8_t)buf[1];
sys/dev/onewire/owtemp.c
303
temp = (temp << 8) | buf[0];
sys/dev/onewire/owtemp.c
314
temp &= ~1;
sys/dev/onewire/owtemp.c
315
temp += 500000 * temp + (500000 * (buf[7] - buf[6])) / buf[7] - 250000;
sys/dev/onewire/owtemp.c
317
temp *= 500000;
sys/dev/onewire/owtemp.c
321
return (temp + 273150000);
sys/dev/onewire/owtemp.c
94
static bool owtemp_update(struct owtemp_softc *sc, uint32_t *temp);
sys/dev/pci/agp_nvidia.c
170
uint32_t temp;
sys/dev/pci/agp_nvidia.c
207
temp = pci_conf_read(sc->as_pc, nsc->mc2_tag, AGP_NVIDIA_2_GARTCTRL);
sys/dev/pci/agp_nvidia.c
208
pci_conf_write(sc->as_pc, nsc->mc2_tag, AGP_NVIDIA_2_GARTCTRL, temp | 0x11);
sys/dev/pci/agp_nvidia.c
211
temp = pci_conf_read(sc->as_pc, sc->as_tag, AGP_NVIDIA_0_APSIZE);
sys/dev/pci/agp_nvidia.c
212
pci_conf_write(sc->as_pc, sc->as_tag, AGP_NVIDIA_0_APSIZE, temp | 0x100);
sys/dev/pci/agp_nvidia.c
333
uint32_t temp;
sys/dev/pci/agp_nvidia.c
341
temp = pci_conf_read(sc->as_pc, sc->as_tag, AGP_NVIDIA_0_APSIZE);
sys/dev/pci/agp_nvidia.c
342
pci_conf_write(sc->as_pc, sc->as_tag, AGP_NVIDIA_0_APSIZE, temp & ~(0x100));
sys/dev/pci/agp_nvidia.c
345
temp = pci_conf_read(sc->as_pc, nsc->mc2_tag, AGP_NVIDIA_2_GARTCTRL);
sys/dev/pci/agp_nvidia.c
346
pci_conf_write(sc->as_pc, nsc->mc2_tag, AGP_NVIDIA_2_GARTCTRL, temp & ~(0x11));
sys/dev/pci/bktr/bktr_audio.c
130
u_int temp;
sys/dev/pci/bktr/bktr_audio.c
212
temp = INL(bktr, BKTR_GPIO_DATA) & ~bktr->card.gpio_mux_bits;
sys/dev/pci/bktr/bktr_audio.c
214
OUTL(bktr, BKTR_GPIO_DATA, temp | (cmd & 0xff));
sys/dev/pci/bktr/bktr_audio.c
216
cmd, bktr->card.audiomuxs[idx], temp);
sys/dev/pci/bktr/bktr_audio.c
218
OUTL(bktr, BKTR_GPIO_DATA, temp | bktr->card.audiomuxs[idx]);
sys/dev/pci/bktr/bktr_core.c
1311
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
1388
temp = 0;
sys/dev/pci/bktr/bktr_core.c
1389
if (!(c_temp & 0x40)) temp |= METEOR_STATUS_HCLK;
sys/dev/pci/bktr/bktr_core.c
1390
if (!(c_temp & 0x10)) temp |= METEOR_STATUS_FIDT;
sys/dev/pci/bktr/bktr_core.c
1391
*(u_short *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
1395
temp = *(unsigned int*)arg & BT848_IFORM_FORMAT;
sys/dev/pci/bktr/bktr_core.c
1399
OUTB(bktr, BKTR_IFORM, (temp_iform | temp | format_params[temp].iform_xtsel));
sys/dev/pci/bktr/bktr_core.c
1400
switch(temp) {
sys/dev/pci/bktr/bktr_core.c
1410
OUTB(bktr, BKTR_ADELAY, format_params[temp].adelay);
sys/dev/pci/bktr/bktr_core.c
1411
OUTB(bktr, BKTR_BDELAY, format_params[temp].bdelay);
sys/dev/pci/bktr/bktr_core.c
1412
bktr->format_params = temp;
sys/dev/pci/bktr/bktr_core.c
1422
OUTB(bktr, BKTR_ADELAY, format_params[temp].adelay);
sys/dev/pci/bktr/bktr_core.c
1423
OUTB(bktr, BKTR_BDELAY, format_params[temp].bdelay);
sys/dev/pci/bktr/bktr_core.c
1424
bktr->format_params = temp;
sys/dev/pci/bktr/bktr_core.c
1540
temp = (int)*(u_char *)arg;
sys/dev/pci/bktr/bktr_core.c
1542
OUTB(bktr, BKTR_SAT_U_LO, (temp << 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1543
OUTB(bktr, BKTR_SAT_V_LO, (temp << 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1551
if (temp & BIT_SEVEN_HIGH) {
sys/dev/pci/bktr/bktr_core.c
1562
temp = (INB(bktr, BKTR_SAT_V_LO) >> 1) & 0xff;
sys/dev/pci/bktr/bktr_core.c
1564
temp |= BIT_SEVEN_HIGH;
sys/dev/pci/bktr/bktr_core.c
1565
*(u_char *)arg = (u_char)temp;
sys/dev/pci/bktr/bktr_core.c
1569
temp = (int)*(u_char *)arg & 0xff;
sys/dev/pci/bktr/bktr_core.c
1570
temp <<= 1;
sys/dev/pci/bktr/bktr_core.c
1571
OUTB(bktr, BKTR_CONTRAST_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
1575
(((temp & 0x100) >> 6) & BT848_E_CONTROL_CON_MSB));
sys/dev/pci/bktr/bktr_core.c
1577
(((temp & 0x100) >> 6) & BT848_O_CONTROL_CON_MSB));
sys/dev/pci/bktr/bktr_core.c
1581
temp = (int)INB(bktr, BKTR_CONTRAST_LO) & 0xff;
sys/dev/pci/bktr/bktr_core.c
1582
temp |= ((int)INB(bktr, BKTR_O_CONTROL) & 0x04) << 6;
sys/dev/pci/bktr/bktr_core.c
1583
*(u_char *)arg = (u_char)((temp >> 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1615
temp = bktr->flags;
sys/dev/pci/bktr/bktr_core.c
1622
if (temp & METEOR_CAP_MASK)
sys/dev/pci/bktr/bktr_core.c
1664
if (temp & METEOR_CAP_MASK)
sys/dev/pci/bktr/bktr_core.c
1769
if ((temp=(geo->rows * geo->columns * geo->frames * 2))) {
sys/dev/pci/bktr/bktr_core.c
1770
if (geo->oformat & METEOR_GEO_RGB24) temp = temp * 2;
sys/dev/pci/bktr/bktr_core.c
1773
if (geo->frames > 1) temp += PAGE_SIZE;
sys/dev/pci/bktr/bktr_core.c
1775
temp = btoc(temp);
sys/dev/pci/bktr/bktr_core.c
1776
if ((int) temp > bktr->alloc_pages
sys/dev/pci/bktr/bktr_core.c
1786
temp * PAGE_SIZE);
sys/dev/pci/bktr/bktr_core.c
1793
sbuf = get_bktr_mem(unit, temp*PAGE_SIZE);
sys/dev/pci/bktr/bktr_core.c
1800
bktr->alloc_pages = temp;
sys/dev/pci/bktr/bktr_core.c
1804
bktr_name(bktr), temp*PAGE_SIZE);
sys/dev/pci/bktr/bktr_core.c
1937
unsigned int temp, temp1;
sys/dev/pci/bktr/bktr_core.c
1968
temp = tv_channel(bktr, (int)*(unsigned int *)arg);
sys/dev/pci/bktr/bktr_core.c
1969
*(unsigned int *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
1988
temp = *(unsigned int *)arg;
sys/dev/pci/bktr/bktr_core.c
1989
if ((temp < CHNLSET_MIN) || (temp > CHNLSET_MAX))
sys/dev/pci/bktr/bktr_core.c
1991
bktr->tuner.chnlset = temp;
sys/dev/pci/bktr/bktr_core.c
1999
temp = get_tuner_status(bktr);
sys/dev/pci/bktr/bktr_core.c
2000
*(unsigned int *)arg = temp & 0xff;
sys/dev/pci/bktr/bktr_core.c
2005
temp = tv_freq(bktr, (int)*(unsigned int *)arg, TV_FREQUENCY);
sys/dev/pci/bktr/bktr_core.c
2007
*(unsigned int *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
2055
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
2058
temp |= (BT848_E_CONTROL_SAT_U_MSB |
sys/dev/pci/bktr/bktr_core.c
2064
temp &= ~(BT848_E_CONTROL_SAT_U_MSB |
sys/dev/pci/bktr/bktr_core.c
2072
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
2087
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
2090
temp |= BT848_E_CONTROL_SAT_V_MSB;
sys/dev/pci/bktr/bktr_core.c
2094
temp &= ~BT848_E_CONTROL_SAT_V_MSB;
sys/dev/pci/bktr/bktr_core.c
2099
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
2114
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
2117
temp |= BT848_E_CONTROL_SAT_U_MSB;
sys/dev/pci/bktr/bktr_core.c
2121
temp &= ~BT848_E_CONTROL_SAT_U_MSB;
sys/dev/pci/bktr/bktr_core.c
2126
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
2156
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
2159
temp |= BT848_E_CONTROL_CON_MSB;
sys/dev/pci/bktr/bktr_core.c
2163
temp &= ~BT848_E_CONTROL_CON_MSB;
sys/dev/pci/bktr/bktr_core.c
2168
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
2192
temp = bktr->audio_mux_select;
sys/dev/pci/bktr/bktr_core.c
2194
temp |= AUDIO_MUTE;
sys/dev/pci/bktr/bktr_core.c
2195
*(int*)arg = temp;
sys/dev/pci/bktr/bktr_core.c
2265
temp=(int)*(unsigned int *)arg;
sys/dev/pci/bktr/bktr_core.c
2269
(int)*(unsigned int *)arg, temp);
sys/dev/pci/bktr/bktr_core.c
2275
if(temp<8750 || temp>10800) {
sys/dev/pci/bktr/bktr_core.c
2281
temp = tv_freq(bktr, temp, FM_RADIO_FREQUENCY);
sys/dev/pci/bktr/bktr_core.c
2284
if(temp)
sys/dev/pci/bktr/bktr_core.c
2285
printf("%s: tv_freq returned: %d\n", bktr_name(bktr), temp);
sys/dev/pci/bktr/bktr_core.c
2287
*(unsigned int *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
2347
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
2486
temp = status_sum;
sys/dev/pci/bktr/bktr_core.c
2489
*(u_int*)arg = temp;
sys/dev/pci/bktr/bktr_core.c
3449
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
3463
temp = ((quad_t) fp->htotal* (quad_t) bktr->capture_area_x_size * 4096
sys/dev/pci/bktr/bktr_core.c
3466
temp = ((quad_t) fp->htotal* (quad_t) fp->scaled_hactive * 4096
sys/dev/pci/bktr/bktr_core.c
3470
OUTB(bktr, BKTR_E_HSCALE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3471
OUTB(bktr, BKTR_O_HSCALE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3472
OUTB(bktr, BKTR_E_HSCALE_HI, (temp >> 8) & 0xff);
sys/dev/pci/bktr/bktr_core.c
3473
OUTB(bktr, BKTR_O_HSCALE_HI, (temp >> 8) & 0xff);
sys/dev/pci/bktr/bktr_core.c
3476
temp = bktr->cols;
sys/dev/pci/bktr/bktr_core.c
3478
OUTB(bktr, BKTR_E_HACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3479
OUTB(bktr, BKTR_O_HACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3482
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 8) & 0x3));
sys/dev/pci/bktr/bktr_core.c
3483
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 8) & 0x3));
sys/dev/pci/bktr/bktr_core.c
3487
temp = ((fp->hdelay* fp->scaled_hactive + bktr->capture_area_x_offset* fp->scaled_htotal)
sys/dev/pci/bktr/bktr_core.c
3490
temp = (fp->hdelay * bktr->cols) / fp->hactive;
sys/dev/pci/bktr/bktr_core.c
3492
temp = temp & 0x3fe;
sys/dev/pci/bktr/bktr_core.c
3495
OUTB(bktr, BKTR_E_DELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3496
OUTB(bktr, BKTR_O_DELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3499
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 6) & 0xc));
sys/dev/pci/bktr/bktr_core.c
3500
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 6) & 0xc));
sys/dev/pci/bktr/bktr_core.c
3536
temp = bktr->capture_area_y_size;
sys/dev/pci/bktr/bktr_core.c
3538
temp = fp->vactive;
sys/dev/pci/bktr/bktr_core.c
3541
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 4) & 0x30));
sys/dev/pci/bktr/bktr_core.c
3542
OUTB(bktr, BKTR_E_VACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3544
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 4) & 0x30));
sys/dev/pci/bktr/bktr_core.c
3545
OUTB(bktr, BKTR_O_VACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3549
temp = fp->vdelay + (bktr->capture_area_y_offset);
sys/dev/pci/bktr/bktr_core.c
3551
temp = fp->vdelay;
sys/dev/pci/bktr/bktr_core.c
3554
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 2) & 0xC0));
sys/dev/pci/bktr/bktr_core.c
3555
OUTB(bktr, BKTR_E_VDELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3557
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 2) & 0xC0));
sys/dev/pci/bktr/bktr_core.c
3558
OUTB(bktr, BKTR_O_VDELAY_LO, temp & 0xff);
sys/dev/pci/cxgb/cxgb_adapter.h
459
uint32_t temp;
sys/dev/pci/cxgb/cxgb_adapter.h
460
temp = pci_conf_read(adapter->pa.pa_pc, adapter->pa.pa_tag, reg&0xfc);
sys/dev/pci/cxgb/cxgb_adapter.h
462
*val = (temp>>16)&0xffff;
sys/dev/pci/cxgb/cxgb_adapter.h
464
*val = temp&0xffff;
sys/dev/pci/cxgb/cxgb_adapter.h
470
uint32_t temp = pci_conf_read(adapter->pa.pa_pc, adapter->pa.pa_tag, reg&0xfc);
sys/dev/pci/cxgb/cxgb_adapter.h
472
temp = (temp&0xffff)|(val<<16);
sys/dev/pci/cxgb/cxgb_adapter.h
474
temp = (temp&0xffff0000)|val;
sys/dev/pci/cxgb/cxgb_adapter.h
475
pci_conf_write(adapter->pa.pa_pc, adapter->pa.pa_tag, reg&0xfc, temp);
sys/dev/pci/cxgb/cxgb_main.c
844
uint32_t temp;
sys/dev/pci/cxgb/cxgb_main.c
863
temp = pci_conf_read(sc->pa.pa_pc, sc->pa.pa_tag, ptr);
sys/dev/pci/cxgb/cxgb_main.c
864
ptr = PCI_CAPLIST_PTR(temp);
sys/dev/pci/cxgb/cxgb_main.c
866
temp = pci_conf_read(sc->pa.pa_pc, sc->pa.pa_tag, ptr);
sys/dev/pci/cxgb/cxgb_main.c
867
if (PCI_CAPLIST_CAP(temp) == cap)
sys/dev/pci/cxgb/cxgb_main.c
869
ptr = PCI_CAPLIST_NEXT(temp);
sys/dev/pci/if_aq.c
2972
fw2x_get_temperature(struct aq_softc *sc, uint32_t *temp)
sys/dev/pci/if_aq.c
2996
*temp = celsius * (1000000 / 256) + 273150000;
sys/dev/pci/if_aq.c
3687
aq2_fw_get_temperature(struct aq_softc *sc, uint32_t *temp)
sys/dev/pci/if_aq.c
3703
*temp = data * 1000000 + 273150000;
sys/dev/pci/if_aq.c
4960
uint32_t temp;
sys/dev/pci/if_aq.c
4965
error = sc->sc_fw_ops->get_temperature(sc, &temp);
sys/dev/pci/if_aq.c
4967
edata->value_cur = temp;
sys/dev/pci/if_iwmreg.h
7002
int32_t temp;
sys/dev/pci/if_iwmreg.h
7014
int32_t temp;
sys/dev/pci/if_iwn.c
1734
chans[0].samples[c][j].temp,
sys/dev/pci/if_iwn.c
1745
chans[1].samples[c][j].temp,
sys/dev/pci/if_iwn.c
2394
int temp;
sys/dev/pci/if_iwn.c
2407
if (stats->general.temp != sc->rawtemp) {
sys/dev/pci/if_iwn.c
2409
sc->rawtemp = stats->general.temp;
sys/dev/pci/if_iwn.c
2410
temp = ops->get_temperature(sc);
sys/dev/pci/if_iwn.c
2411
DPRINTFN(2, ("temperature=%dC\n", temp));
sys/dev/pci/if_iwn.c
2415
iwn4965_power_calibration(sc, temp);
sys/dev/pci/if_iwn.c
3651
int32_t temp;
sys/dev/pci/if_iwn.c
3656
temp = (IWN_CTOK(110) - sc->temp_off) * -5;
sys/dev/pci/if_iwn.c
3658
temp = IWN_CTOK(110);
sys/dev/pci/if_iwn.c
3660
temp = 110;
sys/dev/pci/if_iwn.c
3662
crit.tempR = htole32(temp);
sys/dev/pci/if_iwn.c
3663
DPRINTF(("setting critical temperature to %d\n", temp));
sys/dev/pci/if_iwn.c
3690
iwn4965_power_calibration(struct iwn_softc *sc, int temp)
sys/dev/pci/if_iwn.c
3693
DPRINTF(("temperature %d->%d\n", sc->temp, temp));
sys/dev/pci/if_iwn.c
3694
if (abs(temp - sc->temp) >= 3) {
sys/dev/pci/if_iwn.c
3696
sc->temp = temp;
sys/dev/pci/if_iwn.c
3779
uint8_t power, gain, temp;
sys/dev/pci/if_iwn.c
3788
temp = interpolate(chan,
sys/dev/pci/if_iwn.c
3789
chans[0].num, chans[0].samples[c][1].temp,
sys/dev/pci/if_iwn.c
3790
chans[1].num, chans[1].samples[c][1].temp, 1);
sys/dev/pci/if_iwn.c
3792
c, power, gain, temp));
sys/dev/pci/if_iwn.c
3795
tdiff = ((sc->temp - temp) * 2) / tdiv[grp];
sys/dev/pci/if_iwn.c
3797
"EEPROM=%d)\n", tdiff, sc->temp, temp));
sys/dev/pci/if_iwn.c
3938
int32_t r1, r2, r3, r4, temp;
sys/dev/pci/if_iwn.c
3940
r1 = le32toh(uc->temp[0].chan20MHz);
sys/dev/pci/if_iwn.c
3941
r2 = le32toh(uc->temp[1].chan20MHz);
sys/dev/pci/if_iwn.c
3942
r3 = le32toh(uc->temp[2].chan20MHz);
sys/dev/pci/if_iwn.c
3951
temp = (259 * (r4 - r2)) / (r3 - r1);
sys/dev/pci/if_iwn.c
3952
temp = (temp * 97) / 100 + 8;
sys/dev/pci/if_iwn.c
3954
DPRINTF(("temperature %dK/%dC\n", temp, IWN_KTOC(temp)));
sys/dev/pci/if_iwn.c
3955
return IWN_KTOC(temp);
sys/dev/pci/if_iwn.c
3961
int32_t temp;
sys/dev/pci/if_iwn.c
3968
temp = le32toh(sc->rawtemp);
sys/dev/pci/if_iwn.c
3970
temp = (temp / -5) + sc->temp_off;
sys/dev/pci/if_iwn.c
3971
temp = IWN_KTOC(temp);
sys/dev/pci/if_iwn.c
3973
return temp;
sys/dev/pci/if_iwn.c
5735
sc->rawtemp = sc->ucode_info.temp[3].chan20MHz;
sys/dev/pci/if_iwn.c
5736
sc->temp = iwn4965_get_temperature(sc);
sys/dev/pci/if_iwnreg.h
1169
} __packed temp[4];
sys/dev/pci/if_iwnreg.h
1413
uint32_t temp;
sys/dev/pci/if_iwnreg.h
1625
uint8_t temp;
sys/dev/pci/if_iwnvar.h
290
int temp;
sys/dev/pci/if_rtwn.c
3228
int temp;
sys/dev/pci/if_rtwn.c
3241
temp = rtwn_rf_read(sc, 0, R92C_RF_T_METER) & 0x1f;
sys/dev/pci/if_rtwn.c
3242
if (temp == 0) /* Read failed, skip. */
sys/dev/pci/if_rtwn.c
3244
DPRINTFN(2, ("temperature=%d\n", temp));
sys/dev/pci/if_rtwn.c
3252
sc->thcal_lctemp = temp;
sys/dev/pci/if_rtwn.c
3253
} else if (abs(temp - sc->thcal_lctemp) > 1) {
sys/dev/pci/if_rtwn.c
3255
sc->thcal_lctemp, temp));
sys/dev/pci/if_rtwn.c
3259
sc->thcal_lctemp = temp;
sys/dev/pci/if_wm.c
12371
uint16_t temp, temp2;
sys/dev/pci/if_wm.c
12392
temp = reg >> GG82563_PAGE_SHIFT;
sys/dev/pci/if_wm.c
12393
if ((rv = wm_gmii_mdic_writereg(dev, phy, page_select, temp)) != 0)
sys/dev/pci/if_wm.c
12403
if ((rv != 0) || (temp2 != temp)) {
sys/dev/pci/if_wm.c
12431
uint16_t temp, temp2;
sys/dev/pci/if_wm.c
12451
temp = (uint16_t)reg >> GG82563_PAGE_SHIFT;
sys/dev/pci/if_wm.c
12452
if ((rv = wm_gmii_mdic_writereg(dev, phy, page_select, temp)) != 0)
sys/dev/pci/if_wm.c
12462
if ((rv != 0) || (temp2 != temp)) {
sys/dev/pci/if_wm.c
12588
uint16_t temp;
sys/dev/pci/if_wm.c
12613
temp = *phy_regp;
sys/dev/pci/if_wm.c
12614
temp |= BM_WUC_ENABLE_BIT;
sys/dev/pci/if_wm.c
12615
temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
sys/dev/pci/if_wm.c
12617
if ((rv = wm_gmii_mdic_writereg(dev, 1, BM_WUC_ENABLE_REG, temp)) != 0)
sys/dev/pci/if_wpi.c
1415
int temp, s;
sys/dev/pci/if_wpi.c
1428
temp = (int)WPI_READ(sc, WPI_TEMPERATURE);
sys/dev/pci/if_wpi.c
1432
wpi_power_calibration(sc, temp);
sys/dev/pci/if_wpi.c
1453
wpi_power_calibration(struct wpi_softc *sc, int temp)
sys/dev/pci/if_wpi.c
1456
if (temp < -260 || temp > 25) {
sys/dev/pci/if_wpi.c
1458
DPRINTF(("out-of-range temperature reported: %d\n", temp));
sys/dev/pci/if_wpi.c
1462
DPRINTF(("temperature %d->%d\n", sc->temp, temp));
sys/dev/pci/if_wpi.c
1465
if (abs(temp - sc->temp) <= 6)
sys/dev/pci/if_wpi.c
1468
sc->temp = temp;
sys/dev/pci/if_wpi.c
2364
group->temp = (int16_t)le16toh(rgroup.temp);
sys/dev/pci/if_wpi.c
2367
group->chan, group->maxpwr, group->temp));
sys/dev/pci/if_wpi.c
2647
idx -= (sc->temp - group->temp) * 11 / 100;
sys/dev/pci/if_wpi.c
3276
if ((sc->temp = (int)WPI_READ(sc, WPI_TEMPERATURE)) != 0)
sys/dev/pci/if_wpi.c
3286
DPRINTF(("temperature %d\n", sc->temp));
sys/dev/pci/if_wpireg.h
634
int16_t temp;
sys/dev/pci/if_wpivar.h
124
int16_t temp;
sys/dev/pci/if_wpivar.h
163
int temp;
sys/dev/pci/pm2fb.c
1485
uint8_t temp;
sys/dev/pci/pm2fb.c
1512
temp = pm2fb_read_dac(sc, PM2V_DAC_CLOCK_CONTROL) & 0xfc;
sys/dev/pci/pm2fb.c
1517
pm2fb_write_dac(sc, PM2V_DAC_CLOCK_CONTROL, temp | 3);
sys/dev/pci/radeonfb_bios.c
575
uint16_t temp, offset;
sys/dev/pci/radeonfb_bios.c
577
temp = GETBIOS16(sc, ROM_HEADER_OFFSET);
sys/dev/pci/radeonfb_bios.c
578
offset = GETBIOS16(sc, temp + tp->offset);
sys/dev/pci/ydsreg.h
338
uint32_t temp;
sys/dev/qbus/qd.c
1092
short *temp; /* a pointer to template RAM */
sys/dev/qbus/qd.c
1157
temp = (short *) qdmap[unit].template;
sys/dev/qbus/qd.c
1162
temp += (8 * 1024) - 32;
sys/dev/qbus/qd.c
1164
*(short *)datap = *temp++;
sys/dev/qbus/qd.c
2938
volatile short *temp;
sys/dev/qbus/qd.c
2943
temp = (short *) qdmap[unit].template;
sys/dev/qbus/qd.c
2953
temp += (8 * 1024) - 32; /* cursor is 32 WORDS from the end */
sys/dev/qbus/qd.c
2956
*temp++ = *bitmap++;
sys/dev/raidframe/rf_alloclist.c
107
RF_AllocListElem_t *temp, *p;
sys/dev/raidframe/rf_alloclist.c
118
temp = l;
sys/dev/raidframe/rf_alloclist.c
120
pool_put(&rf_alloclist_pool, temp);
sys/dev/raidframe/rf_aselect.c
116
RF_FuncList_t *stripeFuncsList, *stripeFuncs, *stripeFuncsEnd, *temp;
sys/dev/raidframe/rf_aselect.c
326
temp = stripeFuncsList;
sys/dev/raidframe/rf_aselect.c
328
rf_FreeFuncList(raidPtr, temp);
sys/dev/raidframe/rf_aselect.c
537
temp = stripeFuncsList;
sys/dev/raidframe/rf_aselect.c
539
rf_FreeFuncList(raidPtr, temp);
sys/dev/raidframe/rf_driver.c
632
RF_DagList_t *dagList, *temp;
sys/dev/raidframe/rf_driver.c
640
temp = dagList;
sys/dev/raidframe/rf_driver.c
642
rf_FreeDAGList(raidPtr, temp);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
465
short *temp;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
473
long *temp;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
479
temp = RF_Malloc(bytesPerEU);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
540
temp[k] ^= *(rrdbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
544
temp[k] ^= *(rrdbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
559
temp[k] ^= *(ebuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
563
temp[k] ^= *(ebuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
571
temp[k] ^= P[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
574
dest_larger_current[k] = temp[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
577
temp[k] ^= P[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
580
dest_larger_current[k] = temp[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
592
temp[k] ^= *(rrdbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
596
temp[k] ^= *(rrdbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
604
temp[k] ^= *(pbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
606
dest_smaller_current[k] = temp[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
610
temp[k] ^= *(pbuf_current + k);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
612
dest_smaller_current[k] = temp[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
621
RF_Free((char *) temp, bytesPerEU);
sys/dev/raidframe/rf_evenodd_dags.c
128
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_evenodd_dags.c
130
temp = asmap->parityInfo;
sys/dev/raidframe/rf_evenodd_dags.c
132
asmap->qInfo = temp;
sys/dev/raidframe/rf_evenodd_dags.c
141
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_evenodd_dags.c
143
temp = asmap->parityInfo;
sys/dev/raidframe/rf_evenodd_dags.c
145
asmap->qInfo = temp;
sys/dev/raidframe/rf_evenodd_dags.c
155
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_evenodd_dags.c
162
temp = asmap->parityInfo;
sys/dev/raidframe/rf_evenodd_dags.c
164
asmap->qInfo = temp;
sys/dev/raidframe/rf_evenodd_dags.c
80
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_evenodd_dags.c
82
temp = asmap->parityInfo;
sys/dev/raidframe/rf_evenodd_dags.c
84
asmap->qInfo = temp;
sys/dev/raidframe/rf_pqdeg.c
101
asmap->qInfo = temp;
sys/dev/raidframe/rf_pqdeg.c
136
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_pqdeg.c
138
temp = asmap->parityInfo;
sys/dev/raidframe/rf_pqdeg.c
140
asmap->qInfo = temp;
sys/dev/raidframe/rf_pqdeg.c
153
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_pqdeg.c
155
temp = asmap->parityInfo;
sys/dev/raidframe/rf_pqdeg.c
157
asmap->qInfo = temp;
sys/dev/raidframe/rf_pqdeg.c
192
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_pqdeg.c
199
temp = asmap->parityInfo;
sys/dev/raidframe/rf_pqdeg.c
201
asmap->qInfo = temp;
sys/dev/raidframe/rf_pqdeg.c
97
RF_PhysDiskAddr_t *temp;
sys/dev/raidframe/rf_pqdeg.c
99
temp = asmap->parityInfo;
sys/dev/raidframe/rf_states.c
596
RF_DagList_t *dagList, *temp;
sys/dev/raidframe/rf_states.c
613
temp = dagList;
sys/dev/raidframe/rf_states.c
615
rf_FreeDAGList(raidPtr, temp);
sys/dev/sbus/mgx.c
1240
uint8_t temp;
sys/dev/sbus/mgx.c
1244
temp = 0;
sys/dev/sbus/mgx.c
1248
temp >>= 2;
sys/dev/sbus/mgx.c
1252
temp |= px;
sys/dev/sbus/mgx.c
1256
*fb = temp;
sys/dev/sbus/mgx.c
1258
temp = 0;
sys/dev/sbus/mgx.c
1260
temp >>= 2;
sys/dev/sbus/mgx.c
1264
temp |= px;
sys/dev/sbus/mgx.c
1268
*fb = temp;
sys/dev/sbus/tcx.c
1046
volatile uint64_t temp;
sys/dev/sbus/tcx.c
1058
temp = 0x30000000ffffffffLL |
sys/dev/sbus/tcx.c
1062
sc->sc_rstip[i] = temp;
sys/dev/sbus/tcx.c
1065
temp &= 0xffffffffffffffffLL << (32 - leftover);
sys/dev/sbus/tcx.c
1066
sc->sc_rstip[i] = temp;
sys/dev/sbus/tcx.c
1076
volatile uint64_t temp, cmd, rcmd, lcmd;
sys/dev/sbus/tcx.c
1082
temp = 0x3000000000000000LL |
sys/dev/sbus/tcx.c
1094
cmd = temp | pmask;
sys/dev/sbus/tcx.c
1102
rcmd = temp | (uint64_t)pmask;
sys/dev/sbus/tcx.c
1104
lcmd = temp | (uint64_t)pmask;
sys/dev/sbus/tcx.c
1105
cmd = temp | 0xffffffffLL;
sys/dev/sbus/tcx.c
1131
volatile uint64_t bg, fg, temp, mask;
sys/dev/sbus/tcx.c
1154
temp = 0x3000000000000000LL |
sys/dev/sbus/tcx.c
1174
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1180
sc->sc_rstip[addr] = temp | mask;
sys/dev/sbus/tcx.c
1191
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1203
fg = temp | (uint64_t)(w >>
sys/dev/sbus/tcx.c
1206
fg = temp | (uint64_t)(w <<
sys/dev/sbus/tcx.c
1215
sc->sc_rstip[addr] = temp | mask;
sys/dev/sbus/tcx.c
1222
fg = temp | (uint64_t)(w >>
sys/dev/sbus/tcx.c
1225
fg = temp | (uint64_t)(w <<
sys/dev/sbus/tcx.c
1247
temp = 0x3000000000000000LL |
sys/dev/sbus/tcx.c
1263
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1265
sc->sc_rstip[addr] = fgr | temp;
sys/dev/sbus/tcx.c
1271
sc->sc_rstip[addr] = temp | mask;
sys/dev/sbus/tcx.c
1272
sc->sc_rstip[addr + 32] = temp | maskr;
sys/dev/sbus/tcx.c
1280
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1282
sc->sc_rstip[addr] = fgr | temp;
sys/dev/sbus/tcx.c
1295
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1297
sc->sc_rstip[addr + 32] = fgr | temp;
sys/dev/sbus/tcx.c
1303
sc->sc_rstip[addr] = temp | mask;
sys/dev/sbus/tcx.c
1304
sc->sc_rstip[addr + 32] = temp | maskr;
sys/dev/sbus/tcx.c
1312
sc->sc_rstip[addr] = fg | temp;
sys/dev/sbus/tcx.c
1314
sc->sc_rstip[addr + 32] = fgr | temp;
sys/dev/sbus/tcx.c
1389
uint32_t temp, poof;
sys/dev/sbus/tcx.c
1392
memcpy(&temp, &cur->mask[i], 4);
sys/dev/sbus/tcx.c
1393
poof = ((temp & 0x80808080) >> 7) |
sys/dev/sbus/tcx.c
1394
((temp & 0x40404040) >> 5) |
sys/dev/sbus/tcx.c
1395
((temp & 0x20202020) >> 3) |
sys/dev/sbus/tcx.c
1396
((temp & 0x10101010) >> 1) |
sys/dev/sbus/tcx.c
1397
((temp & 0x08080808) << 1) |
sys/dev/sbus/tcx.c
1398
((temp & 0x04040404) << 3) |
sys/dev/sbus/tcx.c
1399
((temp & 0x02020202) << 5) |
sys/dev/sbus/tcx.c
1400
((temp & 0x01010101) << 7);
sys/dev/sbus/tcx.c
1403
memcpy(&temp, &cur->image[i], 4);
sys/dev/sbus/tcx.c
1404
poof = ((temp & 0x80808080) >> 7) |
sys/dev/sbus/tcx.c
1405
((temp & 0x40404040) >> 5) |
sys/dev/sbus/tcx.c
1406
((temp & 0x20202020) >> 3) |
sys/dev/sbus/tcx.c
1407
((temp & 0x10101010) >> 1) |
sys/dev/sbus/tcx.c
1408
((temp & 0x08080808) << 1) |
sys/dev/sbus/tcx.c
1409
((temp & 0x04040404) << 3) |
sys/dev/sbus/tcx.c
1410
((temp & 0x02020202) << 5) |
sys/dev/sbus/tcx.c
1411
((temp & 0x01010101) << 7);
sys/dev/stbi/stb_image.c
1225
unsigned int temp;
sys/dev/stbi/stb_image.c
1249
temp = j->code_buffer >> 16;
sys/dev/stbi/stb_image.c
1251
if (temp < h->maxcode[k])
sys/dev/stbi/stb_image.c
3805
unsigned char temp = tga_data[index1];
sys/dev/stbi/stb_image.c
3807
tga_data[index2] = temp;
sys/dev/usb/ehci.c
4506
u_int temp, tlen;
sys/dev/usb/ehci.c
4509
temp = 0;
sys/dev/usb/ehci.c
4512
temp |= 1; /* T-count = 1, TP = ALL */
sys/dev/usb/ehci.c
4517
temp |= tlen; /* T-count = [1..6] */
sys/dev/usb/ehci.c
4518
temp |= 8; /* TP = Begin */
sys/dev/usb/ehci.c
4520
sitd->sitd->sitd_buffer[1] |= htole32(temp);
sys/dev/usb/if_axen.c
366
uint16_t ctl, temp;
sys/dev/usb/if_axen.c
402
temp = le16toh(wval);
sys/dev/usb/if_axen.c
403
DPRINTFN(2,("EEPROM0x43 = 0x%04x\n", temp));
sys/dev/usb/if_axen.c
404
if (!(temp == 0xffff) && !(temp & 0x0100)) {
sys/dev/usb/if_axen.c
763
size_t temp;
sys/dev/usb/if_axen.c
855
temp = ((pkt_len + 7) & 0xfff8);
sys/dev/usb/if_axen.c
856
buf = buf + temp;
sys/dev/usb/if_mue.c
520
uint8_t temp[2];
sys/dev/usb/if_mue.c
525
(mue_read_eeprom(un, temp, MUE_E2P_LTM_OFFSET, 2) == 0)) {
sys/dev/usb/if_mue.c
526
if (temp[0] != sizeof(idx)) {
sys/dev/usb/if_mue.c
530
if (mue_read_eeprom(un, (uint8_t *)idx, temp[1] << 1,
sys/dev/usb/if_mue.c
536
} else if (mue_read_otp(un, temp, MUE_E2P_LTM_OFFSET, 2) == 0) {
sys/dev/usb/if_mue.c
537
if (temp[0] != sizeof(idx)) {
sys/dev/usb/if_mue.c
541
if (mue_read_otp(un, (uint8_t *)idx, temp[1] << 1,
sys/dev/usb/if_ure.c
169
uint8_t temp[4];
sys/dev/usb/if_ure.c
175
ure_read_mem(un, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
176
val = UGETDW(temp);
sys/dev/usb/if_ure.c
186
uint8_t temp[4];
sys/dev/usb/if_ure.c
192
ure_read_mem(un, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
193
val = UGETDW(temp);
sys/dev/usb/if_ure.c
202
uint8_t temp[4];
sys/dev/usb/if_ure.c
204
ure_read_mem(un, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
205
return UGETDW(temp);
sys/dev/usb/if_ure.c
212
uint8_t temp[4];
sys/dev/usb/if_ure.c
225
USETDW(temp, val);
sys/dev/usb/if_ure.c
226
return ure_write_mem(un, reg, index | byen, &temp, 4);
sys/dev/usb/if_ure.c
233
uint8_t temp[4];
sys/dev/usb/if_ure.c
246
USETDW(temp, val);
sys/dev/usb/if_ure.c
247
return ure_write_mem(un, reg, index | byen, &temp, 4);
sys/dev/usb/if_ure.c
253
uint8_t temp[4];
sys/dev/usb/if_ure.c
255
USETDW(temp, val);
sys/dev/usb/if_ure.c
256
return ure_write_mem(un, reg, index | URE_BYTE_EN_DWORD, &temp, 4);
sys/dev/usb/if_urtwn.c
4760
int temp, t_meter_reg;
sys/dev/usb/if_urtwn.c
4781
temp = urtwn_rf_read(sc, 0, R92C_RF_T_METER) & 0x1f;
sys/dev/usb/if_urtwn.c
4782
DPRINTFN(DBG_RF, "temperature=%jd", temp, 0, 0, 0);
sys/dev/usb/if_urtwn.c
4783
if (temp == 0) /* Read failed, skip. */
sys/dev/usb/if_urtwn.c
4792
sc->thcal_lctemp = temp;
sys/dev/usb/if_urtwn.c
4793
} else if (abs(temp - sc->thcal_lctemp) > 1) {
sys/dev/usb/if_urtwn.c
4795
sc->thcal_lctemp, temp, 0, 0);
sys/dev/usb/if_urtwn.c
4798
sc->thcal_lctemp = temp;
sys/dev/usb/uthum.c
344
int temp, rh;
sys/dev/usb/uthum.c
362
temp = uthum_sht1x_temp(buf[0], buf[1]);
sys/dev/usb/uthum.c
363
rh = uthum_sht1x_rh(humidity_tick, temp);
sys/dev/usb/uthum.c
378
temp = uthum_temper_temp(buf[0], buf[1]);
sys/dev/usb/uthum.c
385
sc->sc_sensor[UTHUM_TEMP].value_cur = (temp * 10000) + 273150000;
sys/dev/usb/uthum.c
415
uthum_sht1x_rh(unsigned int ticks, int temp)
sys/dev/usb/uthum.c
420
rh = ((temp - 2500) * (1 + (ticks >> 7)) + rh_l) / 10;
sys/dev/videomode/pickmode.c
104
struct videomode temp;
sys/dev/videomode/pickmode.c
106
temp = *left;
sys/dev/videomode/pickmode.c
108
*right = temp;
sys/fs/hfs/libhfs.c
103
unichar_t temp[256];
sys/fs/hfs/libhfs.c
116
do{ int i; for(i=0; i<len; i++) temp[i]=str[i]; } \
sys/fs/hfs/libhfs.c
120
hfslib_make_catalog_key(HFS_CNID_ROOT_FOLDER, 21, temp,
sys/fs/hfs/libhfs.c
124
hfslib_make_catalog_key(HFS_CNID_ROOT_FOLDER, 19, temp,
sys/fs/hfs/libhfs.c
128
hfslib_make_catalog_key(HFS_CNID_ROOT_FOLDER, 8, temp,
sys/kern/subr_optstr.c
187
uint8_t temp[ETHER_ADDR_LEN];
sys/kern/subr_optstr.c
188
int error = ether_aton_r(temp, sizeof(temp), data);
sys/kern/subr_optstr.c
191
memcpy(result, temp, sizeof(temp));
sys/netinet/dccp_tfrc.c
1254
int temp;
sys/netinet/dccp_tfrc.c
1259
temp = 1;
sys/netinet/dccp_tfrc.c
1260
TFRC_RECV_FINDDATAPACKET(cb, elm, temp);
sys/netinet/dccp_tfrc.c
1269
temp = win_count - (int) (elm2->win_count);
sys/netinet/dccp_tfrc.c
1270
if (temp < 0)
sys/netinet/dccp_tfrc.c
1271
temp = temp + TFRC_WIN_COUNT_LIMIT;
sys/netinet/dccp_tfrc.c
1273
if (temp > 4)
sys/netinet/dccp_tfrc.c
1282
if (temp == 0) {
sys/netinet/dccp_tfrc.c
1284
temp = 1;
sys/netinet/dccp_tfrc.c
1347
int temp;
sys/netinet/dccp_tfrc.c
1419
temp = win_count - (int) (elm2->win_count);
sys/netinet/dccp_tfrc.c
1420
if (temp < 0)
sys/netinet/dccp_tfrc.c
1421
temp = temp + TFRC_WIN_COUNT_LIMIT;
sys/netinet/dccp_tfrc.c
1423
if (temp > TFRC_WIN_COUNT_PER_RTT + 1) {
sys/netinet/dccp_tfrc.c
311
struct fixpoint temp, temp2;
sys/netinet/dccp_tfrc.c
317
temp = cb->x_recv;
sys/netinet/dccp_tfrc.c
318
temp.num *= 2;
sys/netinet/dccp_tfrc.c
319
if (fixpoint_cmp(&cb->x_calc, &temp) < 0)
sys/netinet/dccp_tfrc.c
320
temp = cb->x_calc;
sys/netinet/dccp_tfrc.c
321
cb->x = temp;
sys/netinet/dccp_tfrc.c
324
if (fixpoint_cmp(&temp, &temp2) < 0)
sys/netinet/dccp_tfrc.c
336
temp = cb->x_recv;
sys/netinet/dccp_tfrc.c
337
temp.num *= 2;
sys/netinet/dccp_tfrc.c
340
if (fixpoint_cmp(&temp2, &temp) < 0)
sys/netinet/dccp_tfrc.c
341
temp = temp2;
sys/netinet/dccp_tfrc.c
346
if (fixpoint_cmp(&temp, &cb->x) > 0)
sys/netinet/dccp_tfrc.c
347
cb->x = temp;
sys/netinet/sctp_input.c
2599
uint16_t *list, temp;
sys/netinet/sctp_input.c
2609
temp = ntohs(list[i]);
sys/netinet/sctp_input.c
2610
list[i] = temp;
sys/netinet/sctp_output.c
8789
uint16_t temp;
sys/netinet/sctp_output.c
8792
temp = ntohs(list[i]);
sys/netinet/sctp_output.c
8793
list[i] = temp;
tests/lib/libc/gen/t_fpclassify.c
154
volatile double temp;
tests/lib/libc/gen/t_fpclassify.c
156
makequietsignalling(&temp, (double) f, bith);
tests/lib/libc/gen/t_fpclassify.c
157
*ret = temp;
tests/lib/libcurses/director/testlang_parse.y
737
var_t *temp;
tests/lib/libcurses/director/testlang_parse.y
743
if ((temp = realloc(vars, sizeof(*temp) * (nvars + 1))) == NULL) {
tests/lib/libcurses/director/testlang_parse.y
749
vars = temp;
tests/lib/libcurses/director/testlang_parse.y
764
args_t *temp, cur;
tests/lib/libcurses/director/testlang_parse.y
797
temp = realloc(command.args, sizeof(*temp) * (command.nargs + 1));
tests/lib/libcurses/director/testlang_parse.y
798
if (temp == NULL)
tests/lib/libcurses/director/testlang_parse.y
800
command.args = temp;
tests/lib/libcurses/director/testlang_parse.y
811
ct_data_t *temp, cur;
tests/lib/libcurses/director/testlang_parse.y
844
temp = realloc(command.returns, sizeof(*temp) * (command.nrets + 1));
tests/lib/libcurses/director/testlang_parse.y
845
if (temp == NULL)
tests/lib/libcurses/director/testlang_parse.y
847
command.returns = temp;
usr.bin/cal/cal.c
550
long temp;
usr.bin/cal/cal.c
552
temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
usr.bin/cal/cal.c
554
if (temp < FIRST_MISSING_DAY)
usr.bin/cal/cal.c
555
return ((temp - dow + 6 + SATURDAY) % 7);
usr.bin/cal/cal.c
556
if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS))
usr.bin/cal/cal.c
557
return (((temp - dow + 6 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
usr.bin/error/touch.c
640
FILE *temp;
usr.bin/error/touch.c
665
temp = NULL;
usr.bin/error/touch.c
670
if ((temp = fopen(n_name, "r")) == NULL) {
usr.bin/error/touch.c
675
oktorm = mustoverwrite(localfile, temp);
usr.bin/error/touch.c
678
if (temp != NULL)
usr.bin/error/touch.c
679
fclose(temp);
usr.bin/error/touch.c
696
mustoverwrite(FILE *preciousfile, FILE *temp)
usr.bin/error/touch.c
700
while ((nread = fread(edbuf, 1, sizeof(edbuf), temp)) != 0) {
usr.bin/ftp/util.c
544
char temp[MAXPATHLEN];
usr.bin/ftp/util.c
569
len = strlcpy(temp, tmpdir, sizeof(temp));
usr.bin/ftp/util.c
570
if (temp[len - 1] != '/')
usr.bin/ftp/util.c
571
(void)strlcat(temp, "/", sizeof(temp));
usr.bin/ftp/util.c
572
(void)strlcat(temp, TMPFILE, sizeof(temp));
usr.bin/ftp/util.c
573
if ((fd = mkstemp(temp)) < 0) {
usr.bin/ftp/util.c
574
warn("Unable to create temporary file `%s'", temp);
usr.bin/ftp/util.c
587
recvrequest("NLST", temp, *argv, rmode, 0, 0);
usr.bin/ftp/util.c
597
ftemp = fopen(temp, "r");
usr.bin/ftp/util.c
598
(void)unlink(temp);
usr.bin/kdump/kdump.c
438
struct timespec temp;
usr.bin/kdump/kdump.c
498
temp.tv_sec = kth->ktr_ts.tv_sec;
usr.bin/kdump/kdump.c
499
temp.tv_nsec = kth->ktr_ts.tv_nsec;
usr.bin/kdump/kdump.c
500
col += output_ts(&temp);
usr.bin/kdump/kdump.c
507
temp.tv_sec = temp.tv_nsec = 0;
usr.bin/kdump/kdump.c
509
timespecsub(&kth->ktr_ts, &starttime, &temp);
usr.bin/kdump/kdump.c
510
col += output_ts(&temp);
usr.bin/kdump/kdump.c
515
temp.tv_sec = temp.tv_nsec = 0;
usr.bin/kdump/kdump.c
517
timespecsub(&kth->ktr_ts, &prevtime, &temp);
usr.bin/kdump/kdump.c
520
col += output_ts(&temp);
usr.bin/ktruss/dump.c
352
union timeholder temp;
usr.bin/ktruss/dump.c
354
temp.tv.tv_sec = temp.tv.tv_usec = 0;
usr.bin/ktruss/dump.c
364
temp.tv.tv_sec = temp.tv.tv_usec = 0;
usr.bin/ktruss/dump.c
367
&prevtime.tv, &temp.tv);
usr.bin/ktruss/dump.c
374
temp.ts.tv_sec = temp.ts.tv_nsec = 0;
usr.bin/ktruss/dump.c
377
&prevtime.ts, &temp.ts);
usr.bin/ktruss/dump.c
384
temp.ts.tv_sec = temp.ts.tv_nsec = 0;
usr.bin/ktruss/dump.c
387
&prevtime.ts, &temp.ts);
usr.bin/ktruss/dump.c
395
temp.tv.tv_sec = kth->ktr_otv.tv_sec;
usr.bin/ktruss/dump.c
396
temp.tv.tv_usec = kth->ktr_otv.tv_usec;
usr.bin/ktruss/dump.c
399
temp.ts.tv_sec = kth->ktr_ots.tv_sec;
usr.bin/ktruss/dump.c
400
temp.ts.tv_nsec = kth->ktr_ots.tv_nsec;
usr.bin/ktruss/dump.c
403
temp.ts.tv_sec = kth->ktr_ts.tv_sec;
usr.bin/ktruss/dump.c
404
temp.ts.tv_nsec = kth->ktr_ts.tv_nsec;
usr.bin/ktruss/dump.c
410
(long long)temp.tv.tv_sec, (long)temp.tv.tv_usec);
usr.bin/ktruss/dump.c
413
(long long)temp.ts.tv_sec, (long)temp.ts.tv_nsec);
usr.bin/m4/eval.c
403
char *temp;
usr.bin/m4/eval.c
405
temp = xstrdup(argv[2]);
usr.bin/m4/eval.c
407
fd = mkstemp(temp);
usr.bin/m4/eval.c
413
pbstr(temp);
usr.bin/m4/eval.c
414
free(temp);
usr.bin/m4/eval.c
425
char *temp;
usr.bin/m4/eval.c
427
temp = xalloc(strlen(argv[2])+1, NULL);
usr.bin/m4/eval.c
429
map(temp, argv[2], argv[3], argv[4]);
usr.bin/m4/eval.c
431
map(temp, argv[2], argv[3], null);
usr.bin/m4/eval.c
432
pbstr(temp);
usr.bin/m4/eval.c
433
free(temp);
usr.bin/m4/gnum4.c
564
char temp[2];
usr.bin/m4/gnum4.c
623
temp[0] = (int)strtoul(argv[pos++], NULL, 10);
usr.bin/m4/gnum4.c
624
temp[1] = 0;
usr.bin/m4/gnum4.c
625
thisarg = temp;
usr.bin/menuc/mdb.c
72
id_rec *temp;
usr.bin/menuc/mdb.c
74
temp = find_id (root, name);
usr.bin/menuc/mdb.c
76
if (temp == NULL) {
usr.bin/menuc/mdb.c
78
temp = calloc(1, sizeof(id_rec));
usr.bin/menuc/mdb.c
79
temp->id = strdup(name);
usr.bin/menuc/mdb.c
80
temp->info = NULL;
usr.bin/menuc/mdb.c
81
temp->menu_no = menu_no;
usr.bin/menuc/mdb.c
82
menus[menu_no++] = temp;
usr.bin/menuc/mdb.c
83
insert_id(&root, temp);
usr.bin/menuc/mdb.c
91
return temp;
usr.bin/shuffle/shuffle.c
63
size_t i, j, k, temp;
usr.bin/shuffle/shuffle.c
77
temp = shuffle[j];
usr.bin/shuffle/shuffle.c
79
shuffle[k] = temp;
usr.bin/sort/radix_sort.c
157
swap(*sp0, *sp1, temp);
usr.bin/sort/radix_sort.c
78
stack *s, *sp, *sp0, *sp1, temp;
usr.bin/systat/vmstat.c
404
#define X(s, s1, fld) {temp = (s).fld[i]; (s).fld[i] -= (s1).fld[i]; \
usr.bin/systat/vmstat.c
405
if (display_mode == TIME) (s1).fld[i] = temp;}
usr.bin/systat/vmstat.c
406
#define Z(s, s1, fld) {temp = (s).nchstats.fld; \
usr.bin/systat/vmstat.c
408
if (display_mode == TIME) (s1).nchstats.fld = temp;}
usr.bin/systat/vmstat.c
410
{temp = (s).fld; (s).fld -= (s1).fld; \
usr.bin/systat/vmstat.c
411
if (display_mode == TIME) (s1).fld = temp; \
usr.bin/systat/vmstat.c
82
static u_int64_t temp;
usr.bin/telnet/telnet.c
779
unsigned char temp[50];
usr.bin/telnet/telnet.c
785
snprintf((char *)temp, sizeof(temp), "%c%c%c%c%s%c%c", IAC, SB,
usr.bin/telnet/telnet.c
787
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
788
printsub('>', &temp[2], len-2);
usr.bin/telnet/telnet.c
802
unsigned char temp[50];
usr.bin/telnet/telnet.c
807
snprintf((char *)temp, sizeof(temp), "%c%c%c%c%ld,%ld%c%c", IAC, SB,
usr.bin/telnet/telnet.c
809
len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
usr.bin/telnet/telnet.c
812
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
813
printsub('>', temp+2, len - 2);
usr.bin/telnet/telnet.c
898
unsigned char temp[50], *dp;
usr.bin/telnet/telnet.c
909
snprintf((char *)temp, sizeof(temp), "%c%c%c%c%s%c%c", IAC, SB,
usr.bin/telnet/telnet.c
911
len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
usr.bin/telnet/telnet.c
914
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
915
printsub('>', temp+2, len - 2);
usr.bin/vgrind/regexp.c
188
int temp;
usr.bin/vgrind/regexp.c
218
temp = OCNT(acs);
usr.bin/vgrind/regexp.c
220
acs -= temp;
usr.bin/vgrind/regexp.c
221
} while (temp != 0);
usr.bin/vgrind/regexp.c
237
temp = OCNT(acs);
usr.bin/vgrind/regexp.c
239
acs -= temp;
usr.bin/vgrind/regexp.c
240
} while (temp != 0);
usr.bin/vgrind/regexp.c
259
temp = OCNT(acs);
usr.bin/vgrind/regexp.c
261
acs -= temp;
usr.bin/vgrind/regexp.c
262
} while (temp != 0);
usr.bin/vgrind/regexp.c
277
temp = OCNT(acs);
usr.bin/vgrind/regexp.c
279
acs -= temp;
usr.bin/vgrind/regexp.c
280
} while (temp != 0);
usr.bin/vgrind/regexp.c
321
temp = OCNT(acs);
usr.bin/vgrind/regexp.c
323
acs -= temp;
usr.bin/vgrind/regexp.c
324
} while (temp != 0);
usr.sbin/bootp/common/dovend.c
374
byte *temp;
usr.sbin/bootp/common/dovend.c
378
temp = (*dest += 4);
usr.sbin/bootp/common/dovend.c
380
*--temp = (byte) (value & 0xFF);
usr.sbin/bootp/common/hash.c
212
hash_member *temp;
usr.sbin/bootp/common/hash.c
218
temp = (hash_member *) malloc(sizeof(hash_member));
usr.sbin/bootp/common/hash.c
219
if (!temp)
usr.sbin/bootp/common/hash.c
222
temp->data = element;
usr.sbin/bootp/common/hash.c
223
temp->next = (hashtable->table)[hashcode];
usr.sbin/bootp/common/hash.c
224
(hashtable->table)[hashcode] = temp;
usr.sbin/diskpart/diskpart.c
295
int temp;
usr.sbin/diskpart/diskpart.c
297
temp = defparam[PART('h')].p_fsize;
usr.sbin/diskpart/diskpart.c
300
defparam[PART('g')].p_fsize = temp;
usr.sbin/envstat/envstat.c
1023
temp = ((a) / 1000000.0); \
usr.sbin/envstat/envstat.c
1025
temp = temp * (9.0 / 5.0) - 459.67; \
usr.sbin/envstat/envstat.c
1030
temp = temp - 273.15; \
usr.sbin/envstat/envstat.c
1033
(void)printf("%*.3f", (int)ilen, temp); \
usr.sbin/envstat/envstat.c
1365
double temp = 0;
usr.sbin/envstat/envstat.c
1451
temp = ((a) / 1000000.0); \
usr.sbin/envstat/envstat.c
1453
temp = temp * (9.0 / 5.0) - 459.67; \
usr.sbin/envstat/envstat.c
1458
temp = temp - 273.15; \
usr.sbin/envstat/envstat.c
1462
mj_create(&a_float, "number", temp); \
usr.sbin/envstat/envstat.c
901
double temp = 0;
usr.sbin/intrctl/intrctl_io.c
67
void *temp;
usr.sbin/intrctl/intrctl_io.c
69
temp = realloc(buf, buf_size);
usr.sbin/intrctl/intrctl_io.c
70
if (temp == NULL) {
usr.sbin/intrctl/intrctl_io.c
73
buf = temp;
usr.sbin/makefs/cd9660.c
1065
int numbts, dot, semi, digit, digits, temp, powers, multiplier, count;
usr.sbin/makefs/cd9660.c
1149
temp = i;
usr.sbin/makefs/cd9660.c
1151
digit = (int)(temp / powers);
usr.sbin/makefs/cd9660.c
1152
temp = temp - digit * powers;
usr.sbin/makefs/cd9660.c
187
cd9660node *temp = ecalloc(1, sizeof(*temp));
usr.sbin/makefs/cd9660.c
188
TAILQ_INIT(&temp->cn_children);
usr.sbin/makefs/cd9660.c
189
temp->parent = temp->dot_record = temp->dot_dot_record = NULL;
usr.sbin/makefs/cd9660.c
190
temp->ptnext = temp->ptprev = temp->ptlast = NULL;
usr.sbin/makefs/cd9660.c
191
temp->node = NULL;
usr.sbin/makefs/cd9660.c
192
temp->isoDirRecord = NULL;
usr.sbin/makefs/cd9660.c
193
temp->isoExtAttributes = NULL;
usr.sbin/makefs/cd9660.c
194
temp->rr_real_parent = temp->rr_relocated = NULL;
usr.sbin/makefs/cd9660.c
195
temp->su_tail_data = NULL;
usr.sbin/makefs/cd9660.c
196
return temp;
usr.sbin/makefs/cd9660.c
1975
cd9660node *temp;
usr.sbin/makefs/cd9660.c
1980
temp = cd9660_allocate_cd9660node();
usr.sbin/makefs/cd9660.c
1981
if (temp == NULL)
usr.sbin/makefs/cd9660.c
1986
temp->isoDirRecord = emalloc(sizeof(*temp->isoDirRecord));
usr.sbin/makefs/cd9660.c
1989
temp->isoDirRecord->name, file);
usr.sbin/makefs/cd9660.c
1991
temp->node = tfsnode;
usr.sbin/makefs/cd9660.c
1992
temp->parent = parent;
usr.sbin/makefs/cd9660.c
1995
if (temp->parent != NULL) {
usr.sbin/makefs/cd9660.c
1996
temp->level = temp->parent->level + 1;
usr.sbin/makefs/cd9660.c
1997
if (!TAILQ_EMPTY(&temp->parent->cn_children))
usr.sbin/makefs/cd9660.c
1998
cd9660_sorted_child_insert(temp->parent, temp);
usr.sbin/makefs/cd9660.c
2000
TAILQ_INSERT_HEAD(&temp->parent->cn_children,
usr.sbin/makefs/cd9660.c
2001
temp, cn_next_child);
usr.sbin/makefs/cd9660.c
2019
cd9660_copy_stat_info(parent, temp, file);
usr.sbin/makefs/cd9660.c
2021
return temp;
usr.sbin/makefs/cd9660.c
2028
cd9660node *temp;
usr.sbin/makefs/cd9660.c
2030
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 1, 1);
usr.sbin/makefs/cd9660.c
2031
if (temp == NULL)
usr.sbin/makefs/cd9660.c
2034
temp->fileDataLength = 0;
usr.sbin/makefs/cd9660.c
2036
temp->type = CD9660_TYPE_FILE | CD9660_TYPE_VIRTUAL;
usr.sbin/makefs/cd9660.c
2038
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
2039
*temp->node->inode = *me->node->inode;
usr.sbin/makefs/cd9660.c
2041
if (cd9660_translate_node_common(diskStructure, temp) == 0)
usr.sbin/makefs/cd9660.c
2043
return temp;
usr.sbin/makefs/cd9660.c
2056
cd9660node *temp;
usr.sbin/makefs/cd9660.c
2058
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 0, 1);
usr.sbin/makefs/cd9660.c
2059
if (temp == NULL)
usr.sbin/makefs/cd9660.c
2061
temp->node->type |= S_IFDIR;
usr.sbin/makefs/cd9660.c
2063
temp->type = CD9660_TYPE_DIR | CD9660_TYPE_VIRTUAL;
usr.sbin/makefs/cd9660.c
2065
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
2066
*temp->node->inode = *me->node->inode;
usr.sbin/makefs/cd9660.c
2068
if (cd9660_translate_node_common(diskStructure, temp) == 0)
usr.sbin/makefs/cd9660.c
2070
return temp;
usr.sbin/makefs/cd9660.c
2077
cd9660node *temp, *first;
usr.sbin/makefs/cd9660.c
2090
if ((temp = cd9660_create_virtual_entry(diskStructure, na, parent,
usr.sbin/makefs/cd9660.c
2094
temp->parent = parent;
usr.sbin/makefs/cd9660.c
2095
temp->type = type;
usr.sbin/makefs/cd9660.c
2096
temp->isoDirRecord->length[0] = 34;
usr.sbin/makefs/cd9660.c
2099
parent->dot_record = temp;
usr.sbin/makefs/cd9660.c
2100
TAILQ_INSERT_HEAD(&parent->cn_children, temp, cn_next_child);
usr.sbin/makefs/cd9660.c
2103
parent->dot_dot_record = temp;
usr.sbin/makefs/cd9660.c
2110
TAILQ_INSERT_HEAD(&parent->cn_children, temp,
usr.sbin/makefs/cd9660.c
2113
TAILQ_INSERT_AFTER(&parent->cn_children, first, temp,
usr.sbin/makefs/cd9660.c
2118
return temp;
usr.sbin/makefs/cd9660.c
775
volume_descriptor *temp, *t;
usr.sbin/makefs/cd9660.c
778
temp = emalloc(sizeof(*temp));
usr.sbin/makefs/cd9660.c
779
temp->volumeDescriptorData =
usr.sbin/makefs/cd9660.c
781
temp->volumeDescriptorData[0] = ISO_VOLUME_DESCRIPTOR_PVD;
usr.sbin/makefs/cd9660.c
782
temp->volumeDescriptorData[6] = 1;
usr.sbin/makefs/cd9660.c
783
temp->sector = sector;
usr.sbin/makefs/cd9660.c
784
memcpy(temp->volumeDescriptorData + 1,
usr.sbin/makefs/cd9660.c
786
diskStructure->firstVolumeDescriptor = temp;
usr.sbin/makefs/cd9660.c
793
temp->next = t;
usr.sbin/makefs/cd9660.c
794
temp = t;
usr.sbin/makefs/cd9660.c
805
temp->next = t;
usr.sbin/makefs/cd9660.c
834
char temp[ISO_FILENAME_MAXLENGTH_WITH_PADDING];
usr.sbin/makefs/cd9660.c
837
memset(temp, 0, ISO_FILENAME_MAXLENGTH_WITH_PADDING);
usr.sbin/makefs/cd9660.c
840
temp, !(S_ISDIR(newnode->node->type)));
usr.sbin/makefs/cd9660.c
847
flag, strlen(temp), temp);
usr.sbin/makefs/cd9660/cd9660_conversion.c
177
char temp[70]; /* we know its only 18 but gcc can't figure this out */
usr.sbin/makefs/cd9660/cd9660_conversion.c
183
(void)snprintf(temp, sizeof(temp), "%04i%02i%02i%02i%02i%02i%02i",
usr.sbin/makefs/cd9660/cd9660_conversion.c
191
(void)memcpy(buf, temp, 16);
usr.sbin/makefs/cd9660/cd9660_debug.c
156
char temp[CD9660_SECTOR_SIZE];
usr.sbin/makefs/cd9660/cd9660_debug.c
161
memset(temp, 0, CD9660_SECTOR_SIZE);
usr.sbin/makefs/cd9660/cd9660_debug.c
162
memcpy(temp, tmp->volumeDescriptorData + 1, 5);
usr.sbin/makefs/cd9660/cd9660_debug.c
165
tmp->sector, tmp->volumeDescriptorData[0], temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
117
free(temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
125
free(temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
366
*valid_entry, *default_entry, *temp, *head, **headp, *next;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
454
temp = default_entry;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
497
temp = cd9660_boot_setup_section_entry(tmp_disk);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
498
if (temp == NULL) {
usr.sbin/makefs/cd9660/cd9660_eltorito.c
507
LIST_INSERT_AFTER(head, temp, ll_struct);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
70
char *temp;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
84
temp = estrdup(boot_info);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
86
sysname = temp;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
91
free(temp);
usr.sbin/makefs/cd9660/cd9660_write.c
268
cd9660node *temp;
usr.sbin/makefs/cd9660/cd9660_write.c
314
TAILQ_FOREACH(temp, &writenode->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/cd9660_write.c
319
memcpy(&temp_record, temp->isoDirRecord,
usr.sbin/makefs/cd9660/cd9660_write.c
323
cd9660_compute_record_size(diskStructure, temp);
usr.sbin/makefs/cd9660/cd9660_write.c
337
temp->isoDirRecord->length[0], fd);
usr.sbin/makefs/cd9660/cd9660_write.c
339
cd9660_write_rr(diskStructure, fd, temp,
usr.sbin/makefs/cd9660/cd9660_write.c
344
temp_record.length[0] - temp->su_tail_size,
usr.sbin/makefs/cd9660/cd9660_write.c
347
if (temp->su_tail_size > 0)
usr.sbin/makefs/cd9660/cd9660_write.c
348
fwrite(temp->su_tail_data, 1,
usr.sbin/makefs/cd9660/cd9660_write.c
349
temp->su_tail_size, fd);
usr.sbin/makefs/cd9660/cd9660_write.c
361
TAILQ_FOREACH(temp, &writenode->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/cd9660_write.c
362
if ((ret = cd9660_write_file(diskStructure, fd, temp))
usr.sbin/makefs/cd9660/iso9660_rrip.c
103
cd9660node *temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
116
TAILQ_FOREACH(temp, &node->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
117
if ((r = cd9660_susp_finalize(diskStructure, temp)) < 0)
usr.sbin/makefs/cd9660/iso9660_rrip.c
209
struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST;
usr.sbin/makefs/cd9660/iso9660_rrip.c
220
TAILQ_FOREACH(temp, &node->head, rr_ll) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
227
working -= CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
229
last = temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
230
susp_used += CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
255
for (temp = TAILQ_NEXT(last, rr_ll); temp != NULL;
usr.sbin/makefs/cd9660/iso9660_rrip.c
256
temp = TAILQ_NEXT(temp, rr_ll)) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
257
ca_used += CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
300
struct ISO_SUSP_ATTRIBUTES *temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
315
temp = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
usr.sbin/makefs/cd9660/iso9660_rrip.c
317
cd9660_susp_sp(temp, node);
usr.sbin/makefs/cd9660/iso9660_rrip.c
320
TAILQ_INSERT_HEAD(&node->head, temp, rr_ll);
usr.sbin/makefs/cd9660/iso9660_rrip.c
447
struct ISO_SUSP_ATTRIBUTES* temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
449
temp = emalloc(sizeof(*temp));
usr.sbin/makefs/cd9660/iso9660_rrip.c
450
temp->susp_type = susp_type;
usr.sbin/makefs/cd9660/iso9660_rrip.c
451
temp->entry_type = entry_type;
usr.sbin/makefs/cd9660/iso9660_rrip.c
452
temp->last_in_suf = 0;
usr.sbin/makefs/cd9660/iso9660_rrip.c
454
temp->type_of[0] = type_id[0];
usr.sbin/makefs/cd9660/iso9660_rrip.c
455
temp->type_of[1] = type_id[1];
usr.sbin/makefs/cd9660/iso9660_rrip.c
456
temp->write_location = write_loc;
usr.sbin/makefs/cd9660/iso9660_rrip.c
463
temp->attr.su_entry.SP.h.type[0] = type_id[0];
usr.sbin/makefs/cd9660/iso9660_rrip.c
464
temp->attr.su_entry.SP.h.type[1] = type_id[1];
usr.sbin/makefs/cd9660/iso9660_rrip.c
465
return temp;
usr.sbin/makemandb/apropos-utils.c
578
char *temp;
usr.sbin/makemandb/apropos-utils.c
580
if ((temp = sqlite3_mprintf("%Q%c", args->sections[i], c)) == NULL)
usr.sbin/makemandb/apropos-utils.c
582
concat(&section_clause, temp);
usr.sbin/makemandb/apropos-utils.c
583
sqlite3_free(temp);
usr.sbin/makemandb/apropos-utils.c
910
const char *temp = callback_args->snippet;
usr.sbin/makemandb/apropos-utils.c
920
while (*temp) {
usr.sbin/makemandb/apropos-utils.c
921
sz = strcspn(temp, "\002\003");
usr.sbin/makemandb/apropos-utils.c
922
temp += sz;
usr.sbin/makemandb/apropos-utils.c
923
if (*temp == '\003') {
usr.sbin/makemandb/apropos-utils.c
926
temp++;
usr.sbin/makemandb/custom_apropos_tokenizer.c
720
size_t temp;
usr.sbin/makemandb/custom_apropos_tokenizer.c
721
int stemStatus = do_stem(&z[iStartOffset], n, c->zToken, &temp);
usr.sbin/makemandb/custom_apropos_tokenizer.c
724
*pnBytes = temp;
usr.sbin/makemandb/makemandb.c
1348
char *temp = parse_escape(name_desc);
usr.sbin/makemandb/makemandb.c
1350
rec->name_desc = temp;
usr.sbin/makemandb/makemandb.c
1351
temp = parse_escape(rec->name);
usr.sbin/makemandb/makemandb.c
1353
rec->name = temp;
usr.sbin/makemandb/makemandb.c
2058
char *temp;
usr.sbin/makemandb/makemandb.c
2061
temp = parse_escape(src);
usr.sbin/makemandb/makemandb.c
2062
srclen = strlen(temp);
usr.sbin/makemandb/makemandb.c
2081
memcpy(sbuff->data + sbuff->offset, temp, srclen);
usr.sbin/makemandb/makemandb.c
2083
free(temp);
usr.sbin/mtrace/mtrace.c
1282
u_int32_t temp = qdst;
usr.sbin/mtrace/mtrace.c
1284
qgrp = temp;
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
1274
char temp[512];
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
1279
strlcpy(temp, string, sizeof(temp));
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
1280
strlcat(temp, data, sizeof(temp));
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
1282
strlcat(temp, c, sizeof(temp));
usr.sbin/rpc.pcnfsd/pcnfsd_print.c
1283
strcpy(string, temp);
usr.sbin/sysinst/mbr.c
799
unsigned int tcyl, temp, thead, tsec;
usr.sbin/sysinst/mbr.c
801
temp = head * sec;
usr.sbin/sysinst/mbr.c
802
tcyl = relsecs / temp;
usr.sbin/sysinst/mbr.c
803
relsecs -= tcyl * temp;