Symbol: temp
bin/ksh/exec.c
1189
struct temp *h;
bin/ksh/exec.c
839
static struct tbl temp;
bin/ksh/exec.c
900
tp = &temp;
bin/ksh/exec.c
908
if (tp == &temp) {
bin/ksh/exec.c
925
tp = &temp;
bin/ksh/history.c
190
char **temp;
bin/ksh/history.c
192
temp = hfirst; hfirst = hlast; hlast = temp;
bin/ksh/history.c
56
struct temp *tf = NULL;
bin/ksh/io.c
436
struct temp *
bin/ksh/io.c
437
maketemp(Area *ap, Temp_type type, struct temp **tlist)
bin/ksh/io.c
439
struct temp *tp;
bin/ksh/io.c
448
tp = alloc(sizeof(struct temp) + len, ap);
bin/ksh/main.c
27
static void remove_temps(struct temp *tp);
bin/ksh/main.c
823
remove_temps(struct temp *tp)
bin/ksh/sh.h
194
struct temp *next;
bin/ksh/sh.h
499
struct temp *maketemp(Area *, Temp_type, struct temp **);
bin/ksh/sh.h
81
struct temp *temps; /* temp files */
distrib/special/more/more.c
1622
char temp[200];
distrib/special/more/more.c
1626
outstr = temp;
distrib/special/more/more.c
1632
temp + sizeof(temp) - outstr);
distrib/special/more/more.c
1633
if (len >= temp + sizeof(temp) - outstr)
distrib/special/more/more.c
1634
len = temp + sizeof(temp) - outstr - 1;
distrib/special/more/more.c
1644
temp + sizeof(temp) - outstr);
distrib/special/more/more.c
1645
if (len >= temp + sizeof(temp) - outstr)
distrib/special/more/more.c
1646
len = temp + sizeof(temp) - outstr - 1;
distrib/special/more/more.c
1661
strlcpy(outbuf, temp, olen);
games/adventure/vocab.c
103
for (temp = atloc[where]; linkx[temp] != object; temp = linkx[temp])
games/adventure/vocab.c
105
linkx[temp] = linkx[object];
games/adventure/vocab.c
91
int temp;
games/canfield/canfield/canfield.c
1218
struct cardtype *temp;
games/canfield/canfield/canfield.c
1223
temp = bottom[sour];
games/canfield/canfield/canfield.c
1226
bottom[des] = temp;
games/canfield/canfield/canfield.c
1227
temp->next = tableau[des];
games/canfield/canfield/canfield.c
527
struct cardtype *temp;
games/canfield/canfield/canfield.c
536
temp = deck[i];
games/canfield/canfield/canfield.c
538
deck[j] = temp;
games/canfield/canfield/canfield.c
616
struct cardtype *temp;
games/canfield/canfield/canfield.c
618
temp = *source;
games/canfield/canfield/canfield.c
620
temp->next = *dest;
games/canfield/canfield/canfield.c
621
*dest = temp;
games/fish/fish.c
395
int i, j, temp;
games/fish/fish.c
404
temp = deck[i];
games/fish/fish.c
406
deck[i+j] = temp;
games/mille/end.c
46
int temp, tot, num;
games/mille/end.c
53
temp = num * 6 + 21 + 1;
games/mille/end.c
55
mvaddstr(tot, temp, " 0");
games/mille/end.c
57
mvaddstr(5, temp, "40");
games/mille/end.c
60
mvaddstr(6, temp, "30");
games/mille/end.c
64
mvaddstr(7, temp, "30");
games/mille/end.c
68
mvaddstr(8, temp, "20");
games/mille/end.c
72
mvaddstr(9, temp, "50");
games/mille/init.c
90
CARD temp;
games/mille/init.c
94
temp = Deck[r];
games/mille/init.c
96
Deck[i] = temp;
games/mille/move.c
542
CARD temp;
games/mille/move.c
549
temp = *cp;
games/mille/move.c
551
*tp = temp;
games/mille/print.c
46
int i, j, k, temp;
games/mille/print.c
50
temp = k * COMP_STRT + CARD_STRT;
games/mille/print.c
53
mvaddstr(i, temp, C_name[i + S_CONV]);
games/mille/print.c
55
mvaddch(i, temp - CARD_STRT, '*');
games/mille/print.c
58
show_card(14, temp, pp->battle, &pp->sh_battle);
games/mille/print.c
59
show_card(16, temp, pp->speed, &pp->sh_speed);
games/mille/print.c
68
temp = k * 40;
games/mille/print.c
71
mvwaddstr(Miles, i + 1, (j << 2) + temp, name);
games/mille/print.c
76
temp = CARD_STRT;
games/mille/print.c
79
show_card(i + 6, temp, pp->hand[i], &pp->sh_hand[i]);
games/mille/varpush.c
53
int temp;
games/mille/varpush.c
76
if ((read(file, (void *) &temp, sizeof temp)) == -1) {
games/mille/varpush.c
80
Topcard = &Deck[temp];
games/mille/varpush.c
96
temp = Topcard - Deck;
games/mille/varpush.c
97
if ((write(file, (void *) &temp, sizeof temp)) == -1) {
games/monop/cards.c
103
long temp;
games/monop/cards.c
107
temp = dp->offsets[r2];
games/monop/cards.c
109
dp->offsets[r1] = temp;
games/monop/cards.c
241
int32_t temp;
games/monop/cards.c
262
temp = dp->offsets[gojfpos];
games/monop/cards.c
269
dp->offsets[dp->top_card] = temp;
games/monop/cards.c
273
dp->offsets[last_card] = temp;
games/monop/houses.c
113
shrt input[3],temp[3];
games/monop/houses.c
142
temp[i] = 5;
games/monop/houses.c
148
temp[i] = input[i] + pp->houses;
games/monop/houses.c
149
if (temp[i] > 5 || temp[i] < 0) {
games/monop/houses.c
155
if (mp->num_in == 3 && (abs(temp[0] - temp[1]) > 1 ||
games/monop/houses.c
156
abs(temp[0] - temp[2]) > 1 || abs(temp[1] - temp[2]) > 1)) {
games/monop/houses.c
160
else if (mp->num_in == 2 && abs(temp[0] - temp[1]) > 1)
games/monop/houses.c
163
if (temp[i] == 5 && input[i])
games/monop/houses.c
191
mp->sq[i]->desc->houses = temp[i];
games/monop/houses.c
248
shrt input[3],temp[3];
games/monop/houses.c
263
input[i] = temp[i] = 0;
games/monop/houses.c
273
temp[i] = pp->houses - input[i];
games/monop/houses.c
274
if (temp[i] < 0) {
games/monop/houses.c
279
if (mp->num_in == 3 && (abs(temp[0] - temp[1]) > 1 ||
games/monop/houses.c
280
abs(temp[0] - temp[2]) > 1 || abs(temp[1] - temp[2]) > 1)) {
games/monop/houses.c
284
else if (mp->num_in == 2 && abs(temp[0] - temp[1]) > 1)
games/monop/houses.c
294
mp->sq[i]->desc->houses = temp[i];
games/phantasia/fight.c
1143
int temp; /* temporary */
games/phantasia/fight.c
1480
temp = 35;
games/phantasia/fight.c
1485
temp = 0;
games/phantasia/fight.c
1492
temp = 15 + Statptr->c_ringduration + (int) ROLL(0,5);
games/phantasia/fight.c
1502
Player.p_ring.ring_duration = temp;
games/phantasia/gamesupport.c
177
temp = today - playerp->p_lastused;
games/phantasia/gamesupport.c
178
if (temp < 0)
games/phantasia/gamesupport.c
180
temp += 365;
games/phantasia/gamesupport.c
181
mvprintw(16, 40, "3:Lastused %d (%d)\n", playerp->p_lastused, temp);
games/phantasia/gamesupport.c
72
int temp; /* temporary variable */
games/phantasia/main.c
1049
temp = Player.p_poison * Statptr->c_weakness
games/phantasia/main.c
1052
&& temp + 5.0 < Player.p_energy)
games/phantasia/main.c
1053
Player.p_energy -= temp;
games/phantasia/main.c
517
double temp; /* for temporary calculations */
games/phantasia/main.c
653
temp = distance(Player.p_x, x, Player.p_y, y);
games/phantasia/main.c
659
&& temp > (Player.p_level + Player.p_magiclvl) * 20.0)
games/phantasia/main.c
664
temp = (temp / 75.0 + 1.0) * 20.0; /* mana used */
games/phantasia/main.c
666
if (!Throne && temp > Player.p_mana)
games/phantasia/main.c
670
Player.p_mana -= temp;
games/phantasia/main.c
962
double temp; /* for temporary calculations */
games/phantasia/main.c
970
temp = floor(infloat());
games/phantasia/main.c
971
if (temp < 0.0 || temp > Player.p_gold)
games/phantasia/main.c
976
} else if (drandom() / 2.0 > (temp + 1.0) / MAX(Player.p_gold, 1))
games/phantasia/main.c
982
Player.p_gold -= temp;
games/phantasia/main.c
994
temp = ROLL(10.0, 75.0);
games/phantasia/main.c
995
mvprintw(4, 0, "You've found %.0f gold pieces, want them ? ", temp);
games/phantasia/main.c
999
collecttaxes(temp, 0.0);
games/sail/dr_1.c
269
int crew[3], men = 0, target, temp;
games/sail/dr_1.c
336
temp = portside(closest, sp, 1)
games/sail/dr_1.c
338
if (temp < 1)
games/sail/dr_1.c
339
temp += 8;
games/sail/dr_1.c
340
if (temp > 8)
games/sail/dr_1.c
341
temp -= 8;
games/sail/dr_1.c
342
sternrake = temp > 4 && temp < 6;
games/sail/dr_1.c
379
temp = sp->specs->class;
games/sail/dr_1.c
380
if ((temp >= 5 || temp == 1) && windspeed == 5)
games/sail/dr_1.c
382
if (windspeed == 6 && temp == 4)
games/sail/dr_1.c
384
if (windspeed == 6 && temp <= 3)
games/sail/dr_2.c
137
char temp[10];
games/sail/dr_2.c
139
temp[0] = command[0] = '\0';
games/sail/dr_2.c
141
try(command, commandl, temp, sizeof temp, ma, ta, af, ma, from->file->dir,
games/sail/dr_2.c
221
try(char command[], size_t commandl, char temp[], size_t templ, int ma, int ta,
games/sail/dr_2.c
229
if ((n = str_end(temp)) < '1' || n > '9')
games/sail/dr_2.c
232
(void) strlcat(temp, st, templ);
games/sail/dr_2.c
233
new = score(temp, templ, f, t, rakeme);
games/sail/dr_2.c
236
(void) strlcpy(command, temp, commandl);
games/sail/dr_2.c
238
try(command, commandl, temp, templ, ma-n, ta, af, vma-n,
games/sail/dr_2.c
240
rmend(temp);
games/sail/dr_2.c
242
if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') || !strlen(temp)) {
games/sail/dr_2.c
243
(void) strlcat(temp, "r", templ);
games/sail/dr_2.c
244
new = score(temp, templ, f, t, rakeme);
games/sail/dr_2.c
247
(void) strlcpy(command, temp, commandl);
games/sail/dr_2.c
249
try(command, commandl, temp, templ, ma-1, ta-1, af, min(ma-1, maxmove(f, (dir == 8 ? 1 : dir+1), 0)), (dir == 8 ? 1 : dir+1),f,t,high,rakeme);
games/sail/dr_2.c
250
rmend(temp);
games/sail/dr_2.c
252
if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') || !strlen(temp)){
games/sail/dr_2.c
253
(void) strlcat(temp, "l", templ);
games/sail/dr_2.c
254
new = score(temp, templ, f, t, rakeme);
games/sail/dr_2.c
257
(void) strlcpy(command, temp, commandl);
games/sail/dr_2.c
259
try(command, commandl, temp, templ, ma-1, ta-1, af, (min(ma-1,maxmove(f, (dir-1 ? dir-1 : 8), 0))), (dir-1 ? dir -1 : 8), f, t, high, rakeme);
games/sail/dr_2.c
260
rmend(temp);
games/sail/pl_3.c
120
temp = portside(closest, ms, 1) - closest->file->dir + 1;
games/sail/pl_3.c
121
if (temp < 1)
games/sail/pl_3.c
122
temp += 8;
games/sail/pl_3.c
123
else if (temp > 8)
games/sail/pl_3.c
124
temp -= 8;
games/sail/pl_3.c
125
sternrake = temp > 4 && temp < 6;
games/sail/pl_3.c
165
if (((temp = mc->class) >= 5 || temp == 1) && windspeed == 5)
games/sail/pl_3.c
167
if (windspeed == 6 && temp == 4)
games/sail/pl_3.c
169
if (windspeed == 6 && temp <= 3)
games/sail/pl_3.c
44
int target, temp;
games/sail/pl_5.c
203
int temp[3];
games/sail/pl_5.c
206
temp[k] = crew[k];
games/sail/pl_5.c
227
if (temp[k] && !crew[k])
games/sail/pl_5.c
236
if (temp[k] && !crew[k])
games/trek/compkl.c
56
double temp;
games/trek/compkl.c
71
temp = Etc.klingon[i].dist;
games/trek/compkl.c
72
Etc.klingon[i].avgdist = 0.5 * (temp + d);
games/wump/wump.c
682
int i, j, temp;
games/wump/wump.c
691
temp = loc[i];
games/wump/wump.c
693
loc[i + j] = temp;
lib/libagentx/ax.c
1152
uint16_t temp;
lib/libagentx/ax.c
1155
temp = (uint16_t) vblist[i].avb_type;
lib/libagentx/ax.c
1156
if (ax_pdu_add_uint16(ax, temp) == -1 ||
lib/libc/arch/amd64/gen/ldexp.c
44
double temp;
lib/libc/arch/amd64/gen/ldexp.c
46
: "=t" (temp)
lib/libc/arch/amd64/gen/ldexp.c
48
return (temp);
lib/libc/arch/i386/gen/ldexp.c
43
double temp;
lib/libc/arch/i386/gen/ldexp.c
45
: "=t" (temp)
lib/libc/arch/i386/gen/ldexp.c
47
return (temp);
lib/libc/crypt/blowfish.c
394
u_int32_t temp;
lib/libc/crypt/blowfish.c
396
temp = 0x00000000;
lib/libc/crypt/blowfish.c
402
temp = (temp << 8) | data[j];
lib/libc/crypt/blowfish.c
406
return temp;
lib/libc/crypt/blowfish.c
416
u_int32_t temp;
lib/libc/crypt/blowfish.c
423
temp = Blowfish_stream2word(key, keybytes, &j);
lib/libc/crypt/blowfish.c
424
c->P[i] = c->P[i] ^ temp;
lib/libc/crypt/blowfish.c
456
u_int32_t temp;
lib/libc/crypt/blowfish.c
463
temp = Blowfish_stream2word(key, keybytes, &j);
lib/libc/crypt/blowfish.c
464
c->P[i] = c->P[i] ^ temp;
lib/libc/rpc/xdr_stdio.c
100
u_int32_t temp;
lib/libc/rpc/xdr_stdio.c
102
if (fread(&temp, sizeof(int32_t), 1, (FILE *)xdrs->x_private) != 1)
lib/libc/rpc/xdr_stdio.c
104
*lp = (long)ntohl(temp);
lib/libc/stdlib/_rand48.c
33
unsigned short temp[2];
lib/libc/stdlib/_rand48.c
37
temp[0] = (unsigned short) accu; /* lower 16 bits */
lib/libc/stdlib/_rand48.c
41
temp[1] = (unsigned short) accu; /* middle 16 bits */
lib/libc/stdlib/_rand48.c
44
xseed[0] = temp[0];
lib/libc/stdlib/_rand48.c
45
xseed[1] = temp[1];
lib/libc/stdlib/radixsort.c
127
stack s[SIZE], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
187
swap(*sp0, *sp1, temp); /* Play it safe -- biggest bin last. */
lib/libc/stdlib/radixsort.c
215
stack s[512], *sp, *sp0, *sp1, temp;
lib/libc/stdlib/radixsort.c
268
swap(*sp0, *sp1, temp);
lib/libcrypto/aes/aes_core.c
646
uint32_t temp;
lib/libcrypto/aes/aes_core.c
656
temp = rk[3];
lib/libcrypto/aes/aes_core.c
658
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
lib/libcrypto/aes/aes_core.c
659
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
lib/libcrypto/aes/aes_core.c
660
(Te0[(temp) & 0xff] & 0x0000ff00) ^
lib/libcrypto/aes/aes_core.c
661
(Te1[(temp >> 24)] & 0x000000ff) ^
lib/libcrypto/aes/aes_core.c
676
temp = rk[5];
lib/libcrypto/aes/aes_core.c
678
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
lib/libcrypto/aes/aes_core.c
679
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
lib/libcrypto/aes/aes_core.c
680
(Te0[(temp) & 0xff] & 0x0000ff00) ^
lib/libcrypto/aes/aes_core.c
681
(Te1[(temp >> 24)] & 0x000000ff) ^
lib/libcrypto/aes/aes_core.c
698
temp = rk[7];
lib/libcrypto/aes/aes_core.c
700
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
lib/libcrypto/aes/aes_core.c
701
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
lib/libcrypto/aes/aes_core.c
702
(Te0[(temp) & 0xff] & 0x0000ff00) ^
lib/libcrypto/aes/aes_core.c
703
(Te1[(temp >> 24)] & 0x000000ff) ^
lib/libcrypto/aes/aes_core.c
711
temp = rk[11];
lib/libcrypto/aes/aes_core.c
713
(Te2[(temp >> 24)] & 0xff000000) ^
lib/libcrypto/aes/aes_core.c
714
(Te3[(temp >> 16) & 0xff] & 0x00ff0000) ^
lib/libcrypto/aes/aes_core.c
715
(Te0[(temp >> 8) & 0xff] & 0x0000ff00) ^
lib/libcrypto/aes/aes_core.c
716
(Te1[(temp) & 0xff] & 0x000000ff);
lib/libcrypto/aes/aes_core.c
746
uint32_t temp;
lib/libcrypto/aes/aes_core.c
757
temp = rk[i];
lib/libcrypto/aes/aes_core.c
759
rk[j] = temp;
lib/libcrypto/aes/aes_core.c
760
temp = rk[i + 1];
lib/libcrypto/aes/aes_core.c
762
rk[j + 1] = temp;
lib/libcrypto/aes/aes_core.c
763
temp = rk[i + 2];
lib/libcrypto/aes/aes_core.c
765
rk[j + 2] = temp;
lib/libcrypto/aes/aes_core.c
766
temp = rk[i + 3];
lib/libcrypto/aes/aes_core.c
768
rk[j + 3] = temp;
lib/libcrypto/modes/ccm128.c
216
} temp;
lib/libcrypto/modes/ccm128.c
218
memcpy(temp.c, inp, 16);
lib/libcrypto/modes/ccm128.c
219
ctx->cmac.u[0] ^= temp.u[0];
lib/libcrypto/modes/ccm128.c
220
ctx->cmac.u[1] ^= temp.u[1];
lib/libcrypto/modes/ccm128.c
229
temp.u[0] ^= scratch.u[0];
lib/libcrypto/modes/ccm128.c
230
temp.u[1] ^= scratch.u[1];
lib/libcrypto/modes/ccm128.c
231
memcpy(out, temp.c, 16);
lib/libcrypto/modes/ccm128.c
298
} temp;
lib/libcrypto/modes/ccm128.c
303
memcpy(temp.c, inp, 16);
lib/libcrypto/modes/ccm128.c
304
ctx->cmac.u[0] ^= (scratch.u[0] ^= temp.u[0]);
lib/libcrypto/modes/ccm128.c
305
ctx->cmac.u[1] ^= (scratch.u[1] ^= temp.u[1]);
lib/libcurses/base/lib_set_term.c
126
SCREEN *temp;
lib/libcurses/base/lib_set_term.c
129
for (each_screen(temp)) {
lib/libcurses/base/lib_set_term.c
130
if (temp == sp) {
lib/libcurses/base/lib_set_term.c
138
last = temp;
lib/libcurses/base/new_pair.c
154
colorpair_t *temp = *(colorpair_t **) pp;
lib/libcurses/base/new_pair.c
155
result = (int) (temp - sp->_color_pairs);
lib/libcurses/tinfo/access.c
72
static char *temp;
lib/libcurses/tinfo/access.c
75
if ((temp = strdup(result)) != 0)
lib/libcurses/tinfo/access.c
76
result = temp;
lib/libcurses/tinfo/captoinfo.c
154
static char temp[2];
lib/libcurses/tinfo/captoinfo.c
155
temp[0] = (char) c;
lib/libcurses/tinfo/captoinfo.c
156
return save_string(s, temp);
lib/libcurses/tinfo/captoinfo.c
571
char temp[80];
lib/libcurses/tinfo/captoinfo.c
574
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
lib/libcurses/tinfo/captoinfo.c
577
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
lib/libcurses/tinfo/captoinfo.c
580
bufptr = save_string(bufptr, temp);
lib/libcurses/tinfo/db_iterator.c
87
char temp[PATH_MAX];
lib/libcurses/tinfo/db_iterator.c
88
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%s%s", name, DBM_SUFFIX);
lib/libcurses/tinfo/db_iterator.c
89
if (stat(temp, sb) == 0 && S_ISREG(sb->st_mode) && sb->st_size) {
lib/libcurses/tinfo/parse_entry.c
182
temp.nte_name = tp->ext_Names[offset];
lib/libcurses/tinfo/parse_entry.c
183
temp.nte_type = token_type;
lib/libcurses/tinfo/parse_entry.c
184
temp.nte_index = (short) tindex;
lib/libcurses/tinfo/parse_entry.c
185
temp.nte_link = -1;
lib/libcurses/tinfo/parse_entry.c
187
return &temp;
lib/libcurses/tinfo/parse_entry.c
703
char temp[3];
lib/libcurses/tinfo/parse_entry.c
704
temp[0] = (char) code;
lib/libcurses/tinfo/parse_entry.c
705
temp[1] = src[off];
lib/libcurses/tinfo/parse_entry.c
706
temp[2] = 0;
lib/libcurses/tinfo/parse_entry.c
707
_nc_safe_strcat(dst, temp);
lib/libcurses/tinfo/parse_entry.c
71
static struct name_table_entry temp;
lib/libcurses/tinfo/read_termcap.c
821
char temp[PBUFSIZ];
lib/libcurses/tinfo/read_termcap.c
822
temp[0] = 0;
lib/libcurses/tinfo/read_termcap.c
825
&& strlen(home) < sizeof(temp) - 10) { /* setup path */
lib/libcurses/tinfo/read_termcap.c
826
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
lib/libcurses/tinfo/read_termcap.c
830
_nc_STRCAT(temp, ".termcap", sizeof(temp));
lib/libcurses/tinfo/read_termcap.c
831
_nc_safe_strcat(&desc, temp);
lib/libcurses/tinfo/read_termcap.c
914
char temp[PATH_MAX];
lib/libcurses/tinfo/read_termcap.c
916
_nc_str_init(&desc, temp, sizeof(temp));
lib/libcurses/tinfo/read_termcap.c
919
if (_nc_access(temp, R_OK) == 0) {
lib/libcurses/tinfo/read_termcap.c
922
if ((the_source = strdup(temp)) != 0)
lib/libcurses/trace/visbuf.c
222
char temp[CCHARW_MAX + 80];
lib/libcurses/trace/visbuf.c
223
int j = wctomb(temp, c), k;
lib/libcurses/trace/visbuf.c
225
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
lib/libcurses/trace/visbuf.c
227
j = (int) strlen(temp);
lib/libcurses/trace/visbuf.c
230
tp = VisChar(tp, UChar(temp[k]), WideLen(len));
lib/libcurses/trace/visbuf.c
332
char temp[80];
lib/libcurses/trace/visbuf.c
344
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
lib/libcurses/trace/visbuf.c
348
(void) _nc_trace_bufcat(bufnum, temp);
lib/libcurses/trace/visbuf.c
352
VisChar(temp, UChar(PUTC_buf[k]), sizeof(temp));
lib/libcurses/trace/visbuf.c
353
(void) _nc_trace_bufcat(bufnum, temp);
lib/libcurses/trace/visbuf.c
359
char temp[80];
lib/libcurses/trace/visbuf.c
360
VisChar(temp, UChar(buf[j]), sizeof(temp));
lib/libcurses/trace/visbuf.c
361
(void) _nc_trace_bufcat(bufnum, temp);
lib/libcurses/tty/tty_update.c
321
chtype temp = UChar(SP_PARM->_acs_map[c8]);
lib/libcurses/tty/tty_update.c
322
if (temp) {
lib/libcurses/tty/tty_update.c
324
SetChar(my_ch, temp, AttrOf(attr));
lib/libcurses/tty/tty_update.c
336
chtype temp = UChar(SP_PARM->_acs_map[j]);
lib/libcurses/tty/tty_update.c
338
if (temp != 0) {
lib/libcurses/tty/tty_update.c
339
SetChar(my_ch, temp, AttrOf(attr));
lib/libcurses/tty/tty_update.c
636
NCURSES_CH_T temp;
lib/libcurses/tty/tty_update.c
645
temp = ntext0;
lib/libcurses/tty/tty_update.c
646
if ((AttrOf(temp) & A_ALTCHARSET) &&
lib/libcurses/tty/tty_update.c
648
(SP_PARM->_acs_map[CharOf(temp)] & A_CHARTEXT) != 0) {
lib/libcurses/tty/tty_update.c
649
SetChar(temp,
lib/libcurses/tty/tty_update.c
655
CharOf(temp),
lib/libcurses/widechar/charable.c
57
char temp[MB_LEN_MAX];
lib/libcurses/widechar/charable.c
58
result = wctomb(temp, ch);
lib/libcurses/widechar/charable.c
59
if (strlen(temp) == 1)
lib/libcurses/widechar/charable.c
60
result = UChar(temp[0]);
lib/libcurses/widechar/charable.c
76
char temp[2];
lib/libcurses/widechar/charable.c
77
temp[0] = ch;
lib/libcurses/widechar/charable.c
78
temp[1] = '\0';
lib/libcurses/widechar/charable.c
79
if (mbtowc(&convert, temp, 1) >= 0)
lib/libcurses/widechar/lib_unget_wch.c
57
wchar_t temp[2];
lib/libcurses/widechar/lib_unget_wch.c
58
const wchar_t *tempp = temp;
lib/libcurses/widechar/lib_unget_wch.c
59
temp[0] = source;
lib/libcurses/widechar/lib_unget_wch.c
60
temp[1] = 0;
lib/libcurses/widechar/widechars.c
100
count = _nc_mbtowc(&temp, s, n);
lib/libcurses/widechar/widechars.c
104
&temp,
lib/libcurses/widechar/widechars.c
97
wchar_t temp;
lib/libedit/filecomplete.c
102
temp = malloc(tempsz);
lib/libedit/filecomplete.c
103
if (temp == NULL)
lib/libedit/filecomplete.c
105
(void)snprintf(temp, tempsz, "%s/%s", pass->pw_dir, txt);
lib/libedit/filecomplete.c
107
return temp;
lib/libedit/filecomplete.c
125
char *temp;
lib/libedit/filecomplete.c
129
temp = strrchr(text, '/');
lib/libedit/filecomplete.c
130
if (temp) {
lib/libedit/filecomplete.c
131
size_t sz = strlen(temp + 1) + 1;
lib/libedit/filecomplete.c
133
temp++;
lib/libedit/filecomplete.c
141
(void)strlcpy(filename, temp, sz);
lib/libedit/filecomplete.c
142
len = temp - text; /* including last slash */
lib/libedit/filecomplete.c
225
temp = malloc(tempsz);
lib/libedit/filecomplete.c
226
if (temp == NULL)
lib/libedit/filecomplete.c
228
(void)snprintf(temp, tempsz, "%s%s", dirname, entry->d_name);
lib/libedit/filecomplete.c
232
temp = NULL;
lib/libedit/filecomplete.c
235
return temp;
lib/libedit/filecomplete.c
396
wchar_t *temp;
lib/libedit/filecomplete.c
424
temp = reallocarray(NULL, len + 1, sizeof(*temp));
lib/libedit/filecomplete.c
425
(void)wcsncpy(temp, ctemp, len);
lib/libedit/filecomplete.c
426
temp[len] = '\0';
lib/libedit/filecomplete.c
438
ct_encode_string(temp, &el->el_scratch),
lib/libedit/filecomplete.c
445
ct_encode_string(temp, &el->el_scratch), complet_func);
lib/libedit/filecomplete.c
541
free(temp);
lib/libedit/filecomplete.c
66
char *temp;
lib/libedit/filecomplete.c
73
temp = strchr(txt + 1, '/');
lib/libedit/filecomplete.c
74
if (temp == NULL) {
lib/libedit/filecomplete.c
75
temp = strdup(txt + 1);
lib/libedit/filecomplete.c
76
if (temp == NULL)
lib/libedit/filecomplete.c
79
len = temp - txt + 1; /* text until string after slash */
lib/libedit/filecomplete.c
80
temp = malloc(len);
lib/libedit/filecomplete.c
81
if (temp == NULL)
lib/libedit/filecomplete.c
83
(void)strncpy(temp, txt + 1, len - 2);
lib/libedit/filecomplete.c
84
temp[len - 2] = '\0';
lib/libedit/filecomplete.c
86
if (temp[0] == 0) {
lib/libedit/filecomplete.c
90
if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0)
lib/libedit/filecomplete.c
93
free(temp); /* value no more needed */
lib/libedit/readline.c
1079
char **result = NULL, *temp, delim = '\0';
lib/libedit/readline.c
1113
temp = malloc(len + 1);
lib/libedit/readline.c
1114
if (temp == NULL) {
lib/libedit/readline.c
1120
(void)strncpy(temp, &str[start], len);
lib/libedit/readline.c
1121
temp[len] = '\0';
lib/libedit/readline.c
1122
result[idx++] = temp;
lib/libexpat/lib/xmlparse.c
2360
void *const temp = XML_GetBuffer(parser, nLeftOver);
lib/libexpat/lib/xmlparse.c
2365
if (temp == NULL) {
lib/libexpat/lib/xmlparse.c
3090
char *temp = REALLOC(parser, tag->buf.raw, bufSize);
lib/libexpat/lib/xmlparse.c
3091
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
3097
tag->name.str = (XML_Char *)temp;
lib/libexpat/lib/xmlparse.c
3103
= (XML_Char *)temp + (tag->name.localPart - tag->buf.str);
lib/libexpat/lib/xmlparse.c
3104
tag->buf.raw = temp;
lib/libexpat/lib/xmlparse.c
3105
tag->bufEnd = temp + bufSize;
lib/libexpat/lib/xmlparse.c
3106
rawNameBuf = temp + nameLen;
lib/libexpat/lib/xmlparse.c
3462
char *temp = REALLOC(parser, tag->buf.raw, bufSize);
lib/libexpat/lib/xmlparse.c
3463
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
3465
tag->buf.raw = temp;
lib/libexpat/lib/xmlparse.c
3466
tag->bufEnd = temp + bufSize;
lib/libexpat/lib/xmlparse.c
3467
toPtr = (XML_Char *)temp + convLen;
lib/libexpat/lib/xmlparse.c
3864
ATTRIBUTE *const temp = REALLOC(parser, parser->m_atts,
lib/libexpat/lib/xmlparse.c
3866
if (temp == NULL) {
lib/libexpat/lib/xmlparse.c
3870
parser->m_atts = temp;
lib/libexpat/lib/xmlparse.c
4057
NS_ATT *const temp
lib/libexpat/lib/xmlparse.c
4059
if (! temp) {
lib/libexpat/lib/xmlparse.c
4064
parser->m_nsAtts = temp;
lib/libexpat/lib/xmlparse.c
4471
XML_Char *temp
lib/libexpat/lib/xmlparse.c
4473
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
4475
b->uri = temp;
lib/libexpat/lib/xmlparse.c
7242
DEFAULT_ATTRIBUTE *const temp = REALLOC(
lib/libexpat/lib/xmlparse.c
7244
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
7247
type->defaultAtts = temp;
lib/libexpat/lib/xmlparse.c
8202
BLOCK *temp;
lib/libexpat/lib/xmlparse.c
8224
temp = REALLOC(pool->parser, pool->blocks, bytesToAllocate);
lib/libexpat/lib/xmlparse.c
8225
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
8227
pool->blocks = temp;
lib/libexpat/lib/xmlparse.c
8316
CONTENT_SCAFFOLD *temp;
lib/libexpat/lib/xmlparse.c
8332
temp = REALLOC(parser, dtd->scaffold,
lib/libexpat/lib/xmlparse.c
8334
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
8338
temp = MALLOC(parser, INIT_SCAFFOLD_ELEMENTS * sizeof(CONTENT_SCAFFOLD));
lib/libexpat/lib/xmlparse.c
8339
if (temp == NULL)
lib/libexpat/lib/xmlparse.c
8343
dtd->scaffold = temp;
lib/libm/src/e_jn.c
101
temp = b;
lib/libm/src/e_jn.c
103
a = temp;
lib/libm/src/e_jn.c
114
temp = x*0.5; b = temp;
lib/libm/src/e_jn.c
117
b *= temp; /* b = (x/2)^n */
lib/libm/src/e_jn.c
178
temp = b;
lib/libm/src/e_jn.c
181
a = temp;
lib/libm/src/e_jn.c
186
temp = b;
lib/libm/src/e_jn.c
189
a = temp;
lib/libm/src/e_jn.c
210
double a, b, temp;
lib/libm/src/e_jn.c
241
case 0: temp = sin(x)-cos(x); break;
lib/libm/src/e_jn.c
242
case 1: temp = -sin(x)-cos(x); break;
lib/libm/src/e_jn.c
243
case 2: temp = -sin(x)+cos(x); break;
lib/libm/src/e_jn.c
244
case 3: temp = sin(x)+cos(x); break;
lib/libm/src/e_jn.c
246
b = invsqrtpi*temp/sqrt(x);
lib/libm/src/e_jn.c
254
temp = b;
lib/libm/src/e_jn.c
257
a = temp;
lib/libm/src/e_jn.c
53
double a, b, temp, di;
lib/libm/src/e_jn.c
91
case 0: temp = cos(x)+sin(x); break;
lib/libm/src/e_jn.c
92
case 1: temp = -cos(x)+sin(x); break;
lib/libm/src/e_jn.c
93
case 2: temp = -cos(x)-sin(x); break;
lib/libm/src/e_jn.c
94
case 3: temp = cos(x)-sin(x); break;
lib/libm/src/e_jn.c
96
b = invsqrtpi*temp/sqrt(x);
lib/libm/src/e_jnf.c
131
temp = b;
lib/libm/src/e_jnf.c
134
a = temp;
lib/libm/src/e_jnf.c
139
temp = b;
lib/libm/src/e_jnf.c
142
a = temp;
lib/libm/src/e_jnf.c
163
float a, b, temp;
lib/libm/src/e_jnf.c
185
temp = b;
lib/libm/src/e_jnf.c
188
a = temp;
lib/libm/src/e_jnf.c
29
float a, b, temp, di;
lib/libm/src/e_jnf.c
55
temp = b;
lib/libm/src/e_jnf.c
57
a = temp;
lib/libm/src/e_jnf.c
67
temp = x*(float)0.5; b = temp;
lib/libm/src/e_jnf.c
70
b *= temp; /* b = (x/2)^n */
lib/libmenu/m_global.c
264
wchar_t *temp = 0;
lib/libmenu/m_global.c
267
&& (temp = typeMalloc(wchar_t, 2 + count)) != 0)
lib/libmenu/m_global.c
272
mbstowcs(temp, item->str, (unsigned)count);
lib/libmenu/m_global.c
275
int test = wcwidth(temp[n]);
lib/libmenu/m_global.c
281
free(temp);
lib/libmenu/m_item_new.c
69
wchar_t *temp = 0;
lib/libmenu/m_item_new.c
74
&& (temp = typeCalloc(wchar_t, (2 + (unsigned)count))) != 0)
lib/libmenu/m_item_new.c
78
mbstowcs(temp, s, (unsigned)count);
lib/libmenu/m_item_new.c
80
if (!iswprint((wint_t)temp[n]))
lib/libmenu/m_item_new.c
85
free(temp);
lib/libpanel/panel.c
64
char temp[32];
lib/libpanel/panel.c
67
_nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%p", ptr);
lib/libpanel/panel.c
69
_nc_STRCPY(temp, "<null>", sizeof(temp));
lib/libpanel/panel.c
70
return _nc_visbuf2(n, temp);
lib/libusbhid/parse.c
540
uint32_t temp;
lib/libusbhid/parse.c
555
temp = h.pos + (h.report_size * h.report_count);
lib/libusbhid/parse.c
557
if (hpos < temp)
lib/libusbhid/parse.c
558
hpos = temp;
lib/libusbhid/parse.c
567
temp = 0;
lib/libusbhid/parse.c
569
temp = hpos - lpos;
lib/libusbhid/parse.c
572
return ((temp + 7) / 8);
regress/lib/libc/cephes/ieee.c
1841
unsigned short temp[NI+1];
regress/lib/libc/cephes/ieee.c
1842
emovi(yy, temp);
regress/lib/libc/cephes/ieee.c
1843
eshup1(temp);
regress/lib/libc/cephes/ieee.c
1844
emovo(temp,y);
regress/lib/libc/cephes/ieee.c
4052
unsigned short temp[NI], num[NI], sq[NI], xx[NI];
regress/lib/libc/cephes/ieee.c
4128
temp[k] = sq[k];
regress/lib/libc/cephes/ieee.c
4129
eshup1( temp );
regress/lib/libc/cephes/ieee.c
4130
eaddm( sqrndbit, temp );
regress/lib/libc/cephes/ieee.c
4132
if( ecmpm( temp, num ) <= 0 )
regress/lib/libc/cephes/ieee.c
4134
esubm( temp, num );
regress/sys/kern/access/access.c
118
remove(temp);
regress/sys/kern/access/access.c
138
if (mkdtemp(temp) == NULL)
regress/sys/kern/access/access.c
141
if (chdir(temp)) {
regress/sys/kern/access/access.c
143
remove(temp);
regress/sys/kern/access/access.c
146
if (chmod(temp, 0755))
regress/sys/kern/access/access.c
147
err(1, "chmod %s %o", temp, 0755);
regress/sys/kern/access/access.c
30
char temp[] = "/tmp/accessXXXXXXXXX";
regress/sys/kern/dup2/dup2test.c
15
char temp[] = "/tmp/dup2XXXXXXXXX";
regress/sys/kern/dup2/dup2test.c
17
if ((orgfd = mkstemp(temp)) < 0)
regress/sys/kern/dup2/dup2test.c
19
remove(temp);
regress/sys/kern/dup2_self/dup2_self.c
35
char temp[] = "/tmp/dup2XXXXXXXXX";
regress/sys/kern/dup2_self/dup2_self.c
37
if ((orgfd = mkstemp(temp)) < 0)
regress/sys/kern/dup2_self/dup2_self.c
39
remove(temp);
regress/sys/kern/fcntl_dup/fcntl_dup.c
15
char temp[] = "/tmp/dup2XXXXXXXXX";
regress/sys/kern/fcntl_dup/fcntl_dup.c
17
if ((orgfd = mkstemp(temp)) < 0)
regress/sys/kern/fcntl_dup/fcntl_dup.c
19
remove(temp);
regress/sys/kern/pread/pread.c
16
char temp[] = "/tmp/dup2XXXXXXXXX";
regress/sys/kern/pread/pread.c
21
if ((fd = mkstemp(temp)) < 0)
regress/sys/kern/pread/pread.c
23
remove(temp);
regress/sys/kern/preadv/preadv.c
18
char temp[] = "/tmp/dup2XXXXXXXXX";
regress/sys/kern/preadv/preadv.c
24
if ((fd = mkstemp(temp)) < 0)
regress/sys/kern/preadv/preadv.c
26
remove(temp);
regress/sys/kern/pwrite/pwrite.c
17
char temp[] = "/tmp/pwriteXXXXXXXXX";
regress/sys/kern/pwrite/pwrite.c
24
if ((fd = mkstemp(temp)) < 0)
regress/sys/kern/pwrite/pwrite.c
26
remove(temp);
regress/sys/kern/pwritev/pwritev.c
19
char temp[] = "/tmp/pwritevXXXXXXXXX";
regress/sys/kern/pwritev/pwritev.c
27
if ((fd = mkstemp(temp)) < 0)
regress/sys/kern/pwritev/pwritev.c
29
remove(temp);
sbin/ifconfig/sff.c
730
struct sff_thresholds temp, vcc, tx, rx, bias;
sbin/ifconfig/sff.c
751
temp.thresholds[i] = if_sff_int(&pg3,
sbin/ifconfig/sff.c
770
temp.thresholds[SFF_THRESH_HI_ALARM],
sbin/ifconfig/sff.c
771
temp.thresholds[SFF_THRESH_LO_ALARM],
sbin/ifconfig/sff.c
772
temp.thresholds[SFF_THRESH_HI_WARN],
sbin/ifconfig/sff.c
773
temp.thresholds[SFF_THRESH_LO_WARN]);
sbin/ifconfig/sff.c
822
int16_t temp;
sbin/ifconfig/sff.c
839
temp = if_sff_int(pg0, SFF8436_TEMP);
sbin/ifconfig/sff.c
841
if ((uint16_t)temp == 0 || (uint16_t)temp == 0xffffU) {
sbin/ifconfig/sff.c
853
printf("temp: %.02f%s", temp / SFF_TEMP_FACTOR, " C");
sbin/restore/symtab.c
437
struct entry temp, *tentry;
sbin/restore/symtab.c
465
tep = &temp;
sbin/unwind/libunbound/libunbound/libworker.c
521
struct regional* temp, enum sec_status msg_security)
sbin/unwind/libunbound/libunbound/libworker.c
526
rep = parse_reply_in_temp_region(buf, temp, &rq);
sbin/unwind/libunbound/libunbound/libworker.h
155
struct regional* temp, enum sec_status msg_security);
sbin/unwind/libunbound/services/authzone.c
3543
struct regional* temp, struct dns_msg* msg)
sbin/unwind/libunbound/services/authzone.c
3553
(int)FLAGS_GET_RCODE(msg->rep->flags), edns, repinfo, temp, env->now_tv)
sbin/unwind/libunbound/services/authzone.c
3557
buf, 0, 0, temp, udpsize, edns,
sbin/unwind/libunbound/services/authzone.c
3569
struct regional* temp, int rcode)
sbin/unwind/libunbound/services/authzone.c
3577
rcode, edns, repinfo, temp, env->now_tv))
sbin/unwind/libunbound/services/authzone.c
3587
struct regional* temp)
sbin/unwind/libunbound/services/authzone.c
3637
auth_error_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/authzone.c
3643
r = auth_zone_generate_answer(z, &zqinfo, temp, &msg, &fallback);
sbin/unwind/libunbound/services/authzone.c
3653
auth_error_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/authzone.c
3655
else auth_answer_encode(qinfo, env, edns, repinfo, buf, temp, msg);
sbin/unwind/libunbound/services/authzone.c
5772
struct regional* temp = env->scratch;
sbin/unwind/libunbound/services/authzone.c
5778
rep = parse_reply_in_temp_region(buf, temp, &rq);
sbin/unwind/libunbound/services/authzone.c
5801
regional_free_all(temp);
sbin/unwind/libunbound/services/authzone.c
6865
struct regional* temp = env->scratch;
sbin/unwind/libunbound/services/authzone.c
6871
rep = parse_reply_in_temp_region(buf, temp, &rq);
sbin/unwind/libunbound/services/authzone.c
6894
regional_free_all(temp);
sbin/unwind/libunbound/services/authzone.c
8403
struct regional* temp = env->scratch;
sbin/unwind/libunbound/services/authzone.c
8407
rep = parse_reply_in_temp_region(buf, temp, &rq);
sbin/unwind/libunbound/services/authzone.h
560
struct regional* temp);
sbin/unwind/libunbound/services/localzone.c
1341
struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec,
sbin/unwind/libunbound/services/localzone.c
1362
repinfo, temp, env->now_tv) || !reply_info_answer_encode(qinfo, &rep,
sbin/unwind/libunbound/services/localzone.c
1364
buf, 0, 0, temp, udpsize, edns, (int)(edns->bits&EDNS_DO), 0)) {
sbin/unwind/libunbound/services/localzone.c
1376
struct regional* temp, int rcode, int r, int ede_code,
sbin/unwind/libunbound/services/localzone.c
1385
rcode, edns, repinfo, temp, env->now_tv))
sbin/unwind/libunbound/services/localzone.c
1389
edns_opt_list_append_ede(&edns->opt_list_out, temp,
sbin/unwind/libunbound/services/localzone.c
1401
struct regional* temp)
sbin/unwind/libunbound/services/localzone.c
1436
temp, sizeof(struct packed_rrset_data)
sbin/unwind/libunbound/services/localzone.c
1456
d->rr_len = (size_t*)regional_alloc_zero(temp,
sbin/unwind/libunbound/services/localzone.c
1458
d->rr_data = (uint8_t**)regional_alloc_zero(temp,
sbin/unwind/libunbound/services/localzone.c
1460
d->rr_ttl = (time_t*)regional_alloc_zero(temp,
sbin/unwind/libunbound/services/localzone.c
1474
d->rr_data[d->count] = regional_alloc_init(temp,
sbin/unwind/libunbound/services/localzone.c
1488
struct ub_packed_rrset_key* r, struct regional* temp)
sbin/unwind/libunbound/services/localzone.c
1490
int result = local_data_find_tag_datas(qinfo, list, r, temp);
sbin/unwind/libunbound/services/localzone.c
1498
regional_alloc_zero(temp, sizeof(struct local_rrset));
sbin/unwind/libunbound/services/localzone.c
1502
regional_alloc_init(temp, r, sizeof(*r));
sbin/unwind/libunbound/services/localzone.c
1513
struct regional* temp, int labs, struct local_data** ldp,
sbin/unwind/libunbound/services/localzone.c
1532
if(find_tag_datas(qinfo, tag_datas[tag], &r, temp)) {
sbin/unwind/libunbound/services/localzone.c
1542
return local_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1565
regional_alloc_zero(temp, sizeof(struct local_rrset));
sbin/unwind/libunbound/services/localzone.c
1569
temp, lr->rrset, sizeof(*lr->rrset));
sbin/unwind/libunbound/services/localzone.c
1589
buf, temp, LDNS_RCODE_YXDOMAIN,
sbin/unwind/libunbound/services/localzone.c
1601
d = (struct packed_rrset_data*)regional_alloc_zero(temp,
sbin/unwind/libunbound/services/localzone.c
1636
return local_encode(qinfo, env, edns, repinfo, buf, temp, &r, 1,
sbin/unwind/libunbound/services/localzone.c
1639
return local_encode(qinfo, env, edns, repinfo, buf, temp, lr->rrset, 1,
sbin/unwind/libunbound/services/localzone.c
1684
struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp,
sbin/unwind/libunbound/services/localzone.c
1696
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1721
return local_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1723
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1733
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1772
return local_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1777
temp, LDNS_RCODE_NOERROR,
sbin/unwind/libunbound/services/localzone.c
1789
return local_encode(qinfo, env, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/localzone.c
1792
local_error_encode(qinfo, env, edns, repinfo, buf, temp, rcode,
sbin/unwind/libunbound/services/localzone.c
1876
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
sbin/unwind/libunbound/services/localzone.c
1959
&& local_data_answer(z, env, qinfo, edns, repinfo, buf, temp, labs,
sbin/unwind/libunbound/services/localzone.c
1966
r = local_zones_zone_answer(z, env, qinfo, edns, repinfo, buf, temp, ld, lzt);
sbin/unwind/libunbound/services/localzone.h
334
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
sbin/unwind/libunbound/services/localzone.h
355
struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp,
sbin/unwind/libunbound/services/localzone.h
473
struct regional* temp);
sbin/unwind/libunbound/services/localzone.h
619
struct regional* temp, int labs, struct local_data** ldp,
sbin/unwind/libunbound/services/rpz.c
1776
struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec,
sbin/unwind/libunbound/services/rpz.c
1808
repinfo, temp, env->now_tv) ||
sbin/unwind/libunbound/services/rpz.c
1811
buf, 0, 0, temp, udpsize, edns, (int)(edns->bits&EDNS_DO), 0)) {
sbin/unwind/libunbound/services/rpz.c
1823
struct regional* temp)
sbin/unwind/libunbound/services/rpz.c
1838
return respip_copy_rrset(&csoa, temp);
sbin/unwind/libunbound/services/rpz.c
1845
struct regional* temp, struct auth_zone* auth_zone)
sbin/unwind/libunbound/services/rpz.c
1869
rp = respip_copy_rrset(rrset->rrset, temp);
sbin/unwind/libunbound/services/rpz.c
1884
rsoa = make_soa_ubrrset(auth_zone, soa, temp);
sbin/unwind/libunbound/services/rpz.c
1892
rpz_local_encode(env, qinfo, edns, repinfo, buf, temp, rp,
sbin/unwind/libunbound/services/rpz.c
1900
struct query_info* qinfo, struct regional* temp)
sbin/unwind/libunbound/services/rpz.c
1904
qinfo->local_alias = regional_alloc_zero(temp,
sbin/unwind/libunbound/services/rpz.c
1908
qinfo->local_alias->rrset = respip_copy_rrset(r->cname_override, temp);
sbin/unwind/libunbound/services/rpz.c
2239
struct edns_data* edns, sldns_buffer* buf, struct regional* temp,
sbin/unwind/libunbound/services/rpz.c
2245
if(!rpz_apply_cname_override_action(r, qinfo, temp))
sbin/unwind/libunbound/services/rpz.c
2256
edns, repinfo, buf, temp, dname_count_labels(qinfo->qname),
sbin/unwind/libunbound/services/rpz.c
2267
ret = local_zones_zone_answer(z, env, qinfo, edns, repinfo, buf, temp,
sbin/unwind/libunbound/services/rpz.c
2663
sldns_buffer* buf, struct regional* temp,
sbin/unwind/libunbound/services/rpz.c
2702
edns, repinfo, buf, temp, *a_out);
sbin/unwind/libunbound/services/rpz.c
2706
temp)) {
sbin/unwind/libunbound/services/rpz.c
2713
repinfo, buf, temp, 0 /* no local data used */,
sbin/unwind/libunbound/services/rpz.c
2741
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
sbin/unwind/libunbound/services/rpz.c
2751
edns, repinfo, taglist, taglen, stats, buf, temp, &z, &a, &r,
sbin/unwind/libunbound/services/rpz.c
2794
ret = rpz_synthesize_qname_localdata(env, r, z, lzt, qinfo, edns, buf, temp,
sbin/unwind/libunbound/services/rpz.h
182
struct regional* temp, struct comm_reply* repinfo,
sbin/unwind/libunbound/util/module.c
329
struct inplace_cb* temp = env->inplace_cb_lists[type];
sbin/unwind/libunbound/util/module.c
332
while(temp) {
sbin/unwind/libunbound/util/module.c
333
if(temp->id == id) {
sbin/unwind/libunbound/util/module.c
335
env->inplace_cb_lists[type] = temp->next;
sbin/unwind/libunbound/util/module.c
336
free(temp);
sbin/unwind/libunbound/util/module.c
337
temp = env->inplace_cb_lists[type];
sbin/unwind/libunbound/util/module.c
340
prev->next = temp->next;
sbin/unwind/libunbound/util/module.c
341
free(temp);
sbin/unwind/libunbound/util/module.c
342
temp = prev->next;
sbin/unwind/libunbound/util/module.c
346
prev = temp;
sbin/unwind/libunbound/util/module.c
347
temp = temp->next;
sbin/unwind/libunbound/util/netevent.c
6369
sldns_buffer* temp)
sbin/unwind/libunbound/util/netevent.c
6407
c->http_temp = temp;
sbin/unwind/libunbound/util/netevent.h
679
void* callback_arg, struct sldns_buffer* temp);
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
612
TYPE temp; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
618
temp = __C(__C(CHIP,_io_read_),BYTES)(v, h, o); \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
622
*a++ = temp & 0xff; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
623
temp >>= 8; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
636
TYPE temp; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
640
temp = 0; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
642
temp <<= 8; \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
644
temp |= *(a + i); \
sys/arch/alpha/pci/pci_bwx_bus_io_chipdep.c
646
__C(__C(CHIP,_io_write_),BYTES)(v, h, o, temp); \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
650
TYPE temp; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
656
temp = __C(__C(CHIP,_mem_read_),BYTES)(v, h, o); \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
660
*a++ = temp & 0xff; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
661
temp >>= 8; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
674
TYPE temp; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
678
temp = 0; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
680
temp <<= 8; \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
682
temp |= *(a + i); \
sys/arch/alpha/pci/pci_bwx_bus_mem_chipdep.c
684
__C(__C(CHIP,_mem_write_),BYTES)(v, h, o, temp); \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
721
TYPE temp; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
727
temp = __C(__C(CHIP,_io_read_),BYTES)(v, h, o); \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
731
*a++ = temp & 0xff; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
732
temp >>= 8; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
745
TYPE temp; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
749
temp = 0; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
751
temp <<= 8; \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
753
temp |= *(a + i); \
sys/arch/alpha/pci/pci_swiz_bus_io_chipdep.c
755
__C(__C(CHIP,_io_write_),BYTES)(v, h, o, temp); \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1002
*a++ = temp & 0xff; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1003
temp >>= 8; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1016
TYPE temp; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1020
temp = 0; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1022
temp <<= 8; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1024
temp |= *(a + i); \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
1026
__C(__C(CHIP,_mem_write_),BYTES)(v, h, o, temp); \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
992
TYPE temp; \
sys/arch/alpha/pci/pci_swiz_bus_mem_chipdep.c
998
temp = __C(__C(CHIP,_mem_read_),BYTES)(v, h, o); \
sys/arch/hppa/spmath/fcnvfx.c
125
register unsigned int src, temp, resultp2;
sys/arch/hppa/spmath/fcnvfx.c
162
temp = src;
sys/arch/hppa/spmath/fcnvfx.c
163
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfx.c
164
Dint_from_sgl_mantissa(temp,src_exponent,resultp1,resultp2);
sys/arch/hppa/spmath/fcnvfx.c
29
register unsigned int src, temp;
sys/arch/hppa/spmath/fcnvfx.c
58
temp = src;
sys/arch/hppa/spmath/fcnvfx.c
59
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfx.c
60
Int_from_sgl_mantissa(temp,src_exponent);
sys/arch/hppa/spmath/fcnvfx.c
61
if (Sgl_isone_sign(src)) result = -Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfx.c
62
else result = Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfx.c
78
|| (Sgl_isone_lowmantissa(temp))) {
sys/arch/hppa/spmath/fcnvfxt.c
127
temp = src;
sys/arch/hppa/spmath/fcnvfxt.c
128
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfxt.c
129
Dint_from_sgl_mantissa(temp,src_exponent,resultp1,resultp2);
sys/arch/hppa/spmath/fcnvfxt.c
30
register unsigned int src, temp;
sys/arch/hppa/spmath/fcnvfxt.c
58
temp = src;
sys/arch/hppa/spmath/fcnvfxt.c
59
Sgl_clear_signexponent_set_hidden(temp);
sys/arch/hppa/spmath/fcnvfxt.c
60
Int_from_sgl_mantissa(temp,src_exponent);
sys/arch/hppa/spmath/fcnvfxt.c
61
if (Sgl_isone_sign(src)) result = -Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfxt.c
62
else result = Sgl_all(temp);
sys/arch/hppa/spmath/fcnvfxt.c
91
register unsigned int src, temp, resultp2;
sys/arch/hppa/spmath/mpyaccs.c
22
struct mdsfu_register temp;
sys/arch/hppa/spmath/mpyaccs.c
25
s_xmpy(&opnd1,&opnd2,&temp);
sys/arch/hppa/spmath/mpyaccs.c
28
if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
sys/arch/hppa/spmath/mpyaccs.c
34
sign = result_hi ^ temp.rslt_hi;
sys/arch/hppa/spmath/mpyaccs.c
35
result_hi += temp.rslt_hi + carry;
sys/arch/hppa/spmath/mpyaccs.c
36
if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0)
sys/arch/hppa/spmath/mpyaccu.c
22
struct mdsfu_register temp;
sys/arch/hppa/spmath/mpyaccu.c
25
u_xmpy(&opnd1,&opnd2,&temp);
sys/arch/hppa/spmath/mpyaccu.c
28
if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
sys/arch/hppa/spmath/mpyaccu.c
34
if ((result_hi += (unsigned)temp.rslt_hi + carry) <
sys/arch/hppa/spmath/mpyaccu.c
35
(unsigned)temp.rslt_hi)
sys/arch/luna88k/stand/boot/sc.c
501
u_char ints, temp;
sys/arch/luna88k/stand/boot/sc.c
516
temp = hd->scsi_temp & ~(1 << SCSI_ID);
sys/arch/luna88k/stand/boot/sc.c
517
for (i = 0; temp != 1; i++) {
sys/arch/luna88k/stand/boot/sc.c
518
temp >>= 1;
sys/arch/macppc/dev/thermal.c
107
int temp;
sys/arch/macppc/dev/thermal.c
111
temp = sensor->sensor->read(sensor->sensor);
sys/arch/macppc/dev/thermal.c
112
if (temp > 0) /* Use the previous temp in case of error */
sys/arch/macppc/dev/thermal.c
113
sensor->last_val = temp;
sys/arch/macppc/dev/thermal.c
145
temp = ulmin(sensor->last_val,
sys/arch/macppc/dev/thermal.c
147
frac_excess = (temp -
sys/arch/macppc/dev/thermal.c
149
(sensor->sensor->max_temp - temp + 1);
sys/arch/octeon/dev/octcf.c
686
uint16_t temp;
sys/arch/octeon/dev/octcf.c
687
temp = OCTCF_REG_READ(wd, 0x0);
sys/arch/octeon/dev/octcf.c
688
*ptr++ = swap16(temp);
sys/arch/octeon/dev/octcf.c
714
uint16_t temp = *ptr++;
sys/arch/octeon/dev/octcf.c
715
OCTCF_REG_WRITE(wd, 0x0, swap16(temp));
sys/arch/octeon/dev/octcf.c
779
uint16_t temp;
sys/arch/octeon/dev/octcf.c
780
temp = OCTCF_REG_READ(wd, 0x0);
sys/arch/octeon/dev/octcf.c
783
tb[count] = (temp & 0xff);
sys/arch/octeon/dev/octcf.c
784
tb[count+1] = (temp & 0xff00)>>8;
sys/arch/sparc64/dev/clkbrd.c
185
int8_t temp;
sys/arch/sparc64/dev/clkbrd.c
194
temp = clkbrd_temp[val];
sys/arch/sparc64/dev/clkbrd.c
196
temp = clkbrd_temp[sizeof(clkbrd_temp) - 1];
sys/arch/sparc64/dev/clkbrd.c
201
if (temp >= clkbrd_temp_warn)
sys/arch/sparc64/dev/clkbrd.c
203
if (temp >= clkbrd_temp_crit)
sys/arch/sparc64/dev/environ.c
139
int8_t temp;
sys/arch/sparc64/dev/environ.c
149
temp = environ_cpu2_temp[val];
sys/arch/sparc64/dev/environ.c
151
temp = 110;
sys/crypto/blf.c
390
u_int32_t temp;
sys/crypto/blf.c
392
temp = 0x00000000;
sys/crypto/blf.c
398
temp = (temp << 8) | data[j];
sys/crypto/blf.c
402
return temp;
sys/crypto/blf.c
411
u_int32_t temp;
sys/crypto/blf.c
417
temp = Blowfish_stream2word(key, keybytes, &j);
sys/crypto/blf.c
418
c->P[i] = c->P[i] ^ temp;
sys/crypto/blf.c
449
u_int32_t temp;
sys/crypto/blf.c
455
temp = Blowfish_stream2word(key, keybytes, &j);
sys/crypto/blf.c
456
c->P[i] = c->P[i] ^ temp;
sys/crypto/rijndael.c
629
u32 temp;
sys/crypto/rijndael.c
637
temp = rk[3];
sys/crypto/rijndael.c
639
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
sys/crypto/rijndael.c
640
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/crypto/rijndael.c
641
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
sys/crypto/rijndael.c
642
(Te1[(temp >> 24) ] & 0x000000ff) ^
sys/crypto/rijndael.c
657
temp = rk[ 5];
sys/crypto/rijndael.c
659
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
sys/crypto/rijndael.c
660
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/crypto/rijndael.c
661
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
sys/crypto/rijndael.c
662
(Te1[(temp >> 24) ] & 0x000000ff) ^
sys/crypto/rijndael.c
679
temp = rk[ 7];
sys/crypto/rijndael.c
681
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
sys/crypto/rijndael.c
682
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/crypto/rijndael.c
683
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
sys/crypto/rijndael.c
684
(Te1[(temp >> 24) ] & 0x000000ff) ^
sys/crypto/rijndael.c
692
temp = rk[11];
sys/crypto/rijndael.c
694
(Te2[(temp >> 24) ] & 0xff000000) ^
sys/crypto/rijndael.c
695
(Te3[(temp >> 16) & 0xff] & 0x00ff0000) ^
sys/crypto/rijndael.c
696
(Te0[(temp >> 8) & 0xff] & 0x0000ff00) ^
sys/crypto/rijndael.c
697
(Te1[(temp ) & 0xff] & 0x000000ff);
sys/crypto/rijndael.c
716
u32 temp;
sys/crypto/rijndael.c
723
temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
sys/crypto/rijndael.c
724
temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp;
sys/crypto/rijndael.c
725
temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp;
sys/crypto/rijndael.c
726
temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp;
sys/dev/acpi/acpithinkpad.c
870
thinkpad_get_temp(struct acpithinkpad_softc *sc, int idx, int64_t *temp)
sys/dev/acpi/acpithinkpad.c
877
temp) != 0)
sys/dev/acpi/ccpmic.c
190
sc->sc_lpat[i].temp = aml_val2int(res.v_package[2 * i]);
sys/dev/acpi/ccpmic.c
217
temp0 = lpat[i - 1].temp;
sys/dev/acpi/ccpmic.c
219
delta_temp = lpat[i].temp - temp0;
sys/dev/acpi/ccpmic.c
238
int32_t temp;
sys/dev/acpi/ccpmic.c
261
temp = ccpmic_raw_to_temp(sc, raw);
sys/dev/acpi/ccpmic.c
262
if (temp < 0)
sys/dev/acpi/ccpmic.c
265
*value = temp;
sys/dev/acpi/ccpmic.c
61
int32_t temp;
sys/dev/acpi/tipmic.c
235
sc->sc_lpat[i].temp = aml_val2int(res.v_package[2 * i]);
sys/dev/acpi/tipmic.c
262
temp0 = lpat[i - 1].temp;
sys/dev/acpi/tipmic.c
264
delta_temp = lpat[i].temp - temp0;
sys/dev/acpi/tipmic.c
303
int32_t temp;
sys/dev/acpi/tipmic.c
378
temp = tipmic_raw_to_temp(sc, raw);
sys/dev/acpi/tipmic.c
379
if (temp < 0)
sys/dev/acpi/tipmic.c
382
*value = temp;
sys/dev/acpi/tipmic.c
68
int32_t temp;
sys/dev/fdt/amltemp.c
198
int32_t code, temp;
sys/dev/fdt/amltemp.c
201
temp = amltemp_calc_temp(sc, code & TS_STAT0_CODE_MASK);
sys/dev/fdt/amltemp.c
203
sc->sc_sensor.value = 273150000 + 1000 * temp;
sys/dev/fdt/bcm2711_tmon.c
132
int32_t code, temp;
sys/dev/fdt/bcm2711_tmon.c
135
temp = sc->sc_slope * BCMTMON_TSENSSTAT_DATA(code) + sc->sc_offset;
sys/dev/fdt/bcm2711_tmon.c
137
sc->sc_sensor.value = 273150000 + 1000 * temp;
sys/dev/fdt/bcm2711_tmon.c
149
int32_t code, temp;
sys/dev/fdt/bcm2711_tmon.c
152
temp = sc->sc_slope * BCMTMON_TSENSSTAT_DATA(code) + sc->sc_offset;
sys/dev/fdt/bcm2711_tmon.c
154
return temp;
sys/dev/fdt/bcm2835_temp.c
115
int32_t code, temp;
sys/dev/fdt/bcm2835_temp.c
118
temp = sc->sc_offset + TS_TSENSSTAT_DATA(code) * sc->sc_slope;
sys/dev/fdt/bcm2835_temp.c
119
sc->sc_sensor.value = 273150000 + 1000 * temp;
sys/dev/fdt/hitemp.c
162
uint64_t temp;
sys/dev/fdt/hitemp.c
168
temp = sc->sc_calc_temp(value);
sys/dev/fdt/hitemp.c
169
sc->sc_sensors[i].value = temp;
sys/dev/fdt/mvtemp.c
280
int32_t stat, temp;
sys/dev/fdt/mvtemp.c
283
temp = sc->sc_calc_temp(stat);
sys/dev/fdt/mvtemp.c
284
sc->sc_sensor.value = temp;
sys/dev/fdt/mvtemp.c
285
if ((stat & sc->sc_stat_valid) && temp >= 0)
sys/dev/fdt/qctsens.c
174
int32_t reg, temp;
sys/dev/fdt/qctsens.c
182
temp = TSENS_Sn_TEMP(reg);
sys/dev/fdt/qctsens.c
184
sc->sc_sensor[id].value = 273150000 + 100000 * temp;
sys/dev/fdt/qctsens.c
197
int32_t reg, temp;
sys/dev/fdt/qctsens.c
200
temp = 273150000 + 100000 * TSENS_Sn_TEMP(reg);
sys/dev/fdt/qctsens.c
203
return temp;
sys/dev/fdt/rktemp.c
349
uint32_t mode, polarity, temp;
sys/dev/fdt/rktemp.c
457
temp = OF_getpropint(sc->sc_node, "rockchip,hw-tshut-temp", 95000);
sys/dev/fdt/rktemp.c
478
rktemp_calc_code(sc, temp + sc->sc_trim_temp[i]));
sys/dev/fdt/rktemp.c
526
rktemp_calc_code(sc, temp + sc->sc_trim_temp[i]));
sys/dev/fdt/rktemp.c
630
int32_t code, temp;
sys/dev/fdt/rktemp.c
656
temp = trim_base * 1000 + trim_base_frac * 100;
sys/dev/fdt/rktemp.c
657
code = rktemp_calc_code(sc, temp);
sys/dev/fdt/rktemp.c
658
temp = sc->sc_trim_slope * (trim - code);
sys/dev/fdt/rktemp.c
659
sc->sc_trim_temp[reg] = temp;
sys/dev/fdt/rktemp.c
665
rktemp_calc_code(struct rktemp_softc *sc, int32_t temp)
sys/dev/fdt/rktemp.c
672
if (temp <= sc->sc_temps[0].temp)
sys/dev/fdt/rktemp.c
674
if (temp >= sc->sc_temps[n - 1].temp)
sys/dev/fdt/rktemp.c
678
if (temp < sc->sc_temps[i].temp)
sys/dev/fdt/rktemp.c
683
temp0 = sc->sc_temps[i - 1].temp;
sys/dev/fdt/rktemp.c
685
delta_temp = sc->sc_temps[i].temp - temp0;
sys/dev/fdt/rktemp.c
687
return code0 + (temp - temp0) * delta_code / delta_temp;
sys/dev/fdt/rktemp.c
703
return sc->sc_temps[n - 1].temp;
sys/dev/fdt/rktemp.c
711
return sc->sc_temps[0].temp;
sys/dev/fdt/rktemp.c
713
return sc->sc_temps[n - 1].temp;
sys/dev/fdt/rktemp.c
722
temp0 = sc->sc_temps[i - 1].temp;
sys/dev/fdt/rktemp.c
724
delta_temp = sc->sc_temps[i].temp - temp0;
sys/dev/fdt/rktemp.c
752
int32_t code, temp;
sys/dev/fdt/rktemp.c
757
temp = rktemp_calc_temp(sc, code);
sys/dev/fdt/rktemp.c
758
temp -= sc->sc_trim_temp[i];
sys/dev/fdt/rktemp.c
759
sc->sc_sensors[i].value = 273150000 + 1000 * temp;
sys/dev/fdt/rktemp.c
772
int32_t code, temp;
sys/dev/fdt/rktemp.c
779
temp = rktemp_calc_temp(sc, code);
sys/dev/fdt/rktemp.c
780
temp -= sc->sc_trim_temp[ch];
sys/dev/fdt/rktemp.c
781
return temp;
sys/dev/fdt/rktemp.c
788
rktemp_set_limit(void *cookie, uint32_t *cells, uint32_t temp)
sys/dev/fdt/rktemp.c
798
rktemp_calc_code(sc, temp + sc->sc_trim_temp[ch]));
sys/dev/fdt/rktemp.c
86
int32_t temp;
sys/dev/fdt/sxits.c
142
uint32_t data, temp;
sys/dev/fdt/sxits.c
150
temp = (data - sc->sc_offset) * sc->sc_scale;
sys/dev/fdt/sxits.c
151
sc->sc_sensor.value = temp * 1000 + 273150000;
sys/dev/i2c/asc7621.c
205
int64_t temp, volt;
sys/dev/i2c/asc7621.c
235
temp = ((hdata << 8 | ldata)) >> (16 - 10);
sys/dev/i2c/asc7621.c
236
temp = temp * 250000 + 273150000;
sys/dev/i2c/asc7621.c
237
sc->sc_sensor[i].value = temp;
sys/dev/i2c/bmc150.c
161
int8_t temp;
sys/dev/i2c/bmc150.c
190
temp = data[ACCD_TEMP - ACCD_X_LSB];
sys/dev/i2c/bmc150.c
192
273150000 + (sc->sc_temp0 + temp) * 1000000;
sys/dev/i2c/i2c_scan.c
184
u_int16_t temp, thyst, tos, tlow, thigh, mask = LM75TMASK;
sys/dev/i2c/i2c_scan.c
189
temp = iicprobew(LM75TEMP);
sys/dev/i2c/i2c_scan.c
195
if (temp == 0xffff)
sys/dev/i2c/i2c_scan.c
196
temp = iicprobew(LM75TEMP);
sys/dev/i2c/i2c_scan.c
203
if (conf == 0xff && temp == 0xffff && thyst == 0xffff)
sys/dev/i2c/i2c_scan.c
206
temp &= mask;
sys/dev/i2c/i2c_scan.c
211
if (temp == thyst && thyst == tos)
sys/dev/i2c/i2c_scan.c
216
if ((temp >> 8) == conf)
sys/dev/i2c/pijuice.c
275
pijuice_get_temp(struct pijuice_softc *sc, uint8_t *temp)
sys/dev/i2c/pijuice.c
285
*temp = (uint8_t)data[0];
sys/dev/i2c/pijuice.c
288
*temp = *temp - (1 << 8);
sys/dev/ic/ar9003.c
2542
int32_t scale, atemp, avolt, tempcal, voltcal, temp, volt;
sys/dev/ic/ar9003.c
2559
temp = MS(reg, AR_PHY_BB_THERM_ADC_4_LATEST_THERM);
sys/dev/ic/ar9003.c
2566
tempcorr = (atemp * (temp - tempcal) + 128) / 256;
sys/dev/ic/ar9380.c
807
int chain, int *corr, int *temp)
sys/dev/ic/ar9380.c
831
*temp = athn_interpolate(fbin,
sys/dev/ic/ar9380.c
843
int i, corr, temp, temp0;
sys/dev/ic/ar9380.c
851
ar9380_get_correction(sc, c, i, &corr, &temp);
sys/dev/ic/ar9380.c
853
temp0 = temp;
sys/dev/ic/lpt.c
116
u_int8_t temp;
sys/dev/ic/lpt.c
123
temp = bus_space_read_1(iot, ioh, off) & mask;
sys/dev/ic/lpt.c
124
} while (temp != data && --timeout);
sys/dev/ic/lpt.c
126
data, temp, timeout));
sys/dev/ic/lpt.c
127
return (temp == data);
sys/dev/ic/nvme.c
2175
int64_t temp;
sys/dev/ic/nvme.c
2207
temp = letoh16(health->temperature);
sys/dev/ic/nvme.c
2208
sc->sc_temp_sensor.value = (temp * 1000000) + 150000;
sys/dev/ic/qwxreg.h
4909
int32_t temp;
sys/dev/ic/qwzreg.h
5025
int32_t temp;
sys/dev/ic/rtwn.c
3051
int temp, t_meter_reg, t_meter_val;
sys/dev/ic/rtwn.c
3070
temp = rtwn_rf_read(sc, 0, t_meter_reg) & 0x1f;
sys/dev/ic/rtwn.c
3071
if (temp == 0) /* Read failed, skip. */
sys/dev/ic/rtwn.c
3073
DPRINTFN(2, ("temperature=%d\n", temp));
sys/dev/ic/rtwn.c
3081
sc->thcal_lctemp = temp;
sys/dev/ic/rtwn.c
3082
} else if (abs(temp - sc->thcal_lctemp) > 1) {
sys/dev/ic/rtwn.c
3084
sc->thcal_lctemp, temp));
sys/dev/ic/rtwn.c
3088
sc->thcal_lctemp = temp;
sys/dev/ic/smc93cx6.c
101
u_int32_t temp;
sys/dev/ic/smc93cx6.c
109
temp = sd->sd_MS ^ sd->sd_CS;
sys/dev/ic/smc93cx6.c
110
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
119
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
120
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
122
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
125
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
130
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
131
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
133
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
136
temp ^= sd->sd_DO;
sys/dev/ic/smc93cx6.c
147
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
152
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
159
temp = sd->sd_MS;
sys/dev/ic/smc93cx6.c
160
SEEPROM_OUTB(sd, temp);
sys/dev/ic/smc93cx6.c
162
SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
sys/dev/ic/smc93cx6.c
164
SEEPROM_OUTB(sd, temp);
sys/dev/isa/aps.c
434
int64_t temp;
sys/dev/isa/aps.c
452
temp = sc->aps_data.temp1 * 1000000;
sys/dev/isa/aps.c
454
temp += 273150000;
sys/dev/isa/aps.c
455
sc->sensors[APS_SENSOR_TEMP1].value = temp;
sys/dev/isa/aps.c
458
temp = sc->aps_data.temp2 * 1000000;
sys/dev/isa/aps.c
460
temp += 273150000;
sys/dev/isa/aps.c
461
sc->sensors[APS_SENSOR_TEMP2].value = temp;
sys/dev/isa/gus.c
1632
u_long temp, f = (u_long) freq;
sys/dev/isa/gus.c
1639
temp = (u_long) gus_max_frequency[sc->sc_voices-GUS_MIN_VOICES];
sys/dev/isa/gus.c
1641
fc = (unsigned int)(((f << 9L) + (temp >> 1L)) / temp);
sys/dev/isa/if_ex.c
245
int temp;
sys/dev/isa/if_ex.c
258
temp = ex_eeprom_read(sc, EE_W5);
sys/dev/isa/if_ex.c
259
if (temp & EE_W5_PORT_TPE)
sys/dev/isa/if_ex.c
261
if (temp & EE_W5_PORT_BNC)
sys/dev/isa/if_ex.c
263
if (temp & EE_W5_PORT_AUI)
sys/dev/isa/sch311x.c
388
int8_t temp;
sys/dev/isa/sch311x.c
443
temp = schsio_hwm_read(sc, SCHSIO_HWM_TEMP1);
sys/dev/isa/sch311x.c
444
sc->sc_sensor[SCHSIO_SENSOR_TEMP1].value = SCHSIO_TEMP_MUK(temp);
sys/dev/isa/sch311x.c
446
((uint8_t)temp == 0x80) ? SENSOR_FINVALID : 0;
sys/dev/isa/sch311x.c
448
temp = schsio_hwm_read(sc, SCHSIO_HWM_TEMP2);
sys/dev/isa/sch311x.c
449
sc->sc_sensor[SCHSIO_SENSOR_TEMP2].value = SCHSIO_TEMP_MUK(temp);
sys/dev/isa/sch311x.c
451
((uint8_t)temp == 0x80) ? SENSOR_FINVALID : 0;
sys/dev/isa/sch311x.c
453
temp = schsio_hwm_read(sc, SCHSIO_HWM_TEMP3);
sys/dev/isa/sch311x.c
454
sc->sc_sensor[SCHSIO_SENSOR_TEMP3].value = SCHSIO_TEMP_MUK(temp);
sys/dev/isa/sch311x.c
456
((uint8_t)temp == 0x80) ? SENSOR_FINVALID : 0;
sys/dev/isa/viasio.c
119
int64_t temp = -1, temp1, temp2;
sys/dev/isa/viasio.c
127
temp1 = vt1211_hm_temptbl[i].temp;
sys/dev/isa/viasio.c
129
temp2 = vt1211_hm_temptbl[i + 1].temp;
sys/dev/isa/viasio.c
133
temp = temp1 + ((raw - raw1) * (temp2 - temp1)) /
sys/dev/isa/viasio.c
139
return (temp);
sys/dev/isa/viasioreg.h
204
int64_t temp; /* temperature in uK */
sys/dev/ofw/ofw_thermal.c
164
thermal_set_limit_cells(uint32_t *cells, uint32_t temp)
sys/dev/ofw/ofw_thermal.c
175
return ts->ts_set_limit(ts->ts_cookie, &cells[1], temp);
sys/dev/ofw/ofw_thermal.c
306
int32_t temp, delta;
sys/dev/ofw/ofw_thermal.c
310
temp = thermal_get_temperature_cells(tz->tz_sensors);
sys/dev/ofw/ofw_thermal.c
311
if (temp == THERMAL_SENSOR_MAX)
sys/dev/ofw/ofw_thermal.c
316
if (temp < tp->tp_temperature && tp != tz->tz_tp)
sys/dev/ofw/ofw_thermal.c
318
if (temp < tp->tp_temperature - tp->tp_hysteresis)
sys/dev/ofw/ofw_thermal.c
337
if (temp >= newtp->tp_temperature) {
sys/dev/ofw/ofw_thermal.c
338
if (temp > tz->tz_temperature)
sys/dev/ofw/ofw_thermal.c
341
if (temp < tz->tz_temperature)
sys/dev/ofw/ofw_thermal.c
364
tz->tz_temperature = temp;
sys/dev/ofw/ofw_thermal.c
442
int32_t temp;
sys/dev/ofw/ofw_thermal.c
444
temp = OF_getpropint(node, "temperature", THERMAL_SENSOR_MAX);
sys/dev/ofw/ofw_thermal.c
452
if (tz->tz_trips[i].tp_temperature < temp)
sys/dev/ofw/ofw_thermal.c
461
tp->tp_temperature = temp;
sys/dev/onewire/owtemp.c
144
int16_t temp;
sys/dev/onewire/owtemp.c
174
temp = data[DS1920_SP_TEMP_MSB] << 8 |
sys/dev/onewire/owtemp.c
182
val = temp * (1000000 / 16);
sys/dev/onewire/owtemp.c
190
temp &= ~0x0001;
sys/dev/onewire/owtemp.c
191
val = temp * 500000 - 250000 +
sys/dev/onewire/owtemp.c
195
val = temp * 500000;
sys/dev/pci/bktr/bktr_audio.c
167
temp = INL(bktr, BKTR_GPIO_DATA) & ~bktr->card.gpio_mux_bits;
sys/dev/pci/bktr/bktr_audio.c
169
OUTL(bktr, BKTR_GPIO_DATA, temp | (cmd & 0xff));
sys/dev/pci/bktr/bktr_audio.c
171
cmd, bktr->card.audiomuxs[ idx ], temp );
sys/dev/pci/bktr/bktr_audio.c
173
OUTL(bktr, BKTR_GPIO_DATA, temp | bktr->card.audiomuxs[ idx ]);
sys/dev/pci/bktr/bktr_audio.c
98
u_int temp;
sys/dev/pci/bktr/bktr_core.c
1105
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
1176
temp = 0;
sys/dev/pci/bktr/bktr_core.c
1177
if (!(c_temp & 0x40)) temp |= METEOR_STATUS_HCLK;
sys/dev/pci/bktr/bktr_core.c
1178
if (!(c_temp & 0x10)) temp |= METEOR_STATUS_FIDT;
sys/dev/pci/bktr/bktr_core.c
1179
*(u_short *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
1183
temp = *(unsigned int *)arg & BT848_IFORM_FORMAT;
sys/dev/pci/bktr/bktr_core.c
1187
OUTB(bktr, BKTR_IFORM, (temp_iform | temp | format_params[temp].iform_xtsel));
sys/dev/pci/bktr/bktr_core.c
1188
switch( temp ) {
sys/dev/pci/bktr/bktr_core.c
1198
OUTB(bktr, BKTR_ADELAY, format_params[temp].adelay);
sys/dev/pci/bktr/bktr_core.c
1199
OUTB(bktr, BKTR_BDELAY, format_params[temp].bdelay);
sys/dev/pci/bktr/bktr_core.c
1200
bktr->format_params = temp;
sys/dev/pci/bktr/bktr_core.c
1210
OUTB(bktr, BKTR_ADELAY, format_params[temp].adelay);
sys/dev/pci/bktr/bktr_core.c
1211
OUTB(bktr, BKTR_BDELAY, format_params[temp].bdelay);
sys/dev/pci/bktr/bktr_core.c
1212
bktr->format_params = temp;
sys/dev/pci/bktr/bktr_core.c
1328
temp = (int)*(u_char *)arg;
sys/dev/pci/bktr/bktr_core.c
1330
OUTB(bktr, BKTR_SAT_U_LO, (temp << 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1331
OUTB(bktr, BKTR_SAT_V_LO, (temp << 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1339
if ( temp & BIT_SEVEN_HIGH ) {
sys/dev/pci/bktr/bktr_core.c
1350
temp = (INB(bktr, BKTR_SAT_V_LO) >> 1) & 0xff;
sys/dev/pci/bktr/bktr_core.c
1352
temp |= BIT_SEVEN_HIGH;
sys/dev/pci/bktr/bktr_core.c
1353
*(u_char *)arg = (u_char)temp;
sys/dev/pci/bktr/bktr_core.c
1357
temp = (int)*(u_char *)arg & 0xff;
sys/dev/pci/bktr/bktr_core.c
1358
temp <<= 1;
sys/dev/pci/bktr/bktr_core.c
1359
OUTB(bktr, BKTR_CONTRAST_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
1363
(((temp & 0x100) >> 6 ) & BT848_E_CONTROL_CON_MSB));
sys/dev/pci/bktr/bktr_core.c
1365
(((temp & 0x100) >> 6 ) & BT848_O_CONTROL_CON_MSB));
sys/dev/pci/bktr/bktr_core.c
1369
temp = (int)INB(bktr, BKTR_CONTRAST_LO) & 0xff;
sys/dev/pci/bktr/bktr_core.c
1370
temp |= ((int)INB(bktr, BKTR_O_CONTROL) & 0x04) << 6;
sys/dev/pci/bktr/bktr_core.c
1371
*(u_char *)arg = (u_char)((temp >> 1) & 0xff);
sys/dev/pci/bktr/bktr_core.c
1396
temp = bktr->flags;
sys/dev/pci/bktr/bktr_core.c
1403
if (temp & METEOR_CAP_MASK)
sys/dev/pci/bktr/bktr_core.c
1446
if (temp & METEOR_CAP_MASK)
sys/dev/pci/bktr/bktr_core.c
1551
if ((temp=(geo->rows * geo->columns * geo->frames * 2))) {
sys/dev/pci/bktr/bktr_core.c
1552
if (geo->oformat & METEOR_GEO_RGB24) temp = temp * 2;
sys/dev/pci/bktr/bktr_core.c
1555
if (geo->frames > 1) temp += PAGE_SIZE;
sys/dev/pci/bktr/bktr_core.c
1557
temp = atop(round_page(temp));
sys/dev/pci/bktr/bktr_core.c
1558
if ((int) temp > bktr->alloc_pages
sys/dev/pci/bktr/bktr_core.c
1567
temp * PAGE_SIZE);
sys/dev/pci/bktr/bktr_core.c
1573
bktr->alloc_pages = temp;
sys/dev/pci/bktr/bktr_core.c
1578
temp * PAGE_SIZE);
sys/dev/pci/bktr/bktr_core.c
1704
unsigned int temp, temp1;
sys/dev/pci/bktr/bktr_core.c
1759
temp = *(unsigned int *)arg;
sys/dev/pci/bktr/bktr_core.c
1760
if ( (temp < CHNLSET_MIN) || (temp > CHNLSET_MAX) )
sys/dev/pci/bktr/bktr_core.c
1762
bktr->tuner.chnlset = temp;
sys/dev/pci/bktr/bktr_core.c
1770
temp = get_tuner_status( bktr );
sys/dev/pci/bktr/bktr_core.c
1771
*(unsigned int *)arg = temp & 0xff;
sys/dev/pci/bktr/bktr_core.c
1830
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
1833
temp |= (BT848_E_CONTROL_SAT_U_MSB |
sys/dev/pci/bktr/bktr_core.c
1839
temp &= ~(BT848_E_CONTROL_SAT_U_MSB |
sys/dev/pci/bktr/bktr_core.c
1847
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
1862
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
1865
temp |= BT848_E_CONTROL_SAT_V_MSB;
sys/dev/pci/bktr/bktr_core.c
1869
temp &= ~BT848_E_CONTROL_SAT_V_MSB;
sys/dev/pci/bktr/bktr_core.c
1874
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
1889
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
1892
temp |= BT848_E_CONTROL_SAT_U_MSB;
sys/dev/pci/bktr/bktr_core.c
1896
temp &= ~BT848_E_CONTROL_SAT_U_MSB;
sys/dev/pci/bktr/bktr_core.c
1901
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
1931
temp = INB(bktr, BKTR_E_CONTROL);
sys/dev/pci/bktr/bktr_core.c
1934
temp |= BT848_E_CONTROL_CON_MSB;
sys/dev/pci/bktr/bktr_core.c
1938
temp &= ~BT848_E_CONTROL_CON_MSB;
sys/dev/pci/bktr/bktr_core.c
1943
OUTB(bktr, BKTR_E_CONTROL, temp);
sys/dev/pci/bktr/bktr_core.c
1967
temp = bktr->audio_mux_select;
sys/dev/pci/bktr/bktr_core.c
1969
temp |= AUDIO_MUTE;
sys/dev/pci/bktr/bktr_core.c
1970
*(int *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
2040
temp=(int)*(unsigned long *)arg;
sys/dev/pci/bktr/bktr_core.c
2044
(int)*(unsigned long *)arg, temp);
sys/dev/pci/bktr/bktr_core.c
2050
if(temp<8750 || temp>10800) {
sys/dev/pci/bktr/bktr_core.c
2056
tmp_int = tv_freq( bktr, temp, FM_RADIO_FREQUENCY );
sys/dev/pci/bktr/bktr_core.c
2127
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
2265
temp = status_sum;
sys/dev/pci/bktr/bktr_core.c
2268
*(u_int *)arg = temp;
sys/dev/pci/bktr/bktr_core.c
3192
unsigned int temp;
sys/dev/pci/bktr/bktr_core.c
3206
temp = ((quad_t ) fp->htotal* (quad_t) bktr->capture_area_x_size * 4096
sys/dev/pci/bktr/bktr_core.c
3209
temp = ((quad_t ) fp->htotal* (quad_t) fp->scaled_hactive * 4096
sys/dev/pci/bktr/bktr_core.c
3213
OUTB(bktr, BKTR_E_HSCALE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3214
OUTB(bktr, BKTR_O_HSCALE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3215
OUTB(bktr, BKTR_E_HSCALE_HI, (temp >> 8) & 0xff);
sys/dev/pci/bktr/bktr_core.c
3216
OUTB(bktr, BKTR_O_HSCALE_HI, (temp >> 8) & 0xff);
sys/dev/pci/bktr/bktr_core.c
3219
temp = bktr->cols;
sys/dev/pci/bktr/bktr_core.c
3221
OUTB(bktr, BKTR_E_HACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3222
OUTB(bktr, BKTR_O_HACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3225
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 8) & 0x3));
sys/dev/pci/bktr/bktr_core.c
3226
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 8) & 0x3));
sys/dev/pci/bktr/bktr_core.c
3230
temp = ( (fp->hdelay* fp->scaled_hactive + bktr->capture_area_x_offset* fp->scaled_htotal)
sys/dev/pci/bktr/bktr_core.c
3233
temp = (fp->hdelay * bktr->cols) / fp->hactive;
sys/dev/pci/bktr/bktr_core.c
3235
temp = temp & 0x3fe;
sys/dev/pci/bktr/bktr_core.c
3238
OUTB(bktr, BKTR_E_DELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3239
OUTB(bktr, BKTR_O_DELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3242
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 6) & 0xc));
sys/dev/pci/bktr/bktr_core.c
3243
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 6) & 0xc));
sys/dev/pci/bktr/bktr_core.c
3279
temp = bktr->capture_area_y_size;
sys/dev/pci/bktr/bktr_core.c
3281
temp = fp->vactive;
sys/dev/pci/bktr/bktr_core.c
3284
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 4) & 0x30));
sys/dev/pci/bktr/bktr_core.c
3285
OUTB(bktr, BKTR_E_VACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3287
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 4) & 0x30));
sys/dev/pci/bktr/bktr_core.c
3288
OUTB(bktr, BKTR_O_VACTIVE_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3292
temp = fp->vdelay + (bktr->capture_area_y_offset);
sys/dev/pci/bktr/bktr_core.c
3294
temp = fp->vdelay;
sys/dev/pci/bktr/bktr_core.c
3297
OUTB(bktr, BKTR_E_CROP, INB(bktr, BKTR_E_CROP) | ((temp >> 2) & 0xC0));
sys/dev/pci/bktr/bktr_core.c
3298
OUTB(bktr, BKTR_E_VDELAY_LO, temp & 0xff);
sys/dev/pci/bktr/bktr_core.c
3300
OUTB(bktr, BKTR_O_CROP, INB(bktr, BKTR_O_CROP) | ((temp >> 2) & 0xC0));
sys/dev/pci/bktr/bktr_core.c
3301
OUTB(bktr, BKTR_O_VDELAY_LO, temp & 0xff);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
247
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
254
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
255
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
256
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
259
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.c
260
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
188
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
195
temp = RREG32(sdma_rlc_reg_offset + regSDMA_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
196
temp = temp & ~SDMA_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
197
WREG32(sdma_rlc_reg_offset + regSDMA_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
200
temp = RREG32(sdma_rlc_reg_offset + regSDMA_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gc_9_4_3.c
201
if (temp & SDMA_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
520
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
562
temp = RREG32(mmCP_HQD_IQ_TIMER);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
563
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, PROCESSING_IQ)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
567
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, ACTIVE)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
568
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, RETRY_TYPE)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
575
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, WAIT_TIME)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
591
temp = RREG32(mmCP_HQD_DEQUEUE_REQUEST);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
592
if (!(temp & CP_HQD_DEQUEUE_REQUEST__IQ_REQ_PEND_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
611
temp = RREG32_SOC15(GC, 0, mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
612
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
631
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
638
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
639
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
640
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
643
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c
644
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
507
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
534
temp = RREG32_SOC15(GC, 0, mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
535
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
555
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
562
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
563
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
564
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
567
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
568
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
495
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
519
temp = RREG32(SOC15_REG_OFFSET(GC, 0, regCP_HQD_ACTIVE));
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
520
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
540
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
547
temp = RREG32(sdma_rlc_reg_offset + regSDMA0_QUEUE0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
548
temp = temp & ~SDMA0_QUEUE0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
549
WREG32(sdma_rlc_reg_offset + regSDMA0_QUEUE0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
552
temp = RREG32(sdma_rlc_reg_offset + regSDMA0_QUEUE0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v11.c
553
if (temp & SDMA0_QUEUE0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
364
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
397
temp = RREG32(mmCP_HQD_IQ_TIMER);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
398
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, PROCESSING_IQ)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
402
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, ACTIVE)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
403
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, RETRY_TYPE)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
410
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, WAIT_TIME)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
426
temp = RREG32(mmCP_HQD_DEQUEUE_REQUEST);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
427
if (!(temp & CP_HQD_DEQUEUE_REQUEST__IQ_REQ_PEND_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
445
temp = RREG32(mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
446
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
465
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
471
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
472
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
473
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
476
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
477
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
396
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
432
temp = RREG32(mmCP_HQD_IQ_TIMER);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
433
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, PROCESSING_IQ)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
437
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, ACTIVE)) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
438
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, RETRY_TYPE)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
445
if (REG_GET_FIELD(temp, CP_HQD_IQ_TIMER, WAIT_TIME)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
461
temp = RREG32(mmCP_HQD_DEQUEUE_REQUEST);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
462
if (!(temp & CP_HQD_DEQUEUE_REQUEST__IQ_REQ_PEND_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
480
temp = RREG32(mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
481
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
500
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
506
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
507
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
508
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
511
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
512
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
1163
uint32_t temp = RREG32_SOC15(GC, GET_INST(GC, inst), mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
1165
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
531
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
561
temp = RREG32_SOC15(GC, GET_INST(GC, inst), mmCP_HQD_ACTIVE);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
562
if (!(temp & CP_HQD_ACTIVE__ACTIVE_MASK))
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
581
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
588
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
589
temp = temp & ~SDMA0_RLC0_RB_CNTL__RB_ENABLE_MASK;
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
590
WREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_RB_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
593
temp = RREG32(sdma_rlc_reg_offset + mmSDMA0_RLC0_CONTEXT_STATUS);
sys/dev/pci/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
594
if (temp & SDMA0_RLC0_CONTEXT_STATUS__IDLE_MASK)
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
47
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
53
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
54
temp &= ~(1 << 16);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
55
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
59
temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
60
WREG32(rec->a_clk_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
62
temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
63
WREG32(rec->a_data_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
66
temp = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
67
WREG32(rec->en_clk_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
69
temp = RREG32(rec->en_data_reg) & ~rec->en_data_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
70
WREG32(rec->en_data_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
73
temp = RREG32(rec->mask_clk_reg) | rec->mask_clk_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
74
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
75
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
77
temp = RREG32(rec->mask_data_reg) | rec->mask_data_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
78
WREG32(rec->mask_data_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
79
temp = RREG32(rec->mask_data_reg);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
89
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
92
temp = RREG32(rec->mask_clk_reg) & ~rec->mask_clk_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
93
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
94
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
96
temp = RREG32(rec->mask_data_reg) & ~rec->mask_data_mask;
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
97
WREG32(rec->mask_data_reg, temp);
sys/dev/pci/drm/amd/amdgpu/amdgpu_i2c.c
98
temp = RREG32(rec->mask_data_reg);
sys/dev/pci/drm/amd/amdgpu/amdgpu_pmu.c
579
struct amdgpu_pmu_entry *pe, *temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_pmu.c
581
list_for_each_entry_safe(pe, temp, &amdgpu_pmu_list, entry) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_vram_mgr.c
307
struct amdgpu_vram_reservation *rsv, *temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vram_mgr.c
311
list_for_each_entry_safe(rsv, temp, &mgr->reservations_pending, blocks) {
sys/dev/pci/drm/amd/amdgpu/amdgpu_vram_mgr.c
972
struct amdgpu_vram_reservation *rsv, *temp;
sys/dev/pci/drm/amd/amdgpu/amdgpu_vram_mgr.c
981
list_for_each_entry_safe(rsv, temp, &mgr->reservations_pending, blocks)
sys/dev/pci/drm/amd/amdgpu/amdgpu_vram_mgr.c
984
list_for_each_entry_safe(rsv, temp, &mgr->reserved_pages, blocks) {
sys/dev/pci/drm/amd/amdgpu/atom.c
117
uint32_t temp = 0xCDCDCDCD;
sys/dev/pci/drm/amd/amdgpu/atom.c
125
temp = ctx->card->reg_read(ctx->card, CU16(base + 1));
sys/dev/pci/drm/amd/amdgpu/atom.c
129
ctx->card->reg_write(ctx->card, CU16(base + 1), temp);
sys/dev/pci/drm/amd/amdgpu/atom.c
133
temp &=
sys/dev/pci/drm/amd/amdgpu/atom.c
139
temp |=
sys/dev/pci/drm/amd/amdgpu/atom.c
145
temp &=
sys/dev/pci/drm/amd/amdgpu/atom.c
148
temp |=
sys/dev/pci/drm/amd/amdgpu/atom.c
155
temp &=
sys/dev/pci/drm/amd/amdgpu/atom.c
158
temp |=
sys/dev/pci/drm/amd/amdgpu/atom.c
165
temp &=
sys/dev/pci/drm/amd/amdgpu/atom.c
168
temp |=
sys/dev/pci/drm/amd/amdgpu/atom.c
179
return temp;
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
3920
int i, temp, data;
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
3968
temp = mmRLC_SRM_INDEX_CNTL_ADDR_0;
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
3972
WREG32(temp + i, unique_indices[i] & 0x3FFFF);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5584
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5598
temp = data = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5609
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5620
temp = data = RREG32(mmCGTS_SM_CTRL_REG);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5630
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5639
temp = data = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5644
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5662
temp = data = RREG32(mmCGTS_SM_CTRL_REG);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5665
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5684
uint32_t temp, temp1, data, data1;
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5686
temp = data = RREG32(mmRLC_CGCG_CGLS_CTRL);
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5722
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/gfx_v8_0.c
5761
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1427
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1432
temp = data = RREG32(mmSDMA0_CLK_CTRL + sdma_offsets[i]);
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1441
if (data != temp)
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1446
temp = data = RREG32(mmSDMA0_CLK_CTRL + sdma_offsets[i]);
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1456
if (data != temp)
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1466
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1471
temp = data = RREG32(mmSDMA0_POWER_CNTL + sdma_offsets[i]);
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1474
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1479
temp = data = RREG32(mmSDMA0_POWER_CNTL + sdma_offsets[i]);
sys/dev/pci/drm/amd/amdgpu/sdma_v3_0.c
1482
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1406
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1414
temp = RREG32_SDMA(i, mmSDMA0_CNTL);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1415
temp = REG_SET_FIELD(temp, SDMA0_CNTL, UTC_L1_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1416
WREG32_SDMA(i, mmSDMA0_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1420
temp = RREG32_SDMA(i, mmSDMA0_F32_CNTL);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1421
temp = REG_SET_FIELD(temp, SDMA0_F32_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
1422
WREG32_SDMA(i, mmSDMA0_F32_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
603
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
605
temp = RREG32_SDMA(i, mmSDMA0_ULV_CNTL);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
606
temp = REG_SET_FIELD(temp, SDMA0_ULV_CNTL, HYSTERESIS, 0x0);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
607
WREG32_SDMA(i, mmSDMA0_ULV_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1002
temp = RREG32_SDMA(i, regSDMA_CNTL);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1003
temp = REG_SET_FIELD(temp, SDMA_CNTL, UTC_L1_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1004
WREG32_SDMA(i, regSDMA_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1008
temp = REG_SET_FIELD(temp, SDMA_CNTL, CTXEMPTY_INT_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1009
WREG32_SDMA(i, regSDMA_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1014
temp = RREG32_SDMA(i, regSDMA_F32_CNTL);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1015
temp = REG_SET_FIELD(temp, SDMA_F32_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
1016
WREG32_SDMA(i, regSDMA_F32_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v4_4_2.c
994
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
695
u32 temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
793
temp = RREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
794
temp = REG_SET_FIELD(temp, SDMA0_CNTL, UTC_L1_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
797
temp = REG_SET_FIELD(temp, SDMA0_CNTL, MIDCMD_PREEMPT_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
798
WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
801
temp = RREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_UTCL1_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
802
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, RESP_MODE, 3);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
803
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, REDO_DELAY, 9);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
804
WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_UTCL1_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
807
temp = RREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_UTCL1_PAGE));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
809
temp &= 0xFF0FFF;
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
810
temp |= ((CACHE_READ_POLICY_L2__DEFAULT << 12) | (CACHE_WRITE_POLICY_L2__DEFAULT << 14));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
811
WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_UTCL1_PAGE), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
816
temp = RREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_F32_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
817
temp = REG_SET_FIELD(temp, SDMA0_F32_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_0.c
818
WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_F32_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
544
u32 temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
640
temp = RREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
641
temp = REG_SET_FIELD(temp, SDMA0_CNTL, UTC_L1_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
644
temp = REG_SET_FIELD(temp, SDMA0_CNTL, MIDCMD_PREEMPT_ENABLE, 1);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
645
WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
648
temp = RREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_UTCL1_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
649
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, RESP_MODE, 3);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
650
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, REDO_DELAY, 9);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
651
WREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_UTCL1_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
654
temp = RREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_UTCL1_PAGE));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
656
temp &= 0xFF0FFF;
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
657
temp |= ((CACHE_READ_POLICY_L2__DEFAULT << 12) |
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
660
WREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_UTCL1_PAGE), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
663
temp = RREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_F32_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
664
temp = REG_SET_FIELD(temp, SDMA0_F32_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v5_2.c
665
WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_F32_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
489
u32 temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
576
temp = RREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_WATCHDOG_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
578
temp = REG_SET_FIELD(temp, SDMA0_WATCHDOG_CNTL, QUEUE_HANG_COUNT,
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
580
WREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_WATCHDOG_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
583
temp = RREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_UTCL1_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
584
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, RESP_MODE, 3);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
585
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, REDO_DELAY, 9);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
586
WREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_UTCL1_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
589
temp = RREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_UTCL1_PAGE));
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
591
temp &= 0xFF0FFF;
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
592
temp |= ((CACHE_READ_POLICY_L2__DEFAULT << 12) |
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
595
WREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_UTCL1_PAGE), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
599
temp = RREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_F32_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
600
temp = REG_SET_FIELD(temp, SDMA0_F32_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
601
temp = REG_SET_FIELD(temp, SDMA0_F32_CNTL, TH1_RESET, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v6_0.c
602
WREG32_SOC15_IP(GC, sdma_v6_0_get_reg_offset(adev, i, regSDMA0_F32_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
482
u32 temp;
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
572
temp = RREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_WATCHDOG_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
574
temp = REG_SET_FIELD(temp, SDMA0_WATCHDOG_CNTL, QUEUE_HANG_COUNT,
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
576
WREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_WATCHDOG_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
579
temp = RREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_UTCL1_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
580
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, RESP_MODE, 3);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
581
temp = REG_SET_FIELD(temp, SDMA0_UTCL1_CNTL, REDO_DELAY, 9);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
582
WREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_UTCL1_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
585
temp = RREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_UTCL1_PAGE));
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
587
temp &= 0xFF0FFF;
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
588
temp |= ((CACHE_READ_POLICY_L2__DEFAULT << 12) |
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
590
WREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_UTCL1_PAGE), temp);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
594
temp = RREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_MCU_CNTL));
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
595
temp = REG_SET_FIELD(temp, SDMA0_MCU_CNTL, HALT, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
596
temp = REG_SET_FIELD(temp, SDMA0_MCU_CNTL, RESET, 0);
sys/dev/pci/drm/amd/amdgpu/sdma_v7_0.c
597
WREG32_SOC15_IP(GC, sdma_v7_0_get_reg_offset(adev, i, regSDMA0_MCU_CNTL), temp);
sys/dev/pci/drm/amd/amdgpu/si.c
1470
uint32_t temp;
sys/dev/pci/drm/amd/amdgpu/si.c
1472
temp = RREG32(mmCONFIG_CNTL);
sys/dev/pci/drm/amd/amdgpu/si.c
1474
temp &= ~(1<<0);
sys/dev/pci/drm/amd/amdgpu/si.c
1475
temp |= (1<<1);
sys/dev/pci/drm/amd/amdgpu/si.c
1477
temp &= ~(1<<1);
sys/dev/pci/drm/amd/amdgpu/si.c
1479
WREG32(mmCONFIG_CNTL, temp);
sys/dev/pci/drm/amd/amdgpu/vi.c
1746
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/vi.c
1748
temp = data = RREG32_PCIE(ixPCIE_CNTL2);
sys/dev/pci/drm/amd/amdgpu/vi.c
1759
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/vi.c
1766
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/vi.c
1768
temp = data = RREG32(mmHDP_HOST_PATH_CNTL);
sys/dev/pci/drm/amd/amdgpu/vi.c
1775
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/vi.c
1782
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/vi.c
1784
temp = data = RREG32(mmHDP_MEM_POWER_LS);
sys/dev/pci/drm/amd/amdgpu/vi.c
1791
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/vi.c
1798
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/vi.c
1800
temp = data = RREG32(0x157a);
sys/dev/pci/drm/amd/amdgpu/vi.c
1807
if (temp != data)
sys/dev/pci/drm/amd/amdgpu/vi.c
1815
uint32_t temp, data;
sys/dev/pci/drm/amd/amdgpu/vi.c
1817
temp = data = RREG32_SMC(ixCGTT_ROM_CLK_CTRL0);
sys/dev/pci/drm/amd/amdgpu/vi.c
1826
if (temp != data)
sys/dev/pci/drm/amd/amdkfd/kfd_device.c
1493
int r = 0, temp, idx;
sys/dev/pci/drm/amd/amdkfd/kfd_device.c
1520
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_cik.c
143
temp = get_sh_mem_bases_nybble_64(qpd_to_pdd(qpd));
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_cik.c
144
qpd->sh_mem_bases = compute_sh_mem_bases_64bit(temp);
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_cik.c
147
qpd->pqm->process->is_32bit_user_mode, temp, qpd->sh_mem_bases);
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_cik.c
97
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_vi.c
146
temp = get_sh_mem_bases_nybble_64(qpd_to_pdd(qpd));
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_vi.c
147
qpd->sh_mem_bases = compute_sh_mem_bases_64bit(temp);
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_vi.c
150
temp, qpd->sh_mem_bases);
sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager_vi.c
98
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_events.c
1268
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_events.c
1284
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_packet_manager.c
39
unsigned int temp = *wptr + increment_bytes / sizeof(uint32_t);
sys/dev/pci/drm/amd/amdkfd/kfd_packet_manager.c
41
WARN((temp * sizeof(uint32_t)) > buffer_size_bytes,
sys/dev/pci/drm/amd/amdkfd/kfd_packet_manager.c
43
*wptr = temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1243
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1246
hash_for_each_rcu(kfd_processes_table, temp, target, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1310
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1320
hash_for_each_safe(kfd_processes_table, temp, p_temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1821
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
1824
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2095
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2099
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2110
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2113
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2317
unsigned int temp;
sys/dev/pci/drm/amd/amdkfd/kfd_process.c
2322
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
926
dma_addr_t *temp;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
927
temp = (dma_addr_t *)dst + i;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
928
*temp = *((dma_addr_t *)src + i);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
929
if (*temp&SVM_RANGE_VRAM_DOMAIN)
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
523
int temp;
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
538
temp = find_clk_for_voltage(clock_table, clock_table->DcfClocks, clock_table->DfPstateTable[j].Voltage);
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
539
if (temp)
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
540
bw_params->clk_table.entries[i].dcfclk_mhz = temp;
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
541
temp = find_clk_for_voltage(clock_table, clock_table->SocClocks, clock_table->DfPstateTable[j].Voltage);
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
542
if (temp)
sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
543
bw_params->clk_table.entries[i].socclk_mhz = temp;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1204
struct fixed31_32 temp;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1217
temp = dc_fixpt_mul_int(ratio, recout_offset_within_recout_full);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1218
*vp_offset = dc_fixpt_floor(temp);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1219
temp.value &= 0xffffffff;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1221
dc_fixpt_add_int(ratio, taps + 1), 2), temp), 19);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1240
temp = dc_fixpt_add(*init, dc_fixpt_mul_int(ratio, recout_size - 1));
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1241
*vp_size = dc_fixpt_floor(temp);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1448
struct scaling_taps temp = {0};
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1545
temp = pipe_ctx->plane_res.scl_data.taps;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1579
if (res && (pipe_ctx->plane_res.scl_data.taps.v_taps != temp.v_taps ||
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1580
pipe_ctx->plane_res.scl_data.taps.h_taps != temp.h_taps ||
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1581
pipe_ctx->plane_res.scl_data.taps.v_taps_c != temp.v_taps_c ||
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
1582
pipe_ctx->plane_res.scl_data.taps.h_taps_c != temp.h_taps_c))
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
4213
struct dc_stream_state *temp = add_streams[0];
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
4216
add_streams[i] = temp;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
876
struct fixed31_32 temp;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
878
temp = dc_fixpt_from_fraction(rec_in->x * (long long)stream->dst.width,
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
880
rec_out.x = stream->dst.x + dc_fixpt_round(temp);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
882
temp = dc_fixpt_from_fraction(
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
885
rec_out.width = stream->dst.x + dc_fixpt_round(temp) - rec_out.x;
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
887
temp = dc_fixpt_from_fraction(rec_in->y * (long long)stream->dst.height,
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
889
rec_out.y = stream->dst.y + dc_fixpt_round(temp);
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
891
temp = dc_fixpt_from_fraction(
sys/dev/pci/drm/amd/display/dc/core/dc_resource.c
894
rec_out.height = stream->dst.y + dc_fixpt_round(temp) - rec_out.y;
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
102
temp = address.high_part &
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
105
set_reg_field_value(value, temp,
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
115
temp = address.low_part >>
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
118
set_reg_field_value(value, temp,
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
65
uint32_t temp = 0;
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
67
temp = address.high_part &
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
70
set_reg_field_value(value, temp,
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
80
temp = address.low_part >>
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
83
set_reg_field_value(value, temp,
sys/dev/pci/drm/amd/display/dc/dce110/dce110_mem_input_v.c
99
uint32_t temp = 0;
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
106
float temp;
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
110
temp = dcn_bw_pow(a, (int)(exp / 2));
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
112
return temp * temp;
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
115
return a * temp * temp;
sys/dev/pci/drm/amd/display/dc/dml/calcs/dcn_calc_math.c
117
return (temp * temp) / a;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
412
int unsigned temp = 0;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
414
temp = dml_round_to_multiple(vp_width - 1, blk256_width, 1) + blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
418
if (temp > data_pitch) {
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
420
temp = data_pitch;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
425
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
426
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
428
int unsigned temp = 0;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
430
temp = dml_round_to_multiple(vp_height - 1, blk256_height, 1) + blk256_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
434
if (temp > surface_height) {
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
436
temp = surface_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
441
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
442
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
430
int unsigned temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
432
temp = dml_round_to_multiple(vp_width - 1, blk256_width, 1) + blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
436
if (temp > data_pitch) {
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
438
temp = data_pitch;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
443
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
444
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
446
int unsigned temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
448
temp = dml_round_to_multiple(vp_height - 1, blk256_height, 1) + blk256_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
452
if (temp > surface_height) {
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
454
temp = surface_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
459
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn31/display_rq_dlg_calc_31.c
460
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
518
unsigned int temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
520
temp = dml_round_to_multiple(vp_width - 1, blk256_width, 1) + blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
524
if (temp > data_pitch) {
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
526
temp = data_pitch;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
531
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
532
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_width;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
534
unsigned int temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
536
temp = dml_round_to_multiple(vp_height - 1, blk256_height, 1) + blk256_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
540
if (temp > surface_height) {
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
542
temp = surface_height;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
547
rq_dlg_param->swath_width_ub = temp;
sys/dev/pci/drm/amd/display/dc/dml/dcn314/display_rq_dlg_calc_314.c
548
rq_dlg_param->req_per_swath_ub = temp >> log2_blk256_height;
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
79
float temp;
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
83
temp = dcn_bw_pow(a, (int)(exp / 2));
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
85
return temp * temp;
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
88
return a * temp * temp;
sys/dev/pci/drm/amd/display/dc/dml2/display_mode_util.c
90
return (temp * temp) / a;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
86
double temp;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
89
temp = math_pow(a, (float)((int)(exp / 2)));
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
91
return (float)(temp * temp);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
94
return (float)(a * temp * temp);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/lib_float_math.c
96
return (float)((temp * temp) / a);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
516
int temp, p0shift, p1shift;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
547
temp = (unsigned int)math_ceil(plane->composition.scaler_info.plane0.h_ratio * stream->timing.h_active / odm_combine_factor);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
549
if (temp < max_per_pipe_vp_p0)
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
550
max_per_pipe_vp_p0 = temp;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
553
temp = (unsigned int)math_ceil(plane->composition.scaler_info.plane1.h_ratio * stream->timing.h_active / odm_combine_factor);
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
555
if (temp < max_per_pipe_vp_p1)
sys/dev/pci/drm/amd/display/dc/dml2/dml21/src/dml2_top/dml2_top_soc15.c
556
max_per_pipe_vp_p1 = temp;
sys/dev/pci/drm/amd/display/dc/dml2/dml_display_rq_dlg_calc.c
265
dml_float_t temp;
sys/dev/pci/drm/amd/display/dc/dml2/dml_display_rq_dlg_calc.c
318
temp = dml_pow(2, 8);
sys/dev/pci/drm/amd/display/dc/dml2/dml_display_rq_dlg_calc.c
319
disp_dlg_regs->refcyc_per_htotal = (dml_uint_t)(ref_freq_to_pix_freq * (dml_float_t)htotal * temp);
sys/dev/pci/drm/amd/display/dc/hubbub/dcn401/dcn401_hubbub.c
1200
uint32_t temp;
sys/dev/pci/drm/amd/display/dc/hubbub/dcn401/dcn401_hubbub.c
1212
REG_GET(DCHUBBUB_CTRL_STATUS, DCHUBBUB_HW_DEBUG, &temp);
sys/dev/pci/drm/amd/display/dc/hubbub/dcn401/dcn401_hubbub.c
1214
temp |= (1 << 5);
sys/dev/pci/drm/amd/display/dc/hubbub/dcn401/dcn401_hubbub.c
1216
temp &= ~(1 << 5);
sys/dev/pci/drm/amd/display/dc/hubbub/dcn401/dcn401_hubbub.c
1218
REG_UPDATE(DCHUBBUB_CTRL_STATUS, DCHUBBUB_HW_DEBUG, temp);
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
184
uint32_t temp, request_bw;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
191
temp = req_bw * link->dpia_bw_alloc_config.bw_granularity;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
192
request_reg_val = temp / Kbps_TO_Gbps;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
195
if (temp % Kbps_TO_Gbps)
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
206
temp = req_bw * link->dpia_bw_alloc_config.bw_granularity;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
207
request_reg_val = temp / Kbps_TO_Gbps;
sys/dev/pci/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
208
if (temp % Kbps_TO_Gbps)
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
161
struct spl_fixed31_32 temp;
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
164
temp = spl_fixpt_from_fraction(rec_in->x * (long long)stream_dst->width,
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
166
rec_out.x = stream_dst->x + spl_fixpt_round(temp);
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
168
temp = spl_fixpt_from_fraction(
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
171
rec_out.width = stream_dst->x + spl_fixpt_round(temp) - rec_out.x;
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
173
temp = spl_fixpt_from_fraction(rec_in->y * (long long)stream_dst->height,
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
175
rec_out.y = stream_dst->y + spl_fixpt_round(temp);
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
177
temp = spl_fixpt_from_fraction(
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
180
rec_out.height = stream_dst->y + spl_fixpt_round(temp) - rec_out.y;
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
550
struct spl_fixed31_32 temp;
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
563
temp = spl_fixpt_mul_int(ratio, recout_offset_within_recout_full);
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
564
*vp_offset = spl_fixpt_floor(temp);
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
565
temp.value &= 0xffffffff;
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
566
*init = spl_fixpt_add(spl_fixpt_div_int(spl_fixpt_add_int(ratio, taps + 1), 2), temp);
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
588
temp = spl_fixpt_add(*init, spl_fixpt_mul_int(ratio, recout_size - 1));
sys/dev/pci/drm/amd/display/dc/sspl/dc_spl.c
589
*vp_size = spl_fixpt_floor(temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2764
int r, temp = 0;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2773
(void *)&temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2778
(void *)&temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2783
(void *)&temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2793
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2802
int temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2805
temp = adev->pm.dpm.thermal.min_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2807
temp = adev->pm.dpm.thermal.max_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2809
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2818
int temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2821
temp = adev->pm.dpm.thermal.min_hotspot_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2823
temp = adev->pm.dpm.thermal.max_hotspot_crit_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2825
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2834
int temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2837
temp = adev->pm.dpm.thermal.min_mem_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2839
temp = adev->pm.dpm.thermal.max_mem_crit_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2841
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2862
int temp = 0;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2869
temp = adev->pm.dpm.thermal.max_hotspot_emergency_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2872
temp = adev->pm.dpm.thermal.max_edge_emergency_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2875
temp = adev->pm.dpm.thermal.max_mem_emergency_temp;
sys/dev/pci/drm/amd/pm/amdgpu_pm.c
2879
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2144
u32 temp;
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2154
temp = sclk >> i;
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2155
if (temp >= min)
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2943
u32 temp;
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2947
temp = RREG32_SMC(0xC0300E0C);
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2949
if (temp)
sys/dev/pci/drm/amd/pm/legacy-dpm/kv_dpm.c
2950
actual_temp = (temp / 8) - 49;
sys/dev/pci/drm/amd/pm/legacy-dpm/legacy_dpm.c
983
int temp, size = sizeof(temp);
sys/dev/pci/drm/amd/pm/legacy-dpm/legacy_dpm.c
993
(void *)&temp,
sys/dev/pci/drm/amd/pm/legacy-dpm/legacy_dpm.c
995
if (temp < adev->pm.dpm.thermal.min_temp)
sys/dev/pci/drm/amd/pm/legacy-dpm/si_dpm.c
7938
u32 temp;
sys/dev/pci/drm/amd/pm/legacy-dpm/si_dpm.c
7942
temp = (RREG32(mmCG_MULT_THERMAL_STATUS) & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >>
sys/dev/pci/drm/amd/pm/legacy-dpm/si_dpm.c
7945
if (temp & 0x200)
sys/dev/pci/drm/amd/pm/legacy-dpm/si_dpm.c
7948
actual_temp = temp & 0x1ff;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c
1231
char *temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c
1239
temp = (char *)table_address;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c
1242
return (AtomCtrl_EDCLeakgeTable *)temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
5914
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
5919
temp = clock >> i;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
5921
if (temp >= min || i == 0)
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
295
int temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
297
temp = PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
301
if (temp & 0x200)
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
302
temp = SMU7_THERMAL_MAXIMUM_TEMP_READING;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
304
temp = temp & 0x1ff;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
306
temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
308
return temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c
1715
uint32_t temp = PHM_GET_FIELD(val, THM_TCON_CUR_TMP, CUR_TEMP);
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c
1718
actual_temp = ((temp / 8) - 49) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c
1720
actual_temp = (temp / 8) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
337
int temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
339
temp = RREG32_SOC15(THM, 0, mmCG_MULT_THERMAL_STATUS);
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
341
temp = (temp & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >>
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
344
temp = temp & 0x1ff;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
346
temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
348
return temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
148
int temp = 0;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
150
temp = RREG32_SOC15(THM, 0, mmCG_MULT_THERMAL_STATUS);
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
152
temp = (temp & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >>
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
155
temp = temp & 0x1ff;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
157
temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega12_thermal.c
158
return temp;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
221
int temp = 0;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
223
temp = RREG32_SOC15(THM, 0, mmCG_MULT_THERMAL_STATUS);
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
225
temp = (temp & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >>
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
228
temp = temp & 0x1ff;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
230
temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
sys/dev/pci/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
231
return temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/ci_smumgr.c
392
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/ci_smumgr.c
400
temp = clock >> i;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/ci_smumgr.c
402
if (temp >= min || i == 0)
sys/dev/pci/drm/amd/pm/powerplay/smumgr/fiji_smumgr.c
607
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/fiji_smumgr.c
612
(uint32_t *)&temp, SMC_RAM_END))
sys/dev/pci/drm/amd/pm/powerplay/smumgr/fiji_smumgr.c
619
(uint8_t)((temp >> 16) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/fiji_smumgr.c
621
(uint8_t)((temp >> 8) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/fiji_smumgr.c
622
smu_data->power_tune_table.Reserved = (uint8_t)(temp & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c
339
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c
344
(uint32_t *)&temp, SMC_RAM_END))
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
525
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
530
(uint32_t *)&temp, SMC_RAM_END))
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
537
(uint8_t)((temp >> 16) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
539
(uint8_t)((temp >> 8) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
540
smu_data->power_tune_table.Reserved = (uint8_t)(temp & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
900
uint64_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
931
temp = clock << table->SclkFcwRangeTable[sclk_setting->PllRange].postdiv;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
932
temp <<= 0x10;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
933
do_div(temp, ref_clock);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
934
sclk_setting->Fcw_frac = temp & 0xffff;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
946
temp = ss_target_freq << table->SclkFcwRangeTable[sclk_setting->PllRange].postdiv;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
947
temp <<= 0x10;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
948
do_div(temp, ref_clock);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/polaris10_smumgr.c
949
sclk_setting->Fcw1_frac = temp & 0xffff;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/tonga_smumgr.c
1914
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/tonga_smumgr.c
1919
(uint32_t *)&temp, SMC_RAM_END))
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1765
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1770
(uint32_t *)&temp, SMC_RAM_END))
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1777
(uint8_t)((temp >> 16) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1779
(uint8_t)((temp >> 8) & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
1780
smu_data->power_tune_table.Reserved = (uint8_t)(temp & 0xff);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
729
uint64_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
762
temp = clock << table->SclkFcwRangeTable[sclk_setting->PllRange].postdiv;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
763
temp <<= 0x10;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
764
do_div(temp, ref_clock);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
765
sclk_setting->Fcw_frac = temp & 0xffff;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
781
temp = ss_target_freq << table->SclkFcwRangeTable[sclk_setting->PllRange].postdiv;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
782
temp <<= 0x10;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
783
do_div(temp, ref_clock);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
784
sclk_setting->Fcw1_frac = temp & 0xffff;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
794
uint32_t temp;
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
801
temp = clock / (i + 1);
sys/dev/pci/drm/amd/pm/powerplay/smumgr/vegam_smumgr.c
803
if (temp >= min || i == 0)
sys/dev/pci/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
1934
uint16_t *temp;
sys/dev/pci/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
1942
GET_PPTABLE_MEMBER(FanMaximumRpm, &temp);
sys/dev/pci/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
1943
*(uint16_t *)data = *temp;
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2218
char temp[8];
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2225
snprintf(temp, sizeof(temp), "-%d", port_num);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2226
strlcat(proppath, temp, proppath_size);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2228
snprintf(temp, sizeof(temp), "-%d", pnum);
sys/dev/pci/drm/display/drm_dp_mst_topology.c
2229
strlcat(proppath, temp, proppath_size);
sys/dev/pci/drm/drm_buddy.c
1236
DRM_LIST_HEAD(temp);
sys/dev/pci/drm/drm_buddy.c
1244
list_move(&block->link, &temp);
sys/dev/pci/drm/drm_buddy.c
1245
trim_list = &temp;
sys/dev/pci/drm/drm_buddy.c
1255
if (!list_empty(&temp))
sys/dev/pci/drm/hdmi.c
1803
const u8 *temp;
sys/dev/pci/drm/hdmi.c
1819
temp = ptr + 2;
sys/dev/pci/drm/hdmi.c
1821
x_lsb = *temp++;
sys/dev/pci/drm/hdmi.c
1822
x_msb = *temp++;
sys/dev/pci/drm/hdmi.c
1824
y_lsb = *temp++;
sys/dev/pci/drm/hdmi.c
1825
y_msb = *temp++;
sys/dev/pci/drm/i915/display/dvo_ivch.c
269
u16 temp;
sys/dev/pci/drm/i915/display/dvo_ivch.c
280
if (!ivch_read(dvo, VR00, &temp))
sys/dev/pci/drm/i915/display/dvo_ivch.c
288
if ((temp & VR00_BASE_ADDRESS_MASK) != dvo->target_addr) {
sys/dev/pci/drm/i915/display/dvo_ivch.c
291
(temp & VR00_BASE_ADDRESS_MASK), dvo->target_addr);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
222
u32 temp;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
224
temp = intel_de_read(display, intel_hdmi->hdmi_reg);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
226
temp |= SDVO_ENABLE;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
228
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
281
u32 temp;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
283
temp = intel_de_read(display, intel_hdmi->hdmi_reg);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
285
temp |= SDVO_ENABLE;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
291
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
293
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
306
temp & ~SDVO_ENABLE);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
313
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
315
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
329
u32 temp;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
331
temp = intel_de_read(display, intel_hdmi->hdmi_reg);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
333
temp |= SDVO_ENABLE;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
349
temp &= ~SDVO_COLOR_FORMAT_MASK;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
350
temp |= SDVO_COLOR_FORMAT_8bpc;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
353
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
357
temp &= ~SDVO_COLOR_FORMAT_MASK;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
358
temp |= HDMI_COLOR_FORMAT_12bpc;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
360
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
385
u32 temp;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
387
temp = intel_de_read(display, intel_hdmi->hdmi_reg);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
389
temp &= ~SDVO_ENABLE;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
390
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
406
temp &= ~SDVO_PIPE_SEL_MASK;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
407
temp |= SDVO_ENABLE | SDVO_PIPE_SEL(PIPE_A);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
412
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
414
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/g4x_hdmi.c
417
temp &= ~SDVO_ENABLE;
sys/dev/pci/drm/i915/display/g4x_hdmi.c
418
intel_de_write(display, intel_hdmi->hdmi_reg, temp);
sys/dev/pci/drm/i915/display/intel_color.c
464
u64 temp[9];
sys/dev/pci/drm/i915/display/intel_color.c
474
input = ctm_mult_by_limited(temp, ctm->matrix);
sys/dev/pci/drm/i915/display/intel_ddi.c
3819
u32 temp;
sys/dev/pci/drm/i915/display/intel_ddi.c
3821
temp = intel_de_read(display, dp_tp_ctl_reg(encoder, crtc_state));
sys/dev/pci/drm/i915/display/intel_ddi.c
3823
temp &= ~DP_TP_CTL_LINK_TRAIN_MASK;
sys/dev/pci/drm/i915/display/intel_ddi.c
3826
temp |= DP_TP_CTL_LINK_TRAIN_NORMAL;
sys/dev/pci/drm/i915/display/intel_ddi.c
3829
temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
sys/dev/pci/drm/i915/display/intel_ddi.c
3832
temp |= DP_TP_CTL_LINK_TRAIN_PAT2;
sys/dev/pci/drm/i915/display/intel_ddi.c
3835
temp |= DP_TP_CTL_LINK_TRAIN_PAT3;
sys/dev/pci/drm/i915/display/intel_ddi.c
3838
temp |= DP_TP_CTL_LINK_TRAIN_PAT4;
sys/dev/pci/drm/i915/display/intel_ddi.c
3842
intel_de_write(display, dp_tp_ctl_reg(encoder, crtc_state), temp);
sys/dev/pci/drm/i915/display/intel_ddi.c
422
u32 temp;
sys/dev/pci/drm/i915/display/intel_ddi.c
429
temp = DP_MSA_MISC_SYNC_CLOCK;
sys/dev/pci/drm/i915/display/intel_ddi.c
433
temp |= DP_MSA_MISC_6_BPC;
sys/dev/pci/drm/i915/display/intel_ddi.c
436
temp |= DP_MSA_MISC_8_BPC;
sys/dev/pci/drm/i915/display/intel_ddi.c
439
temp |= DP_MSA_MISC_10_BPC;
sys/dev/pci/drm/i915/display/intel_ddi.c
442
temp |= DP_MSA_MISC_12_BPC;
sys/dev/pci/drm/i915/display/intel_ddi.c
454
temp |= DP_MSA_MISC_COLOR_CEA_RGB;
sys/dev/pci/drm/i915/display/intel_ddi.c
462
temp |= DP_MSA_MISC_COLOR_YCBCR_444_BT709;
sys/dev/pci/drm/i915/display/intel_ddi.c
471
temp |= DP_MSA_MISC_COLOR_VSC_SDP;
sys/dev/pci/drm/i915/display/intel_ddi.c
474
temp);
sys/dev/pci/drm/i915/display/intel_ddi.c
517
u32 temp;
sys/dev/pci/drm/i915/display/intel_ddi.c
520
temp = TRANS_DDI_FUNC_ENABLE;
sys/dev/pci/drm/i915/display/intel_ddi.c
522
temp |= TGL_TRANS_DDI_SELECT_PORT(port);
sys/dev/pci/drm/i915/display/intel_ddi.c
524
temp |= TRANS_DDI_SELECT_PORT(port);
sys/dev/pci/drm/i915/display/intel_ddi.c
531
temp |= TRANS_DDI_BPC_6;
sys/dev/pci/drm/i915/display/intel_ddi.c
534
temp |= TRANS_DDI_BPC_8;
sys/dev/pci/drm/i915/display/intel_ddi.c
537
temp |= TRANS_DDI_BPC_10;
sys/dev/pci/drm/i915/display/intel_ddi.c
540
temp |= TRANS_DDI_BPC_12;
sys/dev/pci/drm/i915/display/intel_ddi.c
545
temp |= TRANS_DDI_PVSYNC;
sys/dev/pci/drm/i915/display/intel_ddi.c
547
temp |= TRANS_DDI_PHSYNC;
sys/dev/pci/drm/i915/display/intel_ddi.c
560
temp |= TRANS_DDI_EDP_INPUT_A_ONOFF;
sys/dev/pci/drm/i915/display/intel_ddi.c
562
temp |= TRANS_DDI_EDP_INPUT_A_ON;
sys/dev/pci/drm/i915/display/intel_ddi.c
565
temp |= TRANS_DDI_EDP_INPUT_B_ONOFF;
sys/dev/pci/drm/i915/display/intel_ddi.c
568
temp |= TRANS_DDI_EDP_INPUT_C_ONOFF;
sys/dev/pci/drm/i915/display/intel_ddi.c
575
temp |= TRANS_DDI_MODE_SELECT_HDMI;
sys/dev/pci/drm/i915/display/intel_ddi.c
577
temp |= TRANS_DDI_MODE_SELECT_DVI;
sys/dev/pci/drm/i915/display/intel_ddi.c
580
temp |= TRANS_DDI_HDMI_SCRAMBLING;
sys/dev/pci/drm/i915/display/intel_ddi.c
582
temp |= TRANS_DDI_HIGH_TMDS_CHAR_RATE;
sys/dev/pci/drm/i915/display/intel_ddi.c
584
temp |= TRANS_DDI_PORT_WIDTH(crtc_state->lane_count);
sys/dev/pci/drm/i915/display/intel_ddi.c
586
temp |= TRANS_DDI_MODE_SELECT_FDI_OR_128B132B;
sys/dev/pci/drm/i915/display/intel_ddi.c
587
temp |= (crtc_state->fdi_lanes - 1) << 1;
sys/dev/pci/drm/i915/display/intel_ddi.c
591
temp |= TRANS_DDI_MODE_SELECT_FDI_OR_128B132B;
sys/dev/pci/drm/i915/display/intel_ddi.c
593
temp |= TRANS_DDI_MODE_SELECT_DP_MST;
sys/dev/pci/drm/i915/display/intel_ddi.c
594
temp |= DDI_PORT_WIDTH(crtc_state->lane_count);
sys/dev/pci/drm/i915/display/intel_ddi.c
603
temp |= TRANS_DDI_MST_TRANSPORT_SELECT(master);
sys/dev/pci/drm/i915/display/intel_ddi.c
606
temp |= TRANS_DDI_MODE_SELECT_DP_SST;
sys/dev/pci/drm/i915/display/intel_ddi.c
607
temp |= DDI_PORT_WIDTH(crtc_state->lane_count);
sys/dev/pci/drm/i915/display/intel_ddi.c
615
temp |= TRANS_DDI_PORT_SYNC_ENABLE |
sys/dev/pci/drm/i915/display/intel_ddi.c
619
return temp;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2048
u32 temp;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2093
temp = intel_de_read(display, BXT_PORT_PLL(phy, ch, 6));
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2094
temp &= ~PORT_PLL_PROP_COEFF_MASK;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2095
temp &= ~PORT_PLL_INT_COEFF_MASK;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2096
temp &= ~PORT_PLL_GAIN_CTL_MASK;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2097
temp |= hw_state->pll6;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2098
intel_de_write(display, BXT_PORT_PLL(phy, ch, 6), temp);
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2107
temp = intel_de_read(display, BXT_PORT_PLL(phy, ch, 10));
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2108
temp &= ~PORT_PLL_DCO_AMP_OVR_EN_H;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2109
temp &= ~PORT_PLL_DCO_AMP_MASK;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2110
temp |= hw_state->pll10;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2111
intel_de_write(display, BXT_PORT_PLL(phy, ch, 10), temp);
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2114
temp = intel_de_read(display, BXT_PORT_PLL_EBB_4(phy, ch));
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2115
temp |= PORT_PLL_RECALIBRATE;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2116
intel_de_write(display, BXT_PORT_PLL_EBB_4(phy, ch), temp);
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2117
temp &= ~PORT_PLL_10BIT_CLK_ENABLE;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2118
temp |= hw_state->ebb4;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2119
intel_de_write(display, BXT_PORT_PLL_EBB_4(phy, ch), temp);
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2132
temp = intel_de_read(display, BXT_PORT_TX_DW5_LN(phy, ch, 0));
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2133
temp |= DCC_DELAY_RANGE_2;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2134
intel_de_write(display, BXT_PORT_TX_DW5_GRP(phy, ch), temp);
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2141
temp = intel_de_read(display, BXT_PORT_PCS_DW12_LN01(phy, ch));
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2142
temp &= ~LANE_STAGGER_MASK;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2143
temp &= ~LANESTAGGER_STRAP_OVRD;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2144
temp |= hw_state->pcsdw12;
sys/dev/pci/drm/i915/display/intel_dpll_mgr.c
2145
intel_de_write(display, BXT_PORT_PCS_DW12_GRP(phy, ch), temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
1001
u32 temp;
sys/dev/pci/drm/i915/display/intel_fdi.c
1005
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
1006
temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
sys/dev/pci/drm/i915/display/intel_fdi.c
1007
temp |= FDI_DP_PORT_WIDTH(crtc_state->fdi_lanes);
sys/dev/pci/drm/i915/display/intel_fdi.c
1008
temp |= (intel_de_read(display, TRANSCONF(display, pipe)) & TRANSCONF_BPC_MASK) << 11;
sys/dev/pci/drm/i915/display/intel_fdi.c
1009
intel_de_write(display, reg, temp | FDI_RX_PLL_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
1021
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
1022
if ((temp & FDI_TX_PLL_ENABLE) == 0) {
sys/dev/pci/drm/i915/display/intel_fdi.c
1023
intel_de_write(display, reg, temp | FDI_TX_PLL_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
1054
u32 temp;
sys/dev/pci/drm/i915/display/intel_fdi.c
1061
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
1062
temp &= ~(0x7 << 16);
sys/dev/pci/drm/i915/display/intel_fdi.c
1063
temp |= (intel_de_read(display, TRANSCONF(display, pipe)) & TRANSCONF_BPC_MASK) << 11;
sys/dev/pci/drm/i915/display/intel_fdi.c
1064
intel_de_write(display, reg, temp & ~FDI_RX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
1079
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
1081
temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
1082
temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
1084
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
1085
temp |= FDI_LINK_TRAIN_PATTERN_1;
sys/dev/pci/drm/i915/display/intel_fdi.c
1088
temp &= ~(0x07 << 16);
sys/dev/pci/drm/i915/display/intel_fdi.c
1089
temp |= (intel_de_read(display, TRANSCONF(display, pipe)) & TRANSCONF_BPC_MASK) << 11;
sys/dev/pci/drm/i915/display/intel_fdi.c
1090
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
391
u32 temp;
sys/dev/pci/drm/i915/display/intel_fdi.c
393
temp = intel_de_read(display, SOUTH_CHICKEN1);
sys/dev/pci/drm/i915/display/intel_fdi.c
394
if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
sys/dev/pci/drm/i915/display/intel_fdi.c
404
temp &= ~FDI_BC_BIFURCATION_SELECT;
sys/dev/pci/drm/i915/display/intel_fdi.c
406
temp |= FDI_BC_BIFURCATION_SELECT;
sys/dev/pci/drm/i915/display/intel_fdi.c
410
intel_de_write(display, SOUTH_CHICKEN1, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
443
u32 temp;
sys/dev/pci/drm/i915/display/intel_fdi.c
447
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
449
temp &= ~FDI_LINK_TRAIN_NONE_IVB;
sys/dev/pci/drm/i915/display/intel_fdi.c
450
temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
sys/dev/pci/drm/i915/display/intel_fdi.c
452
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
453
temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
sys/dev/pci/drm/i915/display/intel_fdi.c
455
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
458
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
460
temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
461
temp |= FDI_LINK_TRAIN_NORMAL_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
463
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
464
temp |= FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
466
intel_de_write(display, reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
484
u32 temp, tries;
sys/dev/pci/drm/i915/display/intel_fdi.c
499
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
500
temp &= ~FDI_RX_SYMBOL_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
501
temp &= ~FDI_RX_BIT_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
502
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
508
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
509
temp &= ~FDI_DP_PORT_WIDTH_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
510
temp |= FDI_DP_PORT_WIDTH(crtc_state->fdi_lanes);
sys/dev/pci/drm/i915/display/intel_fdi.c
511
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
512
temp |= FDI_LINK_TRAIN_PATTERN_1;
sys/dev/pci/drm/i915/display/intel_fdi.c
513
intel_de_write(display, reg, temp | FDI_TX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
516
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
517
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
518
temp |= FDI_LINK_TRAIN_PATTERN_1;
sys/dev/pci/drm/i915/display/intel_fdi.c
519
intel_de_write(display, reg, temp | FDI_RX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
532
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
533
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
535
if ((temp & FDI_RX_BIT_LOCK)) {
sys/dev/pci/drm/i915/display/intel_fdi.c
537
intel_de_write(display, reg, temp | FDI_RX_BIT_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
554
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
555
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
557
if (temp & FDI_RX_SYMBOL_LOCK) {
sys/dev/pci/drm/i915/display/intel_fdi.c
559
temp | FDI_RX_SYMBOL_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
585
u32 temp, i, retry;
sys/dev/pci/drm/i915/display/intel_fdi.c
597
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
598
temp &= ~FDI_RX_SYMBOL_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
599
temp &= ~FDI_RX_BIT_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
600
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
607
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
608
temp &= ~FDI_DP_PORT_WIDTH_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
609
temp |= FDI_DP_PORT_WIDTH(crtc_state->fdi_lanes);
sys/dev/pci/drm/i915/display/intel_fdi.c
610
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
611
temp |= FDI_LINK_TRAIN_PATTERN_1;
sys/dev/pci/drm/i915/display/intel_fdi.c
612
temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
614
temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
sys/dev/pci/drm/i915/display/intel_fdi.c
615
intel_de_write(display, reg, temp | FDI_TX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
621
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
623
temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
624
temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
626
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
627
temp |= FDI_LINK_TRAIN_PATTERN_1;
sys/dev/pci/drm/i915/display/intel_fdi.c
629
intel_de_write(display, reg, temp | FDI_RX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
642
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
643
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
644
if (temp & FDI_RX_BIT_LOCK) {
sys/dev/pci/drm/i915/display/intel_fdi.c
646
temp | FDI_RX_BIT_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
661
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
662
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
663
temp |= FDI_LINK_TRAIN_PATTERN_2;
sys/dev/pci/drm/i915/display/intel_fdi.c
665
temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
667
temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
sys/dev/pci/drm/i915/display/intel_fdi.c
669
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
672
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
674
temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
675
temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
677
temp &= ~FDI_LINK_TRAIN_NONE;
sys/dev/pci/drm/i915/display/intel_fdi.c
678
temp |= FDI_LINK_TRAIN_PATTERN_2;
sys/dev/pci/drm/i915/display/intel_fdi.c
680
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
693
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
694
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
695
if (temp & FDI_RX_SYMBOL_LOCK) {
sys/dev/pci/drm/i915/display/intel_fdi.c
697
temp | FDI_RX_SYMBOL_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
720
u32 temp, i, j;
sys/dev/pci/drm/i915/display/intel_fdi.c
734
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
735
temp &= ~FDI_RX_SYMBOL_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
736
temp &= ~FDI_RX_BIT_LOCK;
sys/dev/pci/drm/i915/display/intel_fdi.c
737
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
749
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
750
temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
sys/dev/pci/drm/i915/display/intel_fdi.c
751
temp &= ~FDI_TX_ENABLE;
sys/dev/pci/drm/i915/display/intel_fdi.c
752
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
755
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
756
temp &= ~FDI_LINK_TRAIN_AUTO;
sys/dev/pci/drm/i915/display/intel_fdi.c
757
temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
758
temp &= ~FDI_RX_ENABLE;
sys/dev/pci/drm/i915/display/intel_fdi.c
759
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
763
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
764
temp &= ~FDI_DP_PORT_WIDTH_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
765
temp |= FDI_DP_PORT_WIDTH(crtc_state->fdi_lanes);
sys/dev/pci/drm/i915/display/intel_fdi.c
766
temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
sys/dev/pci/drm/i915/display/intel_fdi.c
767
temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
sys/dev/pci/drm/i915/display/intel_fdi.c
768
temp |= snb_b_fdi_train_param[j/2];
sys/dev/pci/drm/i915/display/intel_fdi.c
769
temp |= FDI_COMPOSITE_SYNC;
sys/dev/pci/drm/i915/display/intel_fdi.c
770
intel_de_write(display, reg, temp | FDI_TX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
776
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
777
temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
sys/dev/pci/drm/i915/display/intel_fdi.c
778
temp |= FDI_COMPOSITE_SYNC;
sys/dev/pci/drm/i915/display/intel_fdi.c
779
intel_de_write(display, reg, temp | FDI_RX_ENABLE);
sys/dev/pci/drm/i915/display/intel_fdi.c
786
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
787
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
789
if (temp & FDI_RX_BIT_LOCK ||
sys/dev/pci/drm/i915/display/intel_fdi.c
792
temp | FDI_RX_BIT_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
818
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_fdi.c
819
drm_dbg_kms(display->drm, "FDI_RX_IIR 0x%x\n", temp);
sys/dev/pci/drm/i915/display/intel_fdi.c
821
if (temp & FDI_RX_SYMBOL_LOCK ||
sys/dev/pci/drm/i915/display/intel_fdi.c
824
temp | FDI_RX_SYMBOL_LOCK);
sys/dev/pci/drm/i915/display/intel_fdi.c
853
u32 temp, i, rx_ctl_val;
sys/dev/pci/drm/i915/display/intel_fdi.c
930
temp = intel_de_read(display, DP_TP_STATUS(PORT_E));
sys/dev/pci/drm/i915/display/intel_fdi.c
931
if (temp & DP_TP_STATUS_AUTOTRAIN_DONE) {
sys/dev/pci/drm/i915/display/intel_lvds.c
248
u32 temp;
sys/dev/pci/drm/i915/display/intel_lvds.c
259
temp = lvds_encoder->init_lvds_val;
sys/dev/pci/drm/i915/display/intel_lvds.c
260
temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
sys/dev/pci/drm/i915/display/intel_lvds.c
263
temp &= ~LVDS_PIPE_SEL_MASK_CPT;
sys/dev/pci/drm/i915/display/intel_lvds.c
264
temp |= LVDS_PIPE_SEL_CPT(pipe);
sys/dev/pci/drm/i915/display/intel_lvds.c
266
temp &= ~LVDS_PIPE_SEL_MASK;
sys/dev/pci/drm/i915/display/intel_lvds.c
267
temp |= LVDS_PIPE_SEL(pipe);
sys/dev/pci/drm/i915/display/intel_lvds.c
271
temp &= ~LVDS_BORDER_ENABLE;
sys/dev/pci/drm/i915/display/intel_lvds.c
272
temp |= crtc_state->gmch_pfit.lvds_border_bits;
sys/dev/pci/drm/i915/display/intel_lvds.c
279
temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
sys/dev/pci/drm/i915/display/intel_lvds.c
281
temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
sys/dev/pci/drm/i915/display/intel_lvds.c
289
temp &= ~LVDS_A3_POWER_MASK;
sys/dev/pci/drm/i915/display/intel_lvds.c
290
temp |= lvds_encoder->a3_power;
sys/dev/pci/drm/i915/display/intel_lvds.c
303
temp |= LVDS_ENABLE_DITHER;
sys/dev/pci/drm/i915/display/intel_lvds.c
305
temp &= ~LVDS_ENABLE_DITHER;
sys/dev/pci/drm/i915/display/intel_lvds.c
307
temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
sys/dev/pci/drm/i915/display/intel_lvds.c
309
temp |= LVDS_HSYNC_POLARITY;
sys/dev/pci/drm/i915/display/intel_lvds.c
311
temp |= LVDS_VSYNC_POLARITY;
sys/dev/pci/drm/i915/display/intel_lvds.c
313
intel_de_write(display, lvds_encoder->reg, temp);
sys/dev/pci/drm/i915/display/intel_pch_display.c
368
u32 temp;
sys/dev/pci/drm/i915/display/intel_pch_display.c
382
temp = intel_de_read(display, PCH_DPLL_SEL);
sys/dev/pci/drm/i915/display/intel_pch_display.c
383
temp |= TRANS_DPLL_ENABLE(pipe);
sys/dev/pci/drm/i915/display/intel_pch_display.c
387
temp |= sel;
sys/dev/pci/drm/i915/display/intel_pch_display.c
389
temp &= ~sel;
sys/dev/pci/drm/i915/display/intel_pch_display.c
390
intel_de_write(display, PCH_DPLL_SEL, temp);
sys/dev/pci/drm/i915/display/intel_pch_display.c
424
temp = intel_de_read(display, reg);
sys/dev/pci/drm/i915/display/intel_pch_display.c
425
temp &= ~(TRANS_DP_PORT_SEL_MASK |
sys/dev/pci/drm/i915/display/intel_pch_display.c
429
temp |= TRANS_DP_OUTPUT_ENABLE;
sys/dev/pci/drm/i915/display/intel_pch_display.c
430
temp |= bpc << 9; /* same format but at 11:9 */
sys/dev/pci/drm/i915/display/intel_pch_display.c
433
temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
sys/dev/pci/drm/i915/display/intel_pch_display.c
435
temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
sys/dev/pci/drm/i915/display/intel_pch_display.c
439
temp |= TRANS_DP_PORT_SEL(port);
sys/dev/pci/drm/i915/display/intel_pch_display.c
441
intel_de_write(display, reg, temp);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
118
u32 temp;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
124
temp = intel_sbi_read(display, SBI_SSCCTL6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
125
temp |= SBI_SSCCTL_DISABLE;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
126
intel_sbi_write(display, SBI_SSCCTL6, temp, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
191
u32 temp;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
211
temp = intel_sbi_read(display, SBI_SSCDIVINTPHASE6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
212
temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
213
temp |= SBI_SSCDIVINTPHASE_DIVSEL(p.divsel);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
214
temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
215
temp |= SBI_SSCDIVINTPHASE_INCVAL(p.phaseinc);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
216
temp |= SBI_SSCDIVINTPHASE_DIR(p.phasedir);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
217
temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
218
intel_sbi_write(display, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
221
temp = intel_sbi_read(display, SBI_SSCAUXDIV6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
222
temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
223
temp |= SBI_SSCAUXDIV_FINALDIV2SEL(p.auxdiv);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
224
intel_sbi_write(display, SBI_SSCAUXDIV6, temp, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
227
temp = intel_sbi_read(display, SBI_SSCCTL6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
228
temp &= ~SBI_SSCCTL_DISABLE;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
229
intel_sbi_write(display, SBI_SSCCTL6, temp, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
242
u32 temp;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
251
temp = intel_sbi_read(display, SBI_SSCCTL6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
252
if (temp & SBI_SSCCTL_DISABLE) {
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
257
temp = intel_sbi_read(display, SBI_SSCDIVINTPHASE6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
258
p.divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
260
p.phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
263
temp = intel_sbi_read(display, SBI_SSCAUXDIV6, SBI_ICLK);
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
264
p.auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
541
u32 temp;
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
543
temp = intel_de_read(display, PCH_DPLL(pll->info->id));
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
545
if (!(temp & DPLL_VCO_ENABLE))
sys/dev/pci/drm/i915/display/intel_pch_refclk.c
548
if ((temp & PLL_REF_INPUT_MASK) ==
sys/dev/pci/drm/i915/display/intel_sdvo.c
1842
u32 temp;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1849
temp = intel_de_read(display, intel_sdvo->sdvo_reg);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1851
temp &= ~SDVO_ENABLE;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1852
intel_sdvo_write_sdvox(intel_sdvo, temp);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1867
temp &= ~SDVO_PIPE_SEL_MASK;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1868
temp |= SDVO_ENABLE | SDVO_PIPE_SEL(PIPE_A);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1869
intel_sdvo_write_sdvox(intel_sdvo, temp);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1871
temp &= ~SDVO_ENABLE;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1872
intel_sdvo_write_sdvox(intel_sdvo, temp);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1905
u32 temp;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1910
temp = intel_de_read(display, intel_sdvo->sdvo_reg);
sys/dev/pci/drm/i915/display/intel_sdvo.c
1911
temp |= SDVO_ENABLE;
sys/dev/pci/drm/i915/display/intel_sdvo.c
1912
intel_sdvo_write_sdvox(intel_sdvo, temp);
sys/dev/pci/drm/i915/display/intel_snps_hdmi_pll.c
74
u64 temp;
sys/dev/pci/drm/i915/display/intel_snps_hdmi_pll.c
94
temp = curve_2_interpolated * (4 - mpll_ana_v2i);
sys/dev/pci/drm/i915/display/intel_snps_hdmi_pll.c
95
curve_2_scaled1 = DIV_ROUND_DOWN_ULL(temp, 16000);
sys/dev/pci/drm/i915/display/intel_snps_hdmi_pll.c
96
curve_2_scaled2 = DIV_ROUND_DOWN_ULL(temp, 160);
sys/dev/pci/drm/i915/display/intel_vblank.c
274
int i, temp;
sys/dev/pci/drm/i915/display/intel_vblank.c
278
temp = intel_de_read_fw(display,
sys/dev/pci/drm/i915/display/intel_vblank.c
280
if (temp != position) {
sys/dev/pci/drm/i915/display/intel_vblank.c
281
position = temp;
sys/dev/pci/drm/i915/display/vlv_dsi.c
620
u32 temp = intel_dsi->pixel_overlap;
sys/dev/pci/drm/i915/display/vlv_dsi.c
626
temp << BXT_PIXEL_OVERLAP_CNT_SHIFT);
sys/dev/pci/drm/i915/display/vlv_dsi.c
630
temp << PIXEL_OVERLAP_CNT_SHIFT);
sys/dev/pci/drm/i915/display/vlv_dsi.c
636
u32 temp;
sys/dev/pci/drm/i915/display/vlv_dsi.c
638
temp = intel_de_read(display, port_ctrl);
sys/dev/pci/drm/i915/display/vlv_dsi.c
640
temp &= ~LANE_CONFIGURATION_MASK;
sys/dev/pci/drm/i915/display/vlv_dsi.c
641
temp &= ~DUAL_LINK_MODE_MASK;
sys/dev/pci/drm/i915/display/vlv_dsi.c
644
temp |= (intel_dsi->dual_link - 1)
sys/dev/pci/drm/i915/display/vlv_dsi.c
647
temp |= LANE_CONFIGURATION_DUAL_LINK_A;
sys/dev/pci/drm/i915/display/vlv_dsi.c
649
temp |= crtc->pipe ?
sys/dev/pci/drm/i915/display/vlv_dsi.c
655
temp |= DITHERING_ENABLE;
sys/dev/pci/drm/i915/display/vlv_dsi.c
658
intel_de_write(display, port_ctrl, temp | DPI_ENABLE);
sys/dev/pci/drm/i915/display/vlv_dsi_pll.c
380
u32 temp;
sys/dev/pci/drm/i915/display/vlv_dsi_pll.c
382
temp = intel_de_read(display, MIPI_CTRL(display, port));
sys/dev/pci/drm/i915/display/vlv_dsi_pll.c
383
temp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
sys/dev/pci/drm/i915/display/vlv_dsi_pll.c
385
temp | intel_dsi->escape_clk_div << ESCAPE_CLOCK_DIVIDER_SHIFT);
sys/dev/pci/drm/i915/gt/gen6_ppgtt.h
61
({ u32 temp = ALIGN(start + 1, 1 << GEN6_PDE_SHIFT); \
sys/dev/pci/drm/i915/gt/gen6_ppgtt.h
62
temp = min(temp - start, length); \
sys/dev/pci/drm/i915/gt/gen6_ppgtt.h
63
start += temp; length -= temp; }), ++iter)
sys/dev/pci/drm/i915/gt/intel_ggtt_fencing.c
749
char temp[64];
sys/dev/pci/drm/i915/gt/intel_ggtt_fencing.c
756
memcpy(temp, &vaddr[i], 64);
sys/dev/pci/drm/i915/gt/intel_ggtt_fencing.c
758
memcpy(&vaddr[i + 64], temp, 64);
sys/dev/pci/drm/i915/gvt/handlers.c
556
u32 temp;
sys/dev/pci/drm/i915/gvt/handlers.c
577
temp = vgpu_vreg_t(vgpu, BXT_PORT_PLL_ENABLE(port));
sys/dev/pci/drm/i915/gvt/handlers.c
578
if (!(temp & PORT_PLL_ENABLE) || !(temp & PORT_PLL_LOCK)) {
sys/dev/pci/drm/i915/gvt/handlers.c
580
vgpu->id, port_name(port), temp);
sys/dev/pci/drm/i915/i915_hwmon.c
285
HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
sys/dev/pci/drm/i915/soc/intel_gmch.c
116
u32 temp;
sys/dev/pci/drm/i915/soc/intel_gmch.c
125
pci_read_config_dword(i915->gmch.pdev, DEVEN, &temp);
sys/dev/pci/drm/i915/soc/intel_gmch.c
126
enabled = !!(temp & DEVEN_MCHBAR_EN);
sys/dev/pci/drm/i915/soc/intel_gmch.c
128
pci_read_config_dword(i915->gmch.pdev, mchbar_reg(i915), &temp);
sys/dev/pci/drm/i915/soc/intel_gmch.c
129
enabled = temp & 1;
sys/dev/pci/drm/i915/soc/intel_gmch.c
144
temp | DEVEN_MCHBAR_EN);
sys/dev/pci/drm/i915/soc/intel_gmch.c
146
pci_read_config_dword(i915->gmch.pdev, mchbar_reg(i915), &temp);
sys/dev/pci/drm/i915/soc/intel_gmch.c
147
pci_write_config_dword(i915->gmch.pdev, mchbar_reg(i915), temp | 1);
sys/dev/pci/drm/include/linux/list.h
190
#define list_for_each_safe(entry, temp, head) \
sys/dev/pci/drm/include/linux/list.h
191
for (entry = (head)->next, temp = (entry)->next; \
sys/dev/pci/drm/include/linux/list.h
193
entry = temp, temp = entry->next)
sys/dev/pci/drm/linux_radix.c
172
struct radix_tree_node *temp[RADIX_TREE_MAX_HEIGHT - 1];
sys/dev/pci/drm/linux_radix.c
227
temp[idx] = malloc(sizeof(*node), M_RADIX,
sys/dev/pci/drm/linux_radix.c
229
if (temp[idx] == NULL) {
sys/dev/pci/drm/linux_radix.c
231
free(temp[idx], M_RADIX, sizeof(*node));
sys/dev/pci/drm/linux_radix.c
245
node->slots[idx] = temp[height - 1];
sys/dev/pci/drm/radeon/atom.c
117
uint32_t temp = 0xCDCDCDCD;
sys/dev/pci/drm/radeon/atom.c
125
temp = ctx->card->ioreg_read(ctx->card, CU16(base + 1));
sys/dev/pci/drm/radeon/atom.c
131
ctx->card->ioreg_write(ctx->card, CU16(base + 1), temp);
sys/dev/pci/drm/radeon/atom.c
135
temp &=
sys/dev/pci/drm/radeon/atom.c
141
temp |=
sys/dev/pci/drm/radeon/atom.c
147
temp &=
sys/dev/pci/drm/radeon/atom.c
150
temp |=
sys/dev/pci/drm/radeon/atom.c
157
temp &=
sys/dev/pci/drm/radeon/atom.c
160
temp |=
sys/dev/pci/drm/radeon/atom.c
167
temp &=
sys/dev/pci/drm/radeon/atom.c
170
temp |=
sys/dev/pci/drm/radeon/atom.c
177
return temp;
sys/dev/pci/drm/radeon/atombios_encoders.c
1534
uint32_t temp, reg;
sys/dev/pci/drm/radeon/atombios_encoders.c
1544
temp = RREG32(reg);
sys/dev/pci/drm/radeon/atombios_encoders.c
1559
WREG32(reg, temp);
sys/dev/pci/drm/radeon/cik.c
204
u32 temp;
sys/dev/pci/drm/radeon/cik.c
207
temp = (RREG32_SMC(CG_MULT_THERMAL_STATUS) & CTF_TEMP_MASK) >>
sys/dev/pci/drm/radeon/cik.c
210
if (temp & 0x200)
sys/dev/pci/drm/radeon/cik.c
213
actual_temp = temp & 0x1ff;
sys/dev/pci/drm/radeon/cik.c
221
u32 temp;
sys/dev/pci/drm/radeon/cik.c
224
temp = RREG32_SMC(0xC0300E0C);
sys/dev/pci/drm/radeon/cik.c
226
if (temp)
sys/dev/pci/drm/radeon/cik.c
227
actual_temp = (temp / 8) - 49;
sys/dev/pci/drm/radeon/evergreen.c
1457
u32 temp, toffset;
sys/dev/pci/drm/radeon/evergreen.c
1463
temp = (RREG32(CG_TS0_STATUS) & TS0_ADC_DOUT_MASK) >>
sys/dev/pci/drm/radeon/evergreen.c
1467
actual_temp = temp / 2 - (0x200 - toffset);
sys/dev/pci/drm/radeon/evergreen.c
1469
actual_temp = temp / 2 + toffset;
sys/dev/pci/drm/radeon/evergreen.c
1474
temp = (RREG32(CG_MULT_THERMAL_STATUS) & ASIC_T_MASK) >>
sys/dev/pci/drm/radeon/evergreen.c
1477
if (temp & 0x400)
sys/dev/pci/drm/radeon/evergreen.c
1479
else if (temp & 0x200)
sys/dev/pci/drm/radeon/evergreen.c
1481
else if (temp & 0x100) {
sys/dev/pci/drm/radeon/evergreen.c
1482
actual_temp = temp & 0x1ff;
sys/dev/pci/drm/radeon/evergreen.c
1485
actual_temp = temp & 0xff;
sys/dev/pci/drm/radeon/evergreen.c
1495
u32 temp = RREG32(CG_THERMAL_STATUS) & 0xff;
sys/dev/pci/drm/radeon/evergreen.c
1496
int actual_temp = temp - 49;
sys/dev/pci/drm/radeon/kv_dpm.c
1881
u32 temp;
sys/dev/pci/drm/radeon/kv_dpm.c
1892
temp = sclk / sumo_get_sleep_divider_from_id(i);
sys/dev/pci/drm/radeon/kv_dpm.c
1893
if (temp >= min)
sys/dev/pci/drm/radeon/ni.c
856
u32 temp = RREG32_SMC(TN_CURRENT_GNB_TEMP) & 0x7ff;
sys/dev/pci/drm/radeon/ni.c
857
int actual_temp = (temp / 8) - 49;
sys/dev/pci/drm/radeon/r100.c
1809
uint32_t temp = idx_value >> 4;
sys/dev/pci/drm/radeon/r100.c
1811
track->textures[i].enabled = !!(temp & (1 << i));
sys/dev/pci/drm/radeon/r100.c
2844
uint32_t temp;
sys/dev/pci/drm/radeon/r100.c
2846
temp = RREG32(RADEON_CONFIG_CNTL);
sys/dev/pci/drm/radeon/r100.c
2848
temp &= ~RADEON_CFG_VGA_RAM_EN;
sys/dev/pci/drm/radeon/r100.c
2849
temp |= RADEON_CFG_VGA_IO_DIS;
sys/dev/pci/drm/radeon/r100.c
2851
temp &= ~RADEON_CFG_VGA_IO_DIS;
sys/dev/pci/drm/radeon/r100.c
2853
WREG32(RADEON_CONFIG_CNTL, temp);
sys/dev/pci/drm/radeon/r100.c
3172
uint32_t temp, data, mem_trcd, mem_trp, mem_tras;
sys/dev/pci/drm/radeon/r100.c
3283
temp = (rdev->mc.vram_width / 8) * (rdev->mc.vram_is_ddr ? 2 : 1);
sys/dev/pci/drm/radeon/r100.c
3284
temp_ff.full = dfixed_const(temp);
sys/dev/pci/drm/radeon/r100.c
3312
temp = RREG32(RADEON_MEM_TIMING_CNTL);
sys/dev/pci/drm/radeon/r100.c
3314
mem_trcd = ((temp >> 2) & 0x3) + 1;
sys/dev/pci/drm/radeon/r100.c
3315
mem_trp = ((temp & 0x3)) + 1;
sys/dev/pci/drm/radeon/r100.c
3316
mem_tras = ((temp & 0x70) >> 4) + 1;
sys/dev/pci/drm/radeon/r100.c
3319
mem_trcd = (temp & 0x7) + 1;
sys/dev/pci/drm/radeon/r100.c
3320
mem_trp = ((temp >> 8) & 0x7) + 1;
sys/dev/pci/drm/radeon/r100.c
3321
mem_tras = ((temp >> 11) & 0xf) + 4;
sys/dev/pci/drm/radeon/r100.c
3325
mem_trcd = (temp & 0x7) + 3;
sys/dev/pci/drm/radeon/r100.c
3326
mem_trp = ((temp >> 8) & 0x7) + 3;
sys/dev/pci/drm/radeon/r100.c
3327
mem_tras = ((temp >> 11) & 0xf) + 6;
sys/dev/pci/drm/radeon/r100.c
3332
mem_trcd = (temp & 0xf) + 3;
sys/dev/pci/drm/radeon/r100.c
3335
mem_trp = ((temp >> 8) & 0xf) + 3;
sys/dev/pci/drm/radeon/r100.c
3338
mem_tras = ((temp >> 12) & 0x1f) + 6;
sys/dev/pci/drm/radeon/r100.c
3342
mem_trcd = (temp & 0x7) + 1;
sys/dev/pci/drm/radeon/r100.c
3343
mem_trp = ((temp >> 8) & 0x7) + 1;
sys/dev/pci/drm/radeon/r100.c
3344
mem_tras = ((temp >> 12) & 0xf) + 4;
sys/dev/pci/drm/radeon/r100.c
3352
temp = RREG32(RADEON_MEM_SDRAM_MODE_REG);
sys/dev/pci/drm/radeon/r100.c
3353
data = (temp & (7 << 20)) >> 20;
sys/dev/pci/drm/radeon/r100.c
3365
data = (temp >> 23) & 0x7;
sys/dev/pci/drm/radeon/r100.c
3373
temp = RREG32(RADEON_MEM_CNTL);
sys/dev/pci/drm/radeon/r100.c
3374
data = (R300_MEM_NUM_CHANNELS_MASK & temp);
sys/dev/pci/drm/radeon/r100.c
3376
if (R300_MEM_USE_CD_CH_ONLY & temp) {
sys/dev/pci/drm/radeon/r100.c
3377
temp = RREG32(R300_MC_IND_INDEX);
sys/dev/pci/drm/radeon/r100.c
3378
temp &= ~R300_MC_IND_ADDR_MASK;
sys/dev/pci/drm/radeon/r100.c
3379
temp |= R300_MC_READ_CNTL_CD_mcind;
sys/dev/pci/drm/radeon/r100.c
3380
WREG32(R300_MC_IND_INDEX, temp);
sys/dev/pci/drm/radeon/r100.c
3381
temp = RREG32(R300_MC_IND_DATA);
sys/dev/pci/drm/radeon/r100.c
3382
data = (R300_MEM_RBS_POSITION_C_MASK & temp);
sys/dev/pci/drm/radeon/r100.c
3384
temp = RREG32(R300_MC_READ_CNTL_AB);
sys/dev/pci/drm/radeon/r100.c
3385
data = (R300_MEM_RBS_POSITION_A_MASK & temp);
sys/dev/pci/drm/radeon/r100.c
3388
temp = RREG32(R300_MC_READ_CNTL_AB);
sys/dev/pci/drm/radeon/r100.c
3389
data = (R300_MEM_RBS_POSITION_A_MASK & temp);
sys/dev/pci/drm/radeon/r100.c
3524
temp = RREG32(RADEON_GRPH_BUFFER_CNTL);
sys/dev/pci/drm/radeon/r100.c
3525
temp &= ~(RADEON_GRPH_STOP_REQ_MASK);
sys/dev/pci/drm/radeon/r100.c
3526
temp |= (stop_req << RADEON_GRPH_STOP_REQ_SHIFT);
sys/dev/pci/drm/radeon/r100.c
3527
temp &= ~(RADEON_GRPH_START_REQ_MASK);
sys/dev/pci/drm/radeon/r100.c
3532
temp |= (stop_req << RADEON_GRPH_START_REQ_SHIFT);
sys/dev/pci/drm/radeon/r100.c
3533
temp |= RADEON_GRPH_BUFFER_SIZE;
sys/dev/pci/drm/radeon/r100.c
3534
temp &= ~(RADEON_GRPH_CRITICAL_CNTL |
sys/dev/pci/drm/radeon/r100.c
3540
WREG32(RADEON_GRPH_BUFFER_CNTL, ((temp & ~RADEON_GRPH_CRITICAL_POINT_MASK) |
sys/dev/pci/drm/radeon/r100.c
3547
temp = RREG32(RS400_DISP1_REG_CNTL);
sys/dev/pci/drm/radeon/r100.c
3548
temp &= ~(RS400_DISP1_START_REQ_LEVEL_MASK |
sys/dev/pci/drm/radeon/r100.c
3550
WREG32(RS400_DISP1_REQ_CNTL1, (temp |
sys/dev/pci/drm/radeon/r100.c
3553
temp = RREG32(RS400_DMIF_MEM_CNTL1);
sys/dev/pci/drm/radeon/r100.c
3554
temp &= ~(RS400_DISP1_CRITICAL_POINT_START_MASK |
sys/dev/pci/drm/radeon/r100.c
3556
WREG32(RS400_DMIF_MEM_CNTL1, (temp |
sys/dev/pci/drm/radeon/r100.c
3598
temp = (rdev->mc.vram_width * rdev->mc.vram_is_ddr + 1)/128;
sys/dev/pci/drm/radeon/r100.c
3599
temp_ff.full = dfixed_const(temp);
sys/dev/pci/drm/radeon/r100.c
3639
temp = RREG32(RS400_DISP2_REQ_CNTL1);
sys/dev/pci/drm/radeon/r100.c
3640
temp &= ~(RS400_DISP2_START_REQ_LEVEL_MASK |
sys/dev/pci/drm/radeon/r100.c
3642
WREG32(RS400_DISP2_REQ_CNTL1, (temp |
sys/dev/pci/drm/radeon/r100.c
3645
temp = RREG32(RS400_DISP2_REQ_CNTL2);
sys/dev/pci/drm/radeon/r100.c
3646
temp &= ~(RS400_DISP2_CRITICAL_POINT_START_MASK |
sys/dev/pci/drm/radeon/r100.c
3648
WREG32(RS400_DISP2_REQ_CNTL2, (temp |
sys/dev/pci/drm/radeon/r200.c
372
uint32_t temp = idx_value >> 4;
sys/dev/pci/drm/radeon/r200.c
374
track->textures[i].enabled = !!(temp & (1 << i));
sys/dev/pci/drm/radeon/r600.c
3192
uint32_t temp;
sys/dev/pci/drm/radeon/r600.c
3194
temp = RREG32(CONFIG_CNTL);
sys/dev/pci/drm/radeon/r600.c
3196
temp &= ~(1<<0);
sys/dev/pci/drm/radeon/r600.c
3197
temp |= (1<<1);
sys/dev/pci/drm/radeon/r600.c
3199
temp &= ~(1<<1);
sys/dev/pci/drm/radeon/r600.c
3201
WREG32(CONFIG_CNTL, temp);
sys/dev/pci/drm/radeon/r600.c
352
u32 temp = (RREG32(CG_THERMAL_STATUS) & ASIC_T_MASK) >>
sys/dev/pci/drm/radeon/r600.c
354
int actual_temp = temp & 0xff;
sys/dev/pci/drm/radeon/r600.c
356
if (temp & 0x100)
sys/dev/pci/drm/radeon/radeon_i2c.c
127
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/radeon/radeon_i2c.c
128
temp &= ~(1 << 16);
sys/dev/pci/drm/radeon/radeon_i2c.c
129
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
133
temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
134
WREG32(rec->a_clk_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
136
temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
137
WREG32(rec->a_data_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
140
temp = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
141
WREG32(rec->en_clk_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
143
temp = RREG32(rec->en_data_reg) & ~rec->en_data_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
144
WREG32(rec->en_data_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
147
temp = RREG32(rec->mask_clk_reg) | rec->mask_clk_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
148
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
149
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/radeon/radeon_i2c.c
151
temp = RREG32(rec->mask_data_reg) | rec->mask_data_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
152
WREG32(rec->mask_data_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
153
temp = RREG32(rec->mask_data_reg);
sys/dev/pci/drm/radeon/radeon_i2c.c
163
uint32_t temp;
sys/dev/pci/drm/radeon/radeon_i2c.c
166
temp = RREG32(rec->mask_clk_reg) & ~rec->mask_clk_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
167
WREG32(rec->mask_clk_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
168
temp = RREG32(rec->mask_clk_reg);
sys/dev/pci/drm/radeon/radeon_i2c.c
170
temp = RREG32(rec->mask_data_reg) & ~rec->mask_data_mask;
sys/dev/pci/drm/radeon/radeon_i2c.c
171
WREG32(rec->mask_data_reg, temp);
sys/dev/pci/drm/radeon/radeon_i2c.c
172
temp = RREG32(rec->mask_data_reg);
sys/dev/pci/drm/radeon/radeon_i2c.c
93
uint32_t temp;
sys/dev/pci/drm/radeon/radeon_pm.c
688
int temp;
sys/dev/pci/drm/radeon/radeon_pm.c
696
temp = radeon_get_temperature(rdev);
sys/dev/pci/drm/radeon/radeon_pm.c
698
temp = 0;
sys/dev/pci/drm/radeon/radeon_pm.c
700
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/radeon/radeon_pm.c
709
int temp;
sys/dev/pci/drm/radeon/radeon_pm.c
712
temp = rdev->pm.dpm.thermal.min_temp;
sys/dev/pci/drm/radeon/radeon_pm.c
714
temp = rdev->pm.dpm.thermal.max_temp;
sys/dev/pci/drm/radeon/radeon_pm.c
716
return sysfs_emit(buf, "%d\n", temp);
sys/dev/pci/drm/radeon/radeon_pm.c
905
int temp = radeon_get_temperature(rdev);
sys/dev/pci/drm/radeon/radeon_pm.c
907
if (temp < rdev->pm.dpm.thermal.min_temp)
sys/dev/pci/drm/radeon/rv770.c
855
u32 temp = (RREG32(CG_MULT_THERMAL_STATUS) & ASIC_T_MASK) >>
sys/dev/pci/drm/radeon/rv770.c
859
if (temp & 0x400)
sys/dev/pci/drm/radeon/rv770.c
861
else if (temp & 0x200)
sys/dev/pci/drm/radeon/rv770.c
863
else if (temp & 0x100) {
sys/dev/pci/drm/radeon/rv770.c
864
actual_temp = temp & 0x1ff;
sys/dev/pci/drm/radeon/rv770.c
867
actual_temp = temp & 0xff;
sys/dev/pci/drm/radeon/si.c
1337
u32 temp;
sys/dev/pci/drm/radeon/si.c
1340
temp = (RREG32(CG_MULT_THERMAL_STATUS) & CTF_TEMP_MASK) >>
sys/dev/pci/drm/radeon/si.c
1343
if (temp & 0x200)
sys/dev/pci/drm/radeon/si.c
1346
actual_temp = temp & 0x1ff;
sys/dev/pci/drm/radeon/sumo_dpm.c
1007
u32 temp;
sys/dev/pci/drm/radeon/sumo_dpm.c
1018
temp = sclk / sumo_get_sleep_divider_from_id(i);
sys/dev/pci/drm/radeon/sumo_dpm.c
1020
if (temp >= min || i == 0)
sys/dev/pci/drm/radeon/sumo_dpm.c
531
u32 temp = gnb_slow;
sys/dev/pci/drm/radeon/sumo_dpm.c
535
temp = 1;
sys/dev/pci/drm/radeon/sumo_dpm.c
539
cg_sclk_dpm_ctrl_3 |= (temp << (GNB_SLOW_FSTATE_0_SHIFT + index));
sys/dev/pci/drm/radeon/trinity_dpm.c
1314
u32 temp;
sys/dev/pci/drm/radeon/trinity_dpm.c
1325
temp = sclk / sumo_get_sleep_divider_from_id(i);
sys/dev/pci/drm/radeon/trinity_dpm.c
1326
if (temp >= min || i == 0)
sys/dev/pci/if_bnxtreg.h
63960
uint8_t temp;
sys/dev/pci/if_em_hw.c
8024
uint32_t temp;
sys/dev/pci/if_em_hw.c
8049
temp = E1000_READ_REG_ARRAY(hw, MTA, (hash_reg - 1));
sys/dev/pci/if_em_hw.c
8052
E1000_WRITE_REG_ARRAY(hw, MTA, (hash_reg - 1), temp);
sys/dev/pci/if_em_hw.c
8182
uint16_t eeprom_data, i, temp;
sys/dev/pci/if_em_hw.c
8212
temp = (eeprom_data >> (i << 2)) & led_mask;
sys/dev/pci/if_em_hw.c
8213
switch (temp) {
sys/dev/pci/if_em_hw.c
8230
switch (temp) {
sys/dev/pci/if_em_hw.c
8259
volatile uint32_t temp;
sys/dev/pci/if_em_hw.c
8260
temp = E1000_READ_REG(hw, CRCERRS);
sys/dev/pci/if_em_hw.c
8261
temp = E1000_READ_REG(hw, SYMERRS);
sys/dev/pci/if_em_hw.c
8262
temp = E1000_READ_REG(hw, MPC);
sys/dev/pci/if_em_hw.c
8263
temp = E1000_READ_REG(hw, SCC);
sys/dev/pci/if_em_hw.c
8264
temp = E1000_READ_REG(hw, ECOL);
sys/dev/pci/if_em_hw.c
8265
temp = E1000_READ_REG(hw, MCC);
sys/dev/pci/if_em_hw.c
8266
temp = E1000_READ_REG(hw, LATECOL);
sys/dev/pci/if_em_hw.c
8267
temp = E1000_READ_REG(hw, COLC);
sys/dev/pci/if_em_hw.c
8268
temp = E1000_READ_REG(hw, DC);
sys/dev/pci/if_em_hw.c
8269
temp = E1000_READ_REG(hw, SEC);
sys/dev/pci/if_em_hw.c
8270
temp = E1000_READ_REG(hw, RLEC);
sys/dev/pci/if_em_hw.c
8271
temp = E1000_READ_REG(hw, XONRXC);
sys/dev/pci/if_em_hw.c
8272
temp = E1000_READ_REG(hw, XONTXC);
sys/dev/pci/if_em_hw.c
8273
temp = E1000_READ_REG(hw, XOFFRXC);
sys/dev/pci/if_em_hw.c
8274
temp = E1000_READ_REG(hw, XOFFTXC);
sys/dev/pci/if_em_hw.c
8275
temp = E1000_READ_REG(hw, FCRUC);
sys/dev/pci/if_em_hw.c
8278
temp = E1000_READ_REG(hw, PRC64);
sys/dev/pci/if_em_hw.c
8279
temp = E1000_READ_REG(hw, PRC127);
sys/dev/pci/if_em_hw.c
8280
temp = E1000_READ_REG(hw, PRC255);
sys/dev/pci/if_em_hw.c
8281
temp = E1000_READ_REG(hw, PRC511);
sys/dev/pci/if_em_hw.c
8282
temp = E1000_READ_REG(hw, PRC1023);
sys/dev/pci/if_em_hw.c
8283
temp = E1000_READ_REG(hw, PRC1522);
sys/dev/pci/if_em_hw.c
8285
temp = E1000_READ_REG(hw, GPRC);
sys/dev/pci/if_em_hw.c
8286
temp = E1000_READ_REG(hw, BPRC);
sys/dev/pci/if_em_hw.c
8287
temp = E1000_READ_REG(hw, MPRC);
sys/dev/pci/if_em_hw.c
8288
temp = E1000_READ_REG(hw, GPTC);
sys/dev/pci/if_em_hw.c
8289
temp = E1000_READ_REG(hw, GORCL);
sys/dev/pci/if_em_hw.c
8290
temp = E1000_READ_REG(hw, GORCH);
sys/dev/pci/if_em_hw.c
8291
temp = E1000_READ_REG(hw, GOTCL);
sys/dev/pci/if_em_hw.c
8292
temp = E1000_READ_REG(hw, GOTCH);
sys/dev/pci/if_em_hw.c
8293
temp = E1000_READ_REG(hw, RNBC);
sys/dev/pci/if_em_hw.c
8294
temp = E1000_READ_REG(hw, RUC);
sys/dev/pci/if_em_hw.c
8295
temp = E1000_READ_REG(hw, RFC);
sys/dev/pci/if_em_hw.c
8296
temp = E1000_READ_REG(hw, ROC);
sys/dev/pci/if_em_hw.c
8297
temp = E1000_READ_REG(hw, RJC);
sys/dev/pci/if_em_hw.c
8298
temp = E1000_READ_REG(hw, TORL);
sys/dev/pci/if_em_hw.c
8299
temp = E1000_READ_REG(hw, TORH);
sys/dev/pci/if_em_hw.c
8300
temp = E1000_READ_REG(hw, TOTL);
sys/dev/pci/if_em_hw.c
8301
temp = E1000_READ_REG(hw, TOTH);
sys/dev/pci/if_em_hw.c
8302
temp = E1000_READ_REG(hw, TPR);
sys/dev/pci/if_em_hw.c
8303
temp = E1000_READ_REG(hw, TPT);
sys/dev/pci/if_em_hw.c
8306
temp = E1000_READ_REG(hw, PTC64);
sys/dev/pci/if_em_hw.c
8307
temp = E1000_READ_REG(hw, PTC127);
sys/dev/pci/if_em_hw.c
8308
temp = E1000_READ_REG(hw, PTC255);
sys/dev/pci/if_em_hw.c
8309
temp = E1000_READ_REG(hw, PTC511);
sys/dev/pci/if_em_hw.c
8310
temp = E1000_READ_REG(hw, PTC1023);
sys/dev/pci/if_em_hw.c
8311
temp = E1000_READ_REG(hw, PTC1522);
sys/dev/pci/if_em_hw.c
8313
temp = E1000_READ_REG(hw, MPTC);
sys/dev/pci/if_em_hw.c
8314
temp = E1000_READ_REG(hw, BPTC);
sys/dev/pci/if_em_hw.c
8319
temp = E1000_READ_REG(hw, ALGNERRC);
sys/dev/pci/if_em_hw.c
8320
temp = E1000_READ_REG(hw, RXERRC);
sys/dev/pci/if_em_hw.c
8321
temp = E1000_READ_REG(hw, TNCRS);
sys/dev/pci/if_em_hw.c
8322
temp = E1000_READ_REG(hw, CEXTERR);
sys/dev/pci/if_em_hw.c
8323
temp = E1000_READ_REG(hw, TSCTC);
sys/dev/pci/if_em_hw.c
8324
temp = E1000_READ_REG(hw, TSCTFC);
sys/dev/pci/if_em_hw.c
8330
temp = E1000_READ_REG(hw, MGTPRC);
sys/dev/pci/if_em_hw.c
8331
temp = E1000_READ_REG(hw, MGTPDC);
sys/dev/pci/if_em_hw.c
8332
temp = E1000_READ_REG(hw, MGTPTC);
sys/dev/pci/if_em_hw.c
8337
temp = E1000_READ_REG(hw, IAC);
sys/dev/pci/if_em_hw.c
8338
temp = E1000_READ_REG(hw, ICRXOC);
sys/dev/pci/if_em_hw.c
8371
temp = E1000_READ_REG(hw, ICRXPTC);
sys/dev/pci/if_em_hw.c
8372
temp = E1000_READ_REG(hw, ICRXATC);
sys/dev/pci/if_em_hw.c
8373
temp = E1000_READ_REG(hw, ICTXPTC);
sys/dev/pci/if_em_hw.c
8374
temp = E1000_READ_REG(hw, ICTXATC);
sys/dev/pci/if_em_hw.c
8375
temp = E1000_READ_REG(hw, ICTXQEC);
sys/dev/pci/if_em_hw.c
8376
temp = E1000_READ_REG(hw, ICTXQMTC);
sys/dev/pci/if_em_hw.c
8377
temp = E1000_READ_REG(hw, ICRXDMTC);
sys/dev/pci/if_ice.c
21960
uint32_t temp;
sys/dev/pci/if_ice.c
21999
first_teid_ptr = &temp;
sys/dev/pci/if_icereg.h
11167
int8_t temp;
sys/dev/pci/if_iwn.c
1534
chans[0].samples[c][j].temp,
sys/dev/pci/if_iwn.c
1545
chans[1].samples[c][j].temp,
sys/dev/pci/if_iwn.c
2472
int temp;
sys/dev/pci/if_iwn.c
2487
if (stats->general.temp != sc->rawtemp) {
sys/dev/pci/if_iwn.c
2489
sc->rawtemp = stats->general.temp;
sys/dev/pci/if_iwn.c
2490
temp = ops->get_temperature(sc);
sys/dev/pci/if_iwn.c
2491
DPRINTFN(2, ("temperature=%dC\n", temp));
sys/dev/pci/if_iwn.c
2495
iwn4965_power_calibration(sc, temp);
sys/dev/pci/if_iwn.c
4053
int32_t temp;
sys/dev/pci/if_iwn.c
4058
temp = (IWN_CTOK(110) - sc->temp_off) * -5;
sys/dev/pci/if_iwn.c
4060
temp = IWN_CTOK(110);
sys/dev/pci/if_iwn.c
4062
temp = 110;
sys/dev/pci/if_iwn.c
4064
crit.tempR = htole32(temp);
sys/dev/pci/if_iwn.c
4065
DPRINTF(("setting critical temperature to %d\n", temp));
sys/dev/pci/if_iwn.c
4092
iwn4965_power_calibration(struct iwn_softc *sc, int temp)
sys/dev/pci/if_iwn.c
4095
DPRINTF(("temperature %d->%d\n", sc->temp, temp));
sys/dev/pci/if_iwn.c
4096
if (abs(temp - sc->temp) >= 3) {
sys/dev/pci/if_iwn.c
4098
sc->temp = temp;
sys/dev/pci/if_iwn.c
4190
uint8_t power, gain, temp;
sys/dev/pci/if_iwn.c
4199
temp = interpolate(ext_chan,
sys/dev/pci/if_iwn.c
4200
chans[0].num, chans[0].samples[c][1].temp,
sys/dev/pci/if_iwn.c
4201
chans[1].num, chans[1].samples[c][1].temp, 1);
sys/dev/pci/if_iwn.c
4203
c, power, gain, temp));
sys/dev/pci/if_iwn.c
4206
tdiff = ((sc->temp - temp) * 2) / tdiv[grp];
sys/dev/pci/if_iwn.c
4208
"EEPROM=%d)\n", tdiff, sc->temp, temp));
sys/dev/pci/if_iwn.c
4349
int32_t r1, r2, r3, r4, temp;
sys/dev/pci/if_iwn.c
4352
r1 = letoh32(uc->temp[0].chan40MHz);
sys/dev/pci/if_iwn.c
4353
r2 = letoh32(uc->temp[1].chan40MHz);
sys/dev/pci/if_iwn.c
4354
r3 = letoh32(uc->temp[2].chan40MHz);
sys/dev/pci/if_iwn.c
4356
r1 = letoh32(uc->temp[0].chan20MHz);
sys/dev/pci/if_iwn.c
4357
r2 = letoh32(uc->temp[1].chan20MHz);
sys/dev/pci/if_iwn.c
4358
r3 = letoh32(uc->temp[2].chan20MHz);
sys/dev/pci/if_iwn.c
4368
temp = (259 * (r4 - r2)) / (r3 - r1);
sys/dev/pci/if_iwn.c
4369
temp = (temp * 97) / 100 + 8;
sys/dev/pci/if_iwn.c
4371
DPRINTF(("temperature %dK/%dC\n", temp, IWN_KTOC(temp)));
sys/dev/pci/if_iwn.c
4372
return IWN_KTOC(temp);
sys/dev/pci/if_iwn.c
4378
int32_t temp;
sys/dev/pci/if_iwn.c
4384
temp = letoh32(sc->rawtemp);
sys/dev/pci/if_iwn.c
4386
temp = (temp / -5) + sc->temp_off;
sys/dev/pci/if_iwn.c
4387
temp = IWN_KTOC(temp);
sys/dev/pci/if_iwn.c
4389
return temp;
sys/dev/pci/if_iwn.c
6475
sc->rawtemp = sc->ucode_info.temp[3].chan20MHz;
sys/dev/pci/if_iwn.c
6476
sc->temp = iwn4965_get_temperature(sc);
sys/dev/pci/if_iwnreg.h
1205
} __packed temp[4];
sys/dev/pci/if_iwnreg.h
1524
uint32_t temp;
sys/dev/pci/if_iwnreg.h
1741
uint8_t temp;
sys/dev/pci/if_iwnvar.h
285
int temp;
sys/dev/pci/if_nxe.c
1798
u_int32_t temp;
sys/dev/pci/if_nxe.c
1804
temp = nxe_crb_read(sc, NXE_1_SW_TEMP);
sys/dev/pci/if_nxe.c
1809
sc->sc_sensor.value = NXE_1_SW_TEMP_VAL(temp) * 1000000 + 273150000;
sys/dev/pci/if_nxe.c
1812
switch (NXE_1_SW_TEMP_STATE(temp)) {
sys/dev/pci/if_wpi.c
2203
int temp;
sys/dev/pci/if_wpi.c
2205
temp = (int)WPI_READ(sc, WPI_UCODE_GP2);
sys/dev/pci/if_wpi.c
2207
if (temp < -260 || temp > 25) {
sys/dev/pci/if_wpi.c
2209
DPRINTF(("out-of-range temperature reported: %d\n", temp));
sys/dev/pci/if_wpi.c
2212
DPRINTF(("temperature %d->%d\n", sc->temp, temp));
sys/dev/pci/if_wpi.c
2214
if (abs(temp - sc->temp) > 6) {
sys/dev/pci/if_wpi.c
2216
sc->temp = temp;
sys/dev/pci/if_wpi.c
2328
idx -= (sc->temp - group->temp) * 11 / 100;
sys/dev/pci/if_wpi.c
2805
if ((sc->temp = (int)WPI_READ(sc, WPI_UCODE_GP2)) != 0)
sys/dev/pci/if_wpi.c
2814
DPRINTF(("temperature %d\n", sc->temp));
sys/dev/pci/if_wpi.c
962
group->temp = (int16_t)letoh16(rgroup.temp);
sys/dev/pci/if_wpi.c
965
group->chan, group->maxpwr, group->temp));
sys/dev/pci/if_wpireg.h
674
int16_t temp;
sys/dev/pci/if_wpivar.h
112
int16_t temp;
sys/dev/pci/if_wpivar.h
174
int temp;
sys/dev/pci/pchtemp.c
126
uint16_t temp;
sys/dev/pci/pchtemp.c
128
temp = bus_space_read_2(sc->sc_memt, sc->sc_memh, PCHTEMP_TEMP);
sys/dev/pci/pchtemp.c
129
sc->sc_sensor.value = (temp * 500000 - 50000000) + 273150000;
sys/dev/pci/ydsreg.h
313
u_int32_t temp;
sys/dev/usb/dwc2/list.h
113
#define list_for_each_safe(entry, temp, head) \
sys/dev/usb/dwc2/list.h
114
for (entry = (head)->next, temp = (entry)->next; \
sys/dev/usb/dwc2/list.h
116
entry = temp, temp = entry->next)
sys/dev/usb/if_axen.c
1051
temp = ((pkt_len + 7) & 0xfff8);
sys/dev/usb/if_axen.c
1052
buf = buf + temp;
sys/dev/usb/if_axen.c
410
u_int16_t ctl, temp;
sys/dev/usb/if_axen.c
449
temp = UGETW(wval);
sys/dev/usb/if_axen.c
450
DPRINTFN(2,("EEPROM0x43 = 0x%04x\n", temp));
sys/dev/usb/if_axen.c
451
if (!(temp == 0xffff) && !(temp & 0x0100)) {
sys/dev/usb/if_axen.c
902
size_t temp;
sys/dev/usb/if_mue.c
540
uint8_t temp[2];
sys/dev/usb/if_mue.c
542
if (mue_read_eeprom(sc, (caddr_t)&temp, MUE_EE_LTM_OFFSET, 2)) {
sys/dev/usb/if_mue.c
543
if (temp[0] != 24)
sys/dev/usb/if_mue.c
545
mue_read_eeprom(sc, (caddr_t)&idx, temp[1] << 1, 24);
sys/dev/usb/if_uaq.c
391
uint8_t temp;
sys/dev/usb/if_uaq.c
395
temp = val & 0xff;
sys/dev/usb/if_uaq.c
396
return (uaq_write_mem(sc, cmd, reg, index, &temp, 1));
sys/dev/usb/if_uaq.c
403
uint16_t temp;
sys/dev/usb/if_uaq.c
407
USETW(&temp, val & 0xffff);
sys/dev/usb/if_uaq.c
408
return (uaq_write_mem(sc, cmd, reg, index, &temp, 2));
sys/dev/usb/if_uaq.c
415
uint8_t temp[4];
sys/dev/usb/if_uaq.c
419
USETDW(temp, val);
sys/dev/usb/if_uaq.c
420
return (uaq_write_mem(sc, cmd, reg, index, &temp, 4));
sys/dev/usb/if_ure.c
284
uint8_t temp[4];
sys/dev/usb/if_ure.c
290
ure_read_mem(sc, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
291
val = UGETDW(temp);
sys/dev/usb/if_ure.c
301
uint8_t temp[4];
sys/dev/usb/if_ure.c
307
ure_read_mem(sc, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
308
val = UGETDW(temp);
sys/dev/usb/if_ure.c
317
uint8_t temp[4];
sys/dev/usb/if_ure.c
319
ure_read_mem(sc, reg, index, &temp, 4);
sys/dev/usb/if_ure.c
320
return (UGETDW(temp));
sys/dev/usb/if_ure.c
327
uint8_t temp[4];
sys/dev/usb/if_ure.c
340
USETDW(temp, val);
sys/dev/usb/if_ure.c
341
return (ure_write_mem(sc, reg, index | byen, &temp, 4));
sys/dev/usb/if_ure.c
348
uint8_t temp[4];
sys/dev/usb/if_ure.c
361
USETDW(temp, val);
sys/dev/usb/if_ure.c
362
return (ure_write_mem(sc, reg, index | byen, &temp, 4));
sys/dev/usb/if_ure.c
368
uint8_t temp[4];
sys/dev/usb/if_ure.c
370
USETDW(temp, val);
sys/dev/usb/if_ure.c
371
return (ure_write_mem(sc, reg, index | URE_BYTE_EN_DWORD, &temp, 4));
sys/dev/usb/ugold.c
334
int temp;
sys/dev/usb/ugold.c
346
temp = ugold_ds75_temp(buf[4], buf[5]);
sys/dev/usb/ugold.c
347
sc->sc_sensor[UGOLD_OUTER].value = temp;
sys/dev/usb/ugold.c
351
temp = ugold_ds75_temp(buf[2], buf[3]);
sys/dev/usb/ugold.c
352
sc->sc_sensor[UGOLD_INNER].value = temp;
sys/dev/usb/ugold.c
372
int temp = msb * 256 + lsb;
sys/dev/usb/ugold.c
376
temp = (((temp & 0x3fff) * 1000) / 32) - 50000;
sys/dev/usb/ugold.c
379
temp = (((temp & ~3) * 21965) / 8192) - 46850;
sys/dev/usb/ugold.c
382
temp = (temp * 1000) / 256;
sys/dev/usb/ugold.c
387
temp = temp * 10;
sys/dev/usb/ugold.c
390
temp = 0;
sys/dev/usb/ugold.c
393
return temp;
sys/dev/usb/ugold.c
397
ugold_si700x_rhum(int type, uint8_t msb, uint8_t lsb, int temp)
sys/dev/usb/ugold.c
406
rhum += (temp - 30) * (0.00237 * rhum + 0.1973);
sys/dev/usb/ugold.c
534
int temp, sensor, rhum;
sys/dev/usb/ugold.c
568
temp = ugold_si700x_temp(sc->sc_type, buf[2], buf[3]);
sys/dev/usb/ugold.c
569
sc->sc_sensor[sensor].value = (temp * 1000) + 273150000;
sys/dev/usb/ugold.c
574
if (sc->sc_type == UGOLD_TYPE_GOLD && temp == 200000)
sys/dev/usb/ugold.c
580
rhum = ugold_si700x_rhum(sc->sc_type, buf[4], buf[5], temp);
sys/dev/usb/uoakrh.c
173
sc->sc_sensor.temp.type = SENSOR_TEMP;
sys/dev/usb/uoakrh.c
175
sc->sc_sensor.temp.flags |= SENSOR_FINVALID;
sys/dev/usb/uoakrh.c
179
(void)snprintf(sc->sc_sensor.temp.desc, sizeof(sc->sc_sensor.temp.desc),
sys/dev/usb/uoakrh.c
183
sensor_attach(&sc->sc_sensordev, &sc->sc_sensor.temp);
sys/dev/usb/uoakrh.c
216
sensor_detach(&sc->sc_sensordev, &sc->sc_sensor.temp);
sys/dev/usb/uoakrh.c
239
int frame, temp, humi;
sys/dev/usb/uoakrh.c
247
temp = (scc->sc_ibuf[5] << 8) + (scc->sc_ibuf[4]);
sys/dev/usb/uoakrh.c
250
s->tempval = temp;
sys/dev/usb/uoakrh.c
255
s->tempval = (s->tempval * s->count + temp) / (s->count + 1);
sys/dev/usb/uoakrh.c
278
s->temp.value = (uint64_t)(s->tempval) * 10000;
sys/dev/usb/uoakrh.c
280
s->temp.flags &= ~SENSOR_FINVALID;
sys/dev/usb/uoakrh.c
49
struct ksensor temp;
sys/dev/usb/usps.c
491
int temp;
sys/dev/usb/usps.c
499
temp = (sc->sc_buf[1] << 8) + sc->sc_buf[0];
sys/dev/usb/usps.c
500
sc->sc_temp_sensor.value = (temp * 10000) + 273150000;
sys/dev/usb/uthum.c
641
int temp, rh;
sys/dev/usb/uthum.c
652
temp = uthum_sht1x_temp(buf[0], buf[1]);
sys/dev/usb/uthum.c
653
rh = uthum_sht1x_rh(buf[2], buf[3], temp);
sys/dev/usb/uthum.c
656
temp += sc->sc_sensor[UTHUM_TEMPERHUM_TEMP].cal_offset;
sys/dev/usb/uthum.c
660
(temp * 10000) + 273150000;
sys/dev/usb/uthum.c
671
int temp;
sys/dev/usb/uthum.c
694
temp = uthum_ds75_temp(buf[0], buf[1]);
sys/dev/usb/uthum.c
697
temp += sc->sc_sensor[sensor].cal_offset;
sys/dev/usb/uthum.c
699
sc->sc_sensor[sensor].sensor.value = (temp * 10000) + 273150000;
sys/dev/usb/uthum.c
707
int64_t temp;
sys/dev/usb/uthum.c
726
temp = uthum_ntc_temp(val, sc->sc_sensor[sensor].cur_state);
sys/dev/usb/uthum.c
727
if (temp == 0) {
sys/dev/usb/uthum.c
732
temp += sc->sc_sensor[sensor].cal_offset * 10000;
sys/dev/usb/uthum.c
733
sc->sc_sensor[sensor].sensor.value = temp;
sys/dev/usb/uthum.c
776
uthum_sht1x_rh(uint8_t msb, uint8_t lsb, int temp)
sys/dev/usb/uthum.c
783
return ((temp - 2500) * (1 + (nticks >> 7)) + rh_l) / 10;
sys/dev/usb/uthum.c
790
int64_t temp = 0;
sys/dev/usb/uthum.c
798
temp = -273150000;
sys/dev/usb/uthum.c
801
temp = ((val * val * 2977) / 100000) - (val * 4300) + 152450000;
sys/dev/usb/uthum.c
804
temp = ((val * val * 3887) / 100000) - (val * 5300) + 197590000;
sys/dev/usb/uthum.c
807
temp = ((val * val * 3495) / 100000) - (val * 5000) + 210590000;
sys/dev/usb/uthum.c
811
temp = (val * -1700) + 149630000;
sys/dev/usb/uthum.c
813
temp = ((val * val * 3257) / 100000) - (val * 4900) +
sys/dev/usb/uthum.c
822
return temp + 273150000;
sys/dev/usb/utrh.c
203
int temp, rh, flen, olen;
sys/dev/usb/utrh.c
235
temp = utrh_sht1x_temp(temp_tick);
sys/dev/usb/utrh.c
236
rh = utrh_sht1x_rh(humidity_tick, temp);
sys/dev/usb/utrh.c
238
sc->sc_sensor[UTRH_TEMP].value = (temp * 10000) + 273150000;
sys/dev/usb/utrh.c
253
utrh_sht1x_rh(unsigned int nticks, int temp)
sys/dev/usb/utrh.c
258
rh = ((temp - 2500) * (1 + (nticks >> 7)) + rh_l) / 10;
sys/kern/subr_disk.c
1418
dev_t nrootdev, nswapdev = NODEV, temp = NODEV;
sys/kern/subr_disk.c
1650
temp = swdevt[0];
sys/kern/subr_disk.c
1652
*swp = temp;
sys/kern/subr_disk.c
1661
if (temp == dumpdev)
sys/kern/subr_percpu.c
166
uint64_t *gen, *counters, *temp = scratch;
sys/kern/subr_percpu.c
174
temp = mallocarray(n, sizeof(uint64_t), M_TEMP, M_WAITOK);
sys/kern/subr_percpu.c
190
temp[i] = counters[i];
sys/kern/subr_percpu.c
202
output[i] += temp[i];
sys/kern/subr_percpu.c
208
free(temp, M_TEMP, n * sizeof(uint64_t));
sys/kern/sys_process.c
654
int temp = 0;
sys/kern/sys_process.c
677
temp = data;
sys/kern/sys_process.c
681
iov.iov_base = (caddr_t)&temp;
sys/kern/sys_process.c
693
*retval = temp;
sys/kern/sys_process.c
728
temp = ELF_AUX_WORDS * sizeof(char *);
sys/kern/sys_process.c
729
if (uio.uio_offset > temp)
sys/kern/sys_process.c
731
if (uio.uio_resid > temp - uio.uio_offset)
sys/kern/sys_process.c
732
uio.uio_resid = temp - uio.uio_offset;
sys/lib/libsa/blowfish.c
392
u_int32_t temp;
sys/lib/libsa/blowfish.c
394
temp = 0x00000000;
sys/lib/libsa/blowfish.c
400
temp = (temp << 8) | data[j];
sys/lib/libsa/blowfish.c
404
return temp;
sys/lib/libsa/blowfish.c
413
u_int32_t temp;
sys/lib/libsa/blowfish.c
420
temp = Blowfish_stream2word(key, keybytes, &j);
sys/lib/libsa/blowfish.c
421
c->P[i] = c->P[i] ^ temp;
sys/lib/libsa/blowfish.c
451
u_int32_t temp;
sys/lib/libsa/blowfish.c
458
temp = Blowfish_stream2word(key, keybytes, &j);
sys/lib/libsa/blowfish.c
459
c->P[i] = c->P[i] ^ temp;
sys/lib/libsa/rijndael.c
727
u32 temp;
sys/lib/libsa/rijndael.c
735
temp = rk[3];
sys/lib/libsa/rijndael.c
737
(Te4[(temp >> 16) & 0xff] & 0xff000000) ^
sys/lib/libsa/rijndael.c
738
(Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/lib/libsa/rijndael.c
739
(Te4[(temp ) & 0xff] & 0x0000ff00) ^
sys/lib/libsa/rijndael.c
740
(Te4[(temp >> 24) ] & 0x000000ff) ^
sys/lib/libsa/rijndael.c
755
temp = rk[ 5];
sys/lib/libsa/rijndael.c
757
(Te4[(temp >> 16) & 0xff] & 0xff000000) ^
sys/lib/libsa/rijndael.c
758
(Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/lib/libsa/rijndael.c
759
(Te4[(temp ) & 0xff] & 0x0000ff00) ^
sys/lib/libsa/rijndael.c
760
(Te4[(temp >> 24) ] & 0x000000ff) ^
sys/lib/libsa/rijndael.c
777
temp = rk[ 7];
sys/lib/libsa/rijndael.c
779
(Te4[(temp >> 16) & 0xff] & 0xff000000) ^
sys/lib/libsa/rijndael.c
780
(Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
sys/lib/libsa/rijndael.c
781
(Te4[(temp ) & 0xff] & 0x0000ff00) ^
sys/lib/libsa/rijndael.c
782
(Te4[(temp >> 24) ] & 0x000000ff) ^
sys/lib/libsa/rijndael.c
790
temp = rk[11];
sys/lib/libsa/rijndael.c
792
(Te4[(temp >> 24) ] & 0xff000000) ^
sys/lib/libsa/rijndael.c
793
(Te4[(temp >> 16) & 0xff] & 0x00ff0000) ^
sys/lib/libsa/rijndael.c
794
(Te4[(temp >> 8) & 0xff] & 0x0000ff00) ^
sys/lib/libsa/rijndael.c
795
(Te4[(temp ) & 0xff] & 0x000000ff);
sys/lib/libsa/rijndael.c
814
u32 temp;
sys/lib/libsa/rijndael.c
821
temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
sys/lib/libsa/rijndael.c
822
temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp;
sys/lib/libsa/rijndael.c
823
temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp;
sys/lib/libsa/rijndael.c
824
temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp;
sys/netinet/tcp_input.c
2331
struct sackblk sack, firstsack, temp[MAX_SACK_BLKS];
sys/netinet/tcp_input.c
2344
temp[j].start = tp->sackblks[i].start;
sys/netinet/tcp_input.c
2345
temp[j++].end = tp->sackblks[i].end;
sys/netinet/tcp_input.c
2361
tp->sackblks[i] = temp[i]; /* first copy back sack list */
sys/netinet/tcp_input.c
2396
temp[j++] = sack;
sys/netinet/tcp_input.c
2400
tp->sackblks[i] = temp[i];
sys/netinet/tcp_input.c
2420
struct sackhole *cur, *p, *temp;
sys/netinet/tcp_input.c
2547
temp = (struct sackhole *)
sys/netinet/tcp_input.c
2549
if (temp == NULL)
sys/netinet/tcp_input.c
2551
temp->next = cur->next;
sys/netinet/tcp_input.c
2552
temp->start = sack.end;
sys/netinet/tcp_input.c
2553
temp->end = cur->end;
sys/netinet/tcp_input.c
2554
temp->dups = cur->dups;
sys/netinet/tcp_input.c
2555
temp->rxmit = SEQ_MAX(cur->rxmit, temp->start);
sys/netinet/tcp_input.c
2562
cur->next = temp;
sys/netinet/tcp_input.c
2563
p = temp;
sys/netinet/tcp_input.c
2576
temp = (struct sackhole *)
sys/netinet/tcp_input.c
2578
if (temp == NULL)
sys/netinet/tcp_input.c
2580
temp->start = tp->rcv_lastsack;
sys/netinet/tcp_input.c
2581
temp->end = sack.start;
sys/netinet/tcp_input.c
2582
temp->dups = min(tcprexmtthresh,
sys/netinet/tcp_input.c
2584
if (temp->dups < 1)
sys/netinet/tcp_input.c
2585
temp->dups = 1;
sys/netinet/tcp_input.c
2586
temp->rxmit = temp->start;
sys/netinet/tcp_input.c
2587
temp->next = 0;
sys/netinet/tcp_input.c
2588
p->next = temp;
sys/scsi/safte.c
604
int64_t temp;
sys/scsi/safte.c
606
temp = (int64_t)measured;
sys/scsi/safte.c
607
temp += SAFTE_TEMP_OFFSET;
sys/scsi/safte.c
608
temp *= 1000000; /* Convert to micro (mu) degrees. */
sys/scsi/safte.c
610
temp = ((temp - 32000000) * 5) / 9; /* Convert to Celsius. */
sys/scsi/safte.c
612
temp += 273150000; /* Convert to kelvin. */
sys/scsi/safte.c
614
return temp;
usr.bin/awk/lib.c
335
char *s, temp[50];
usr.bin/awk/lib.c
339
snprintf(temp, sizeof(temp), "%d", n);
usr.bin/awk/lib.c
340
if (lookup(temp, ap) == NULL)
usr.bin/awk/lib.c
342
x = setsymtab(temp, "", 0.0, STR, ap);
usr.bin/awk/lib.c
80
char temp[50];
usr.bin/awk/lib.c
88
snprintf(temp, sizeof(temp), "%d", i);
usr.bin/awk/lib.c
89
fldtab[i]->nval = tostring(temp);
usr.bin/awk/run.c
1018
temp = s[nb]; /* with thanks to John Linderman */
usr.bin/awk/run.c
1021
s[nb] = temp;
usr.bin/awk/run.c
1671
char temp, num[50];
usr.bin/awk/run.c
1723
temp = *patbeg;
usr.bin/awk/run.c
1729
setptr(patbeg, temp);
usr.bin/awk/run.c
1798
temp = *s;
usr.bin/awk/run.c
1805
setptr(s, temp);
usr.bin/awk/run.c
1833
temp = *s;
usr.bin/awk/run.c
1840
setptr(s, temp);
usr.bin/awk/run.c
978
int temp;
usr.bin/awk/tran.c
113
char temp[50];
usr.bin/awk/tran.c
123
snprintf(temp, sizeof(temp), "%d", i);
usr.bin/awk/tran.c
125
setsymtab(temp, *av, result, STR|NUM, ap);
usr.bin/awk/tran.c
127
setsymtab(temp, *av, 0.0, STR, ap);
usr.bin/awk/tran.c
176
Cell *cp, *temp;
usr.bin/awk/tran.c
186
for (cp = tp->tab[i]; cp != NULL; cp = temp) {
usr.bin/awk/tran.c
190
temp = cp->cnext; /* avoids freeing then using */
usr.bin/cal/cal.c
465
long temp;
usr.bin/cal/cal.c
467
temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1)
usr.bin/cal/cal.c
469
if (temp < FIRST_MISSING_DAY)
usr.bin/cal/cal.c
470
return ((temp - 1 + SATURDAY) % 7);
usr.bin/cal/cal.c
471
if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS))
usr.bin/cal/cal.c
472
return (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
usr.bin/ftp/util.c
369
char temp[PATH_MAX], *bufp, *cp, *lmode;
usr.bin/ftp/util.c
396
if (len + sizeof(TMPFILE) + (cp[len-1] != '/') > sizeof(temp)) {
usr.bin/ftp/util.c
402
(void)strlcpy(temp, cp, sizeof temp);
usr.bin/ftp/util.c
403
if (temp[len-1] != '/')
usr.bin/ftp/util.c
404
temp[len++] = '/';
usr.bin/ftp/util.c
405
(void)strlcpy(&temp[len], TMPFILE, sizeof temp - len);
usr.bin/ftp/util.c
406
if ((fd = mkstemp(temp)) == -1) {
usr.bin/ftp/util.c
407
warn("unable to create temporary file: %s", temp);
usr.bin/ftp/util.c
418
recvrequest(type ? "LIST" : "NLST", temp, *argv, lmode,
usr.bin/ftp/util.c
428
*ftemp = fopen(temp, "r");
usr.bin/ftp/util.c
429
(void)unlink(temp);
usr.bin/infocmp/infocmp.c
1469
char *temp = 0;
usr.bin/infocmp/infocmp.c
1470
long value = strtol(optarg, &temp, 0);
usr.bin/infocmp/infocmp.c
1472
if (temp == 0 || temp == optarg || *temp != 0) {
usr.bin/kdump/kdump.c
343
struct timespec temp;
usr.bin/kdump/kdump.c
398
timespecsub(&kth->ktr_time, &prevtime, &temp);
usr.bin/kdump/kdump.c
400
timespecsub(&kth->ktr_time, &prevtime, &temp);
usr.bin/kdump/kdump.c
403
temp = kth->ktr_time;
usr.bin/kdump/kdump.c
404
basecol += printf("%lld.%06ld ", (long long)temp.tv_sec,
usr.bin/kdump/kdump.c
405
temp.tv_nsec / 1000);
usr.bin/m4/eval.c
395
char *temp;
usr.bin/m4/eval.c
397
temp = xstrdup(argv[2]);
usr.bin/m4/eval.c
399
fd = mkstemp(temp);
usr.bin/m4/eval.c
405
pbstr(temp);
usr.bin/m4/eval.c
406
free(temp);
usr.bin/m4/eval.c
417
char *temp;
usr.bin/m4/eval.c
419
temp = xalloc(strlen(argv[2])+1, NULL);
usr.bin/m4/eval.c
421
map(temp, argv[2], argv[3], argv[4]);
usr.bin/m4/eval.c
423
map(temp, argv[2], argv[3], null);
usr.bin/m4/eval.c
424
pbstr(temp);
usr.bin/m4/eval.c
425
free(temp);
usr.bin/m4/gnum4.c
540
char temp[2];
usr.bin/m4/gnum4.c
595
temp[0] = strtoul(argv[pos++], NULL, 10);
usr.bin/m4/gnum4.c
596
temp[1] = 0;
usr.bin/m4/gnum4.c
597
thisarg = temp;
usr.bin/make/arch.c
839
char temp[sizeof(arHeader.ar_date)+1];
usr.bin/make/arch.c
841
snprintf(temp, sizeof(temp), "%-12lld", (long long)time(NULL));
usr.bin/make/arch.c
842
memcpy(arHeader.ar_date, temp, sizeof(arHeader.ar_date));
usr.bin/make/dir.c
420
char *temp; /* index into file */
usr.bin/make/dir.c
564
temp = strrchr(file, '/');
usr.bin/make/dir.c
565
Dir_AddDiri(path, file, temp);
usr.bin/make/direxpand.c
149
LIST temp;
usr.bin/make/direxpand.c
155
Lst_Init(&temp);
usr.bin/make/direxpand.c
156
Dir_AddDiri(&temp, dirpath, dp);
usr.bin/make/direxpand.c
157
PathMatchFilesi(slash+1, eword, &temp,
usr.bin/make/direxpand.c
159
Lst_Destroy(&temp, NOFREE);
usr.bin/make/parse.c
638
LIST temp;
usr.bin/make/parse.c
639
Lst_Init(&temp);
usr.bin/make/parse.c
650
if (!Arch_ParseArchive(&line, &temp, NULL)) {
usr.bin/make/parse.c
656
AppendList2Array(&temp, &gtargets);
usr.bin/make/parse.c
657
Lst_Destroy(&temp, NOFREE);
usr.bin/mg/tags.c
72
char fname[NFILEN], *bufp, *temp;
usr.bin/mg/tags.c
95
temp = bufp;
usr.bin/mg/tags.c
96
if (temp[0] == '\0')
usr.bin/mg/tags.c
97
temp = fname;
usr.bin/mg/tags.c
99
return (loadtags(temp));
usr.bin/rsync/uploader.c
175
char *b, *temp = NULL;
usr.bin/rsync/uploader.c
240
if (mktemplate(&temp, f->path, sess->opts->recursive) == -1) {
usr.bin/rsync/uploader.c
244
if (mkstemplinkat(f->link, p->rootfd, temp) == NULL) {
usr.bin/rsync/uploader.c
246
free(temp);
usr.bin/rsync/uploader.c
253
p->rootfd, f, newlink ? temp : f->path);
usr.bin/rsync/uploader.c
256
if (renameat(p->rootfd, temp, p->rootfd, f->path) == -1) {
usr.bin/rsync/uploader.c
257
ERR("%s: renameat %s", temp, f->path);
usr.bin/rsync/uploader.c
258
(void)unlinkat(p->rootfd, temp, 0);
usr.bin/rsync/uploader.c
259
free(temp);
usr.bin/rsync/uploader.c
262
free(temp);
usr.bin/rsync/uploader.c
280
char *temp = NULL;
usr.bin/rsync/uploader.c
329
if (mktemplate(&temp, f->path, sess->opts->recursive) == -1) {
usr.bin/rsync/uploader.c
333
if (mkstempnodat(p->rootfd, temp,
usr.bin/rsync/uploader.c
336
free(temp);
usr.bin/rsync/uploader.c
342
p->rootfd, f, newdev ? temp : f->path);
usr.bin/rsync/uploader.c
345
if (renameat(p->rootfd, temp, p->rootfd, f->path) == -1) {
usr.bin/rsync/uploader.c
346
ERR("%s: renameat %s", temp, f->path);
usr.bin/rsync/uploader.c
347
(void)unlinkat(p->rootfd, temp, 0);
usr.bin/rsync/uploader.c
348
free(temp);
usr.bin/rsync/uploader.c
351
free(temp);
usr.bin/rsync/uploader.c
369
char *temp = NULL;
usr.bin/rsync/uploader.c
407
if (mktemplate(&temp, f->path, sess->opts->recursive) == -1) {
usr.bin/rsync/uploader.c
411
if (mkstempfifoat(p->rootfd, temp) == NULL) {
usr.bin/rsync/uploader.c
413
free(temp);
usr.bin/rsync/uploader.c
419
p->rootfd, f, newfifo ? temp : f->path);
usr.bin/rsync/uploader.c
422
if (renameat(p->rootfd, temp, p->rootfd, f->path) == -1) {
usr.bin/rsync/uploader.c
423
ERR("%s: renameat %s", temp, f->path);
usr.bin/rsync/uploader.c
424
(void)unlinkat(p->rootfd, temp, 0);
usr.bin/rsync/uploader.c
425
free(temp);
usr.bin/rsync/uploader.c
428
free(temp);
usr.bin/rsync/uploader.c
446
char *temp = NULL;
usr.bin/rsync/uploader.c
484
if (mktemplate(&temp, f->path, sess->opts->recursive) == -1) {
usr.bin/rsync/uploader.c
488
if (mkstempsock(p->root, temp) == NULL) {
usr.bin/rsync/uploader.c
490
free(temp);
usr.bin/rsync/uploader.c
496
p->rootfd, f, newsock ? temp : f->path);
usr.bin/rsync/uploader.c
499
if (renameat(p->rootfd, temp, p->rootfd, f->path) == -1) {
usr.bin/rsync/uploader.c
500
ERR("%s: renameat %s", temp, f->path);
usr.bin/rsync/uploader.c
501
(void)unlinkat(p->rootfd, temp, 0);
usr.bin/rsync/uploader.c
502
free(temp);
usr.bin/rsync/uploader.c
505
free(temp);
usr.bin/ssh/hostfile.c
622
char *fp = NULL, *temp = NULL, *back = NULL;
usr.bin/ssh/hostfile.c
644
if ((r = asprintf(&temp, "%s.XXXXXXXXXXX", filename)) == -1 ||
usr.bin/ssh/hostfile.c
650
if ((fd = mkstemp(temp)) == -1) {
usr.bin/ssh/hostfile.c
732
if (rename(temp, filename) == -1) {
usr.bin/ssh/hostfile.c
734
error_f("rename \"%s\" to \"%s\": %s", temp,
usr.bin/ssh/hostfile.c
741
if (unlink(temp) != 0)
usr.bin/ssh/hostfile.c
742
error_f("unlink \"%s\": %s", temp, strerror(errno));
usr.bin/ssh/hostfile.c
748
if (temp != NULL && r != 0)
usr.bin/ssh/hostfile.c
749
unlink(temp);
usr.bin/ssh/hostfile.c
750
free(temp);
usr.bin/ssh/rijndael.c
633
u32 temp;
usr.bin/ssh/rijndael.c
641
temp = rk[3];
usr.bin/ssh/rijndael.c
643
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
usr.bin/ssh/rijndael.c
644
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
usr.bin/ssh/rijndael.c
645
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
usr.bin/ssh/rijndael.c
646
(Te1[(temp >> 24) ] & 0x000000ff) ^
usr.bin/ssh/rijndael.c
661
temp = rk[ 5];
usr.bin/ssh/rijndael.c
663
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
usr.bin/ssh/rijndael.c
664
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
usr.bin/ssh/rijndael.c
665
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
usr.bin/ssh/rijndael.c
666
(Te1[(temp >> 24) ] & 0x000000ff) ^
usr.bin/ssh/rijndael.c
683
temp = rk[ 7];
usr.bin/ssh/rijndael.c
685
(Te2[(temp >> 16) & 0xff] & 0xff000000) ^
usr.bin/ssh/rijndael.c
686
(Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^
usr.bin/ssh/rijndael.c
687
(Te0[(temp ) & 0xff] & 0x0000ff00) ^
usr.bin/ssh/rijndael.c
688
(Te1[(temp >> 24) ] & 0x000000ff) ^
usr.bin/ssh/rijndael.c
696
temp = rk[11];
usr.bin/ssh/rijndael.c
698
(Te2[(temp >> 24) ] & 0xff000000) ^
usr.bin/ssh/rijndael.c
699
(Te3[(temp >> 16) & 0xff] & 0x00ff0000) ^
usr.bin/ssh/rijndael.c
700
(Te0[(temp >> 8) & 0xff] & 0x0000ff00) ^
usr.bin/ssh/rijndael.c
701
(Te1[(temp ) & 0xff] & 0x000000ff);
usr.bin/ssh/rijndael.c
721
u32 temp;
usr.bin/ssh/rijndael.c
728
temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
usr.bin/ssh/rijndael.c
729
temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp;
usr.bin/ssh/rijndael.c
730
temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp;
usr.bin/ssh/rijndael.c
731
temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp;
usr.bin/telnet/telnet.c
655
unsigned char temp[50];
usr.bin/telnet/telnet.c
661
snprintf((char *)temp, sizeof(temp),
usr.bin/telnet/telnet.c
664
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
665
printsub('>', &temp[2], len-2);
usr.bin/telnet/telnet.c
677
unsigned char temp[50];
usr.bin/telnet/telnet.c
682
snprintf((char *)temp, sizeof(temp),
usr.bin/telnet/telnet.c
685
len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
usr.bin/telnet/telnet.c
688
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
689
printsub('>', temp+2, len - 2);
usr.bin/telnet/telnet.c
774
unsigned char temp[50], *dp;
usr.bin/telnet/telnet.c
785
snprintf((char *)temp, sizeof(temp),
usr.bin/telnet/telnet.c
788
len = strlen((char *)temp+4) + 4; /* temp[3] is 0 ... */
usr.bin/telnet/telnet.c
791
ring_supply_data(&netoring, temp, len);
usr.bin/telnet/telnet.c
792
printsub('>', temp+2, len - 2);
usr.bin/tset/tset.c
152
char temp[BUFSIZ];
usr.bin/tset/tset.c
155
if ((int) len < (int) sizeof(temp) - 12) {
usr.bin/tset/tset.c
156
_nc_STRCPY(temp, _nc_progname, sizeof(temp));
usr.bin/tset/tset.c
157
_nc_STRCAT(temp, ": ", sizeof(temp));
usr.bin/tset/tset.c
159
_nc_STRCPY(temp, "tset: ", sizeof(temp));
usr.bin/tset/tset.c
161
_nc_STRNCAT(temp, msg, sizeof(temp), sizeof(temp) - strlen(temp) - 2);
usr.bin/tset/tset.c
162
perror(temp);
usr.bin/xinstall/xinstall.c
620
create_tempfile(char *path, char *temp, size_t tsize)
usr.bin/xinstall/xinstall.c
624
if (strlcpy(temp, path, tsize) >= tsize) {
usr.bin/xinstall/xinstall.c
628
if ((p = strrchr(temp, '/')) != NULL)
usr.bin/xinstall/xinstall.c
631
p = temp;
usr.bin/xinstall/xinstall.c
633
if (strlcat(temp, "INS@XXXXXXXXXX", tsize) >= tsize) {
usr.bin/xinstall/xinstall.c
638
return(mkstemp(temp));
usr.bin/yacc/mkpar.c
113
temp = NEW(action);
usr.bin/yacc/mkpar.c
114
temp->next = actions;
usr.bin/yacc/mkpar.c
115
temp->symbol = symbol;
usr.bin/yacc/mkpar.c
116
temp->number = k;
usr.bin/yacc/mkpar.c
117
temp->prec = symbol_prec[symbol];
usr.bin/yacc/mkpar.c
118
temp->action_code = SHIFT;
usr.bin/yacc/mkpar.c
119
temp->assoc = symbol_assoc[symbol];
usr.bin/yacc/mkpar.c
120
actions = temp;
usr.bin/yacc/mkpar.c
152
action *temp, *prev, *next;
usr.bin/yacc/mkpar.c
169
temp = NEW(action);
usr.bin/yacc/mkpar.c
170
temp->next = next;
usr.bin/yacc/mkpar.c
171
temp->symbol = symbol;
usr.bin/yacc/mkpar.c
172
temp->number = ruleno;
usr.bin/yacc/mkpar.c
173
temp->prec = rprec[ruleno];
usr.bin/yacc/mkpar.c
174
temp->action_code = REDUCE;
usr.bin/yacc/mkpar.c
175
temp->assoc = rassoc[ruleno];
usr.bin/yacc/mkpar.c
178
prev->next = temp;
usr.bin/yacc/mkpar.c
180
actions = temp;
usr.bin/yacc/mkpar.c
99
action *actions, *temp;
usr.sbin/bgpctl/bgpctl.c
1392
struct timespec temp;
usr.sbin/bgpctl/bgpctl.c
1394
timespecsub(t, &prevtime, &temp);
usr.sbin/bgpctl/bgpctl.c
1396
(long long)temp.tv_sec, temp.tv_nsec / 1000);
usr.sbin/cron/entry.c
612
char temp[MAX_TEMPSTR], *pc;
usr.sbin/cron/entry.c
615
pc = temp;
usr.sbin/cron/entry.c
632
i = strtonum(temp, low, high, &errstr);
usr.sbin/cron/entry.c
650
if (!strcasecmp(names[i], temp)) {
usr.sbin/makefs/cd9660.c
1008
temp = i;
usr.sbin/makefs/cd9660.c
1010
digit = (int)(temp / powers);
usr.sbin/makefs/cd9660.c
1011
temp = temp - digit * powers;
usr.sbin/makefs/cd9660.c
173
cd9660node *temp = ecalloc(1, sizeof(*temp));
usr.sbin/makefs/cd9660.c
174
TAILQ_INIT(&temp->cn_children);
usr.sbin/makefs/cd9660.c
175
temp->parent = temp->dot_record = temp->dot_dot_record = NULL;
usr.sbin/makefs/cd9660.c
176
temp->ptnext = temp->ptprev = temp->ptlast = NULL;
usr.sbin/makefs/cd9660.c
177
temp->node = NULL;
usr.sbin/makefs/cd9660.c
178
temp->isoDirRecord = NULL;
usr.sbin/makefs/cd9660.c
179
temp->isoExtAttributes = NULL;
usr.sbin/makefs/cd9660.c
180
temp->rr_real_parent = temp->rr_relocated = NULL;
usr.sbin/makefs/cd9660.c
181
temp->su_tail_data = NULL;
usr.sbin/makefs/cd9660.c
1817
cd9660node *temp;
usr.sbin/makefs/cd9660.c
182
return temp;
usr.sbin/makefs/cd9660.c
1822
temp = cd9660_allocate_cd9660node();
usr.sbin/makefs/cd9660.c
1823
if (temp == NULL)
usr.sbin/makefs/cd9660.c
1828
temp->isoDirRecord = emalloc(sizeof(*temp->isoDirRecord));
usr.sbin/makefs/cd9660.c
1831
temp->isoDirRecord->name, sizeof temp->isoDirRecord->name, file);
usr.sbin/makefs/cd9660.c
1833
temp->node = tfsnode;
usr.sbin/makefs/cd9660.c
1834
temp->parent = parent;
usr.sbin/makefs/cd9660.c
1837
if (temp->parent != NULL) {
usr.sbin/makefs/cd9660.c
1838
temp->level = temp->parent->level + 1;
usr.sbin/makefs/cd9660.c
1839
if (!TAILQ_EMPTY(&temp->parent->cn_children))
usr.sbin/makefs/cd9660.c
1840
cd9660_sorted_child_insert(temp->parent, temp);
usr.sbin/makefs/cd9660.c
1842
TAILQ_INSERT_HEAD(&temp->parent->cn_children,
usr.sbin/makefs/cd9660.c
1843
temp, cn_next_child);
usr.sbin/makefs/cd9660.c
1861
cd9660_copy_stat_info(parent, temp, file);
usr.sbin/makefs/cd9660.c
1863
return temp;
usr.sbin/makefs/cd9660.c
1870
cd9660node *temp;
usr.sbin/makefs/cd9660.c
1872
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 1, 1);
usr.sbin/makefs/cd9660.c
1873
if (temp == NULL)
usr.sbin/makefs/cd9660.c
1876
temp->fileDataLength = 0;
usr.sbin/makefs/cd9660.c
1878
temp->type = CD9660_TYPE_FILE | CD9660_TYPE_VIRTUAL;
usr.sbin/makefs/cd9660.c
1880
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
1881
*temp->node->inode = *me->node->inode;
usr.sbin/makefs/cd9660.c
1883
if (cd9660_translate_node_common(diskStructure, temp) == 0)
usr.sbin/makefs/cd9660.c
1885
return temp;
usr.sbin/makefs/cd9660.c
1898
cd9660node *temp;
usr.sbin/makefs/cd9660.c
1900
temp = cd9660_create_virtual_entry(diskStructure, name, parent, 0, 1);
usr.sbin/makefs/cd9660.c
1901
if (temp == NULL)
usr.sbin/makefs/cd9660.c
1903
temp->node->type |= S_IFDIR;
usr.sbin/makefs/cd9660.c
1905
temp->type = CD9660_TYPE_DIR | CD9660_TYPE_VIRTUAL;
usr.sbin/makefs/cd9660.c
1907
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
1908
*temp->node->inode = *me->node->inode;
usr.sbin/makefs/cd9660.c
1910
if (cd9660_translate_node_common(diskStructure, temp) == 0)
usr.sbin/makefs/cd9660.c
1912
return temp;
usr.sbin/makefs/cd9660.c
1919
cd9660node *temp, *first;
usr.sbin/makefs/cd9660.c
1932
if ((temp = cd9660_create_virtual_entry(diskStructure, na, parent,
usr.sbin/makefs/cd9660.c
1936
temp->parent = parent;
usr.sbin/makefs/cd9660.c
1937
temp->type = type;
usr.sbin/makefs/cd9660.c
1938
temp->isoDirRecord->length[0] = 34;
usr.sbin/makefs/cd9660.c
1941
parent->dot_record = temp;
usr.sbin/makefs/cd9660.c
1942
TAILQ_INSERT_HEAD(&parent->cn_children, temp, cn_next_child);
usr.sbin/makefs/cd9660.c
1945
parent->dot_dot_record = temp;
usr.sbin/makefs/cd9660.c
1952
TAILQ_INSERT_HEAD(&parent->cn_children, temp,
usr.sbin/makefs/cd9660.c
1955
TAILQ_INSERT_AFTER(&parent->cn_children, first, temp,
usr.sbin/makefs/cd9660.c
1960
return temp;
usr.sbin/makefs/cd9660.c
634
volume_descriptor *temp, *t;
usr.sbin/makefs/cd9660.c
637
temp = emalloc(sizeof(*temp));
usr.sbin/makefs/cd9660.c
638
temp->volumeDescriptorData =
usr.sbin/makefs/cd9660.c
640
temp->volumeDescriptorData[0] = ISO_VOLUME_DESCRIPTOR_PVD;
usr.sbin/makefs/cd9660.c
641
temp->volumeDescriptorData[6] = 1;
usr.sbin/makefs/cd9660.c
642
temp->sector = sector;
usr.sbin/makefs/cd9660.c
643
memcpy(temp->volumeDescriptorData + 1,
usr.sbin/makefs/cd9660.c
645
diskStructure->firstVolumeDescriptor = temp;
usr.sbin/makefs/cd9660.c
652
temp->next = t;
usr.sbin/makefs/cd9660.c
653
temp = t;
usr.sbin/makefs/cd9660.c
662
temp->next = t;
usr.sbin/makefs/cd9660.c
692
char temp[ISO_FILENAME_MAXLENGTH_WITH_PADDING];
usr.sbin/makefs/cd9660.c
695
memset(temp, 0, ISO_FILENAME_MAXLENGTH_WITH_PADDING);
usr.sbin/makefs/cd9660.c
698
temp, sizeof temp, !(S_ISDIR(newnode->node->type)));
usr.sbin/makefs/cd9660.c
705
flag, strlen(temp), temp);
usr.sbin/makefs/cd9660.c
927
int numbts, dot, semi, digit, digits, temp, powers, multiplier, count;
usr.sbin/makefs/cd9660/cd9660_conversion.c
173
char temp[18];
usr.sbin/makefs/cd9660/cd9660_conversion.c
176
(void)snprintf(temp, sizeof(temp), "%04i%02i%02i%02i%02i%02i%02i",
usr.sbin/makefs/cd9660/cd9660_conversion.c
184
(void)memcpy(buf, temp, 16);
usr.sbin/makefs/cd9660/cd9660_debug.c
139
char temp[CD9660_SECTOR_SIZE];
usr.sbin/makefs/cd9660/cd9660_debug.c
144
memset(temp, 0, CD9660_SECTOR_SIZE);
usr.sbin/makefs/cd9660/cd9660_debug.c
145
memcpy(temp, tmp->volumeDescriptorData + 1, 5);
usr.sbin/makefs/cd9660/cd9660_debug.c
148
tmp->sector, tmp->volumeDescriptorData[0], temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
112
free(temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
120
free(temp);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
343
*valid_entry, *default_entry, *temp, *head, **headp, *next;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
405
temp = default_entry;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
445
temp = cd9660_boot_setup_section_entry(tmp_disk);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
446
if (temp == NULL) {
usr.sbin/makefs/cd9660/cd9660_eltorito.c
455
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
241
cd9660node *temp;
usr.sbin/makefs/cd9660/cd9660_write.c
284
TAILQ_FOREACH(temp, &writenode->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/cd9660_write.c
289
memcpy(&temp_record, temp->isoDirRecord,
usr.sbin/makefs/cd9660/cd9660_write.c
293
cd9660_compute_record_size(diskStructure, temp);
usr.sbin/makefs/cd9660/cd9660_write.c
307
temp->isoDirRecord->length[0], fd);
usr.sbin/makefs/cd9660/cd9660_write.c
309
cd9660_write_rr(diskStructure, fd, temp,
usr.sbin/makefs/cd9660/cd9660_write.c
314
temp_record.length[0] - temp->su_tail_size,
usr.sbin/makefs/cd9660/cd9660_write.c
317
if (temp->su_tail_size > 0)
usr.sbin/makefs/cd9660/cd9660_write.c
318
fwrite(temp->su_tail_data, 1,
usr.sbin/makefs/cd9660/cd9660_write.c
319
temp->su_tail_size, fd);
usr.sbin/makefs/cd9660/cd9660_write.c
331
TAILQ_FOREACH(temp, &writenode->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/cd9660_write.c
332
if (cd9660_write_file(diskStructure, fd, temp) == 0)
usr.sbin/makefs/cd9660/iso9660_rrip.c
111
TAILQ_FOREACH(temp, &node->cn_children, cn_next_child) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
112
if ((r = cd9660_susp_finalize(diskStructure, temp)) < 0)
usr.sbin/makefs/cd9660/iso9660_rrip.c
204
struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST;
usr.sbin/makefs/cd9660/iso9660_rrip.c
215
TAILQ_FOREACH(temp, &node->head, rr_ll) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
222
working -= CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
224
last = temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
225
susp_used += CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
250
for (temp = TAILQ_NEXT(last, rr_ll); temp != NULL;
usr.sbin/makefs/cd9660/iso9660_rrip.c
251
temp = TAILQ_NEXT(temp, rr_ll)) {
usr.sbin/makefs/cd9660/iso9660_rrip.c
252
ca_used += CD9660_SUSP_ENTRY_SIZE(temp);
usr.sbin/makefs/cd9660/iso9660_rrip.c
295
struct ISO_SUSP_ATTRIBUTES *temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
310
temp = cd9660node_susp_create_node(SUSP_TYPE_SUSP,
usr.sbin/makefs/cd9660/iso9660_rrip.c
312
cd9660_susp_sp(temp, node);
usr.sbin/makefs/cd9660/iso9660_rrip.c
315
TAILQ_INSERT_HEAD(&node->head, temp, rr_ll);
usr.sbin/makefs/cd9660/iso9660_rrip.c
456
struct ISO_SUSP_ATTRIBUTES* temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
458
temp = emalloc(sizeof(*temp));
usr.sbin/makefs/cd9660/iso9660_rrip.c
459
temp->susp_type = susp_type;
usr.sbin/makefs/cd9660/iso9660_rrip.c
460
temp->entry_type = entry_type;
usr.sbin/makefs/cd9660/iso9660_rrip.c
461
temp->last_in_suf = 0;
usr.sbin/makefs/cd9660/iso9660_rrip.c
463
temp->type_of[0] = type_id[0];
usr.sbin/makefs/cd9660/iso9660_rrip.c
464
temp->type_of[1] = type_id[1];
usr.sbin/makefs/cd9660/iso9660_rrip.c
465
temp->write_location = write_loc;
usr.sbin/makefs/cd9660/iso9660_rrip.c
472
temp->attr.su_entry.SP.h.type[0] = type_id[0];
usr.sbin/makefs/cd9660/iso9660_rrip.c
473
temp->attr.su_entry.SP.h.type[1] = type_id[1];
usr.sbin/makefs/cd9660/iso9660_rrip.c
474
return temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
98
cd9660node *temp;
usr.sbin/mtrace/mtrace.c
1245
u_int32_t temp = qdst;
usr.sbin/mtrace/mtrace.c
1247
qgrp = temp;
usr.sbin/nsd/difffile.c
1963
region_type* temp;
usr.sbin/nsd/difffile.c
1967
temp = region_create(xalloc, free);
usr.sbin/nsd/difffile.c
1968
buffer = buffer_create(temp, 4096);
usr.sbin/nsd/difffile.c
1974
region_destroy(temp);
usr.sbin/nsd/difffile.c
1982
region_destroy(temp);
usr.sbin/nsd/difffile.c
2221
region_type* temp = region_create(xalloc, free);
usr.sbin/nsd/difffile.c
2225
pat = pattern_options_unmarshal(temp, &buffer);
usr.sbin/nsd/difffile.c
2228
region_destroy(temp);
usr.sbin/nsd/dname.c
454
uint8_t temp[MAXLABELLEN + 2];
usr.sbin/nsd/dname.c
458
temp[0] = length;
usr.sbin/nsd/dname.c
459
memcpy(temp + 1, label, length * sizeof(uint8_t));
usr.sbin/nsd/dname.c
460
temp[length + 1] = '\000';
usr.sbin/nsd/dname.c
462
return dname_make(region, temp, 1);
usr.sbin/nsd/dname.c
471
uint8_t temp[MAXDOMAINLEN];
usr.sbin/nsd/dname.c
476
memcpy(temp, dname_name(left), left->name_size - 1);
usr.sbin/nsd/dname.c
477
memcpy(temp + left->name_size - 1, dname_name(right), right->name_size);
usr.sbin/nsd/dname.c
479
return dname_make(region, temp, 0);
usr.sbin/nsd/ixfr.c
1686
int file_num, int temp)
usr.sbin/nsd/ixfr.c
1689
snprintf(buf, len, "%s.ixfr%s", zfile, (temp?".temp":""));
usr.sbin/nsd/ixfr.c
1691
(temp?".temp":""));
usr.sbin/nsd/ixfr.c
1695
static int ixfr_file_exists_ctmp(const char* zfile, int file_num, int temp)
usr.sbin/nsd/ixfr.c
1699
make_ixfr_name_temp(ixfrfile, sizeof(ixfrfile), zfile, file_num, temp);
usr.sbin/nsd/ixfr.c
1723
int file_num, int silent_enoent, int temp)
usr.sbin/nsd/ixfr.c
1726
make_ixfr_name_temp(ixfrfile, sizeof(ixfrfile), zfile, file_num, temp);
usr.sbin/nsd/ixfr.c
1812
const char* zfile, int temp)
usr.sbin/nsd/ixfr.c
1819
data->file_num, 0, temp);
usr.sbin/nsd/ixfr.c
1975
struct region* temp, uint8_t* buf, size_t len,
usr.sbin/nsd/ixfr.c
1986
owners = domain_table_create(temp);
usr.sbin/nsd/ixfr.c
1987
*dname = dname_make(temp, buf, 1);
usr.sbin/nsd/ixfr.c
2045
uint8_t* buf, size_t len, struct region* temp, buffer_type* rr_buffer)
usr.sbin/nsd/ixfr.c
2050
if(!parse_wirerr_into_temp(zone, fname, temp, buf, len, &dname, &rr)) {
usr.sbin/nsd/ixfr.c
2051
region_free_all(temp);
usr.sbin/nsd/ixfr.c
2058
region_free_all(temp);
usr.sbin/nsd/ixfr.c
2066
region_free_all(temp);
usr.sbin/nsd/ixfr.c
2069
region_free_all(temp);
usr.sbin/nsd/ixfr.c
2075
uint8_t* buf, size_t len, struct region* temp, buffer_type* rr_buffer)
usr.sbin/nsd/ixfr.c
2087
temp, rr_buffer))
usr.sbin/nsd/ixfr.c
2098
struct region* temp, *rrtemp;
usr.sbin/nsd/ixfr.c
2100
temp = region_create(xalloc, free);
usr.sbin/nsd/ixfr.c
2105
temp, rr_buffer)) {
usr.sbin/nsd/ixfr.c
2106
region_destroy(temp);
usr.sbin/nsd/ixfr.c
2111
temp, rr_buffer)) {
usr.sbin/nsd/ixfr.c
2112
region_destroy(temp);
usr.sbin/nsd/ixfr.c
2117
temp, rr_buffer)) {
usr.sbin/nsd/ixfr.c
2118
region_destroy(temp);
usr.sbin/nsd/ixfr.c
2123
temp, rr_buffer)) {
usr.sbin/nsd/ixfr.c
2124
region_destroy(temp);
usr.sbin/nsd/ixfr.c
2128
region_destroy(temp);
usr.sbin/nsd/query.c
743
domain_type *temp = (domain_type *) region_alloc(
usr.sbin/nsd/query.c
746
temp->rnode = NULL;
usr.sbin/nsd/query.c
747
temp->dname = additional->dname;
usr.sbin/nsd/query.c
749
memcpy(&temp->node, &additional->node, sizeof(rbnode_type));
usr.sbin/nsd/query.c
750
temp->node.parent = NULL;
usr.sbin/nsd/query.c
752
temp->number = additional->number;
usr.sbin/nsd/query.c
753
temp->parent = match;
usr.sbin/nsd/query.c
754
temp->wildcard_child_closest_match = temp;
usr.sbin/nsd/query.c
755
temp->rrsets = wildcard_child->rrsets;
usr.sbin/nsd/query.c
756
temp->is_existing = wildcard_child->is_existing;
usr.sbin/nsd/query.c
757
additional = temp;
usr.sbin/nsd/xfrd.c
2011
int *done, xfrd_soa_type* soa, region_type* temp)
usr.sbin/nsd/xfrd.c
2031
region_free_all(temp);
usr.sbin/nsd/xfrd.c
2032
owners = domain_table_create(temp);
usr.sbin/nsd/xfrd.c
2034
dname = dname_make_from_packet(temp, packet, 1, 1);
usr.sbin/pppd/chat/chat.c
1259
char temp[STR_LEN];
usr.sbin/pppd/chat/chat.c
1261
char *s = temp, *end = s + STR_LEN;
usr.sbin/pppd/chat/chat.c
1262
char *logged = temp;
usr.sbin/pppd/chat/chat.c
1317
s - temp >= (report_len = strlen(report_string[n])) &&
usr.sbin/pppd/chat/chat.c
1343
if (s - temp >= len &&
usr.sbin/pppd/chat/chat.c
1358
if (s - temp >= (abort_len = strlen(abort_string[n])) &&
usr.sbin/pppd/chat/chat.c
1381
memmove(temp, s, minlen);
usr.sbin/pppd/chat/chat.c
1382
logged = temp + (logged - s);
usr.sbin/pppd/chat/chat.c
1383
s = temp + minlen;
usr.sbin/rpki-client/nca.c
465
char temp[] = NCA_HISTORY ".XXXXXXXX";
usr.sbin/rpki-client/nca.c
477
if ((fd = mkostemp(temp, O_CLOEXEC)) == -1)
usr.sbin/rpki-client/nca.c
522
if (utimensat(AT_FDCWD, temp, ts, 0) == -1)
usr.sbin/rpki-client/nca.c
525
if (rename(temp, NCA_HISTORY) == -1)
usr.sbin/rpki-client/nca.c
534
warn("error saving non-functional CA history to %s", temp);
usr.sbin/rpki-client/nca.c
537
unlink(temp);
usr.sbin/rpki-client/repo.c
400
char *temp;
usr.sbin/rpki-client/repo.c
403
temp = ta_filename(tr);
usr.sbin/rpki-client/repo.c
404
fd = open(temp,
usr.sbin/rpki-client/repo.c
408
warn("open: %s", temp);
usr.sbin/rpki-client/repo.c
409
free(temp);
usr.sbin/rpki-client/repo.c
414
free(temp);
usr.sbin/rpki-client/repo.c
568
rrdp_state_filename(const struct rrdprepo *rr, int temp)
usr.sbin/rpki-client/repo.c
573
temp ? ".XXXXXXXX" : "") == -1)
usr.sbin/rpki-client/repo.c
794
char *temp, *file;
usr.sbin/rpki-client/repo.c
803
temp = rrdp_state_filename(rr, 1);
usr.sbin/rpki-client/repo.c
805
if ((fd = mkostemp(temp, O_CLOEXEC)) == -1)
usr.sbin/rpki-client/repo.c
833
if (rename(temp, file) == -1) {
usr.sbin/rpki-client/repo.c
834
warn("%s: rename %s to %s", rr->basedir, temp, file);
usr.sbin/rpki-client/repo.c
835
unlink(temp);
usr.sbin/rpki-client/repo.c
840
free(temp);
usr.sbin/rpki-client/repo.c
845
warn("%s: save state to %s", rr->basedir, temp);
usr.sbin/rpki-client/repo.c
848
unlink(temp);
usr.sbin/rpki-client/repo.c
849
free(temp);
usr.sbin/snmpd/ax.c
1265
uint16_t temp;
usr.sbin/snmpd/ax.c
1268
temp = (uint16_t) vblist[i].avb_type;
usr.sbin/snmpd/ax.c
1269
if (ax_pdu_add_uint16(ax, temp) == -1 ||
usr.sbin/tcpdump/parsenfsfh.c
105
u_int32_t temp;
usr.sbin/tcpdump/parsenfsfh.c
217
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
218
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
228
temp = make_uint32(fhp[3], fhp[2], fhp[1], fhp[0]);
usr.sbin/tcpdump/parsenfsfh.c
229
fsidp->Fsid_dev.Minor = temp & 0xFFFFF;
usr.sbin/tcpdump/parsenfsfh.c
230
fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
usr.sbin/tcpdump/parsenfsfh.c
232
temp = make_uint32(fhp[15], fhp[14], fhp[13], fhp[12]);
usr.sbin/tcpdump/parsenfsfh.c
233
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
243
temp = make_uint32(fhp[8], fhp[9], fhp[10], fhp[11]);
usr.sbin/tcpdump/parsenfsfh.c
244
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
255
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
256
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
272
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
273
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
280
temp = make_uint16(fhp[0], fhp[1]);
usr.sbin/tcpdump/parsenfsfh.c
281
fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
usr.sbin/tcpdump/parsenfsfh.c
282
temp = make_uint24(fhp[1], fhp[2], fhp[3]);
usr.sbin/tcpdump/parsenfsfh.c
283
fsidp->Fsid_dev.Minor = temp & 0x3FFFF;
usr.sbin/tcpdump/parsenfsfh.c
286
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
287
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
298
temp = make_uint32(fhp[7], fhp[6], fhp[5], fhp[4]);
usr.sbin/tcpdump/parsenfsfh.c
299
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
338
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
339
*inop = temp;
usr.sbin/tcpdump/parsenfsfh.c
347
temp = make_uint24(fhp[1], fhp[2], fhp[3]);
usr.sbin/tcpdump/parsenfsfh.c
348
fsidp->Fsid_dev.Minor = temp;
usr.sbin/tcpdump/parsenfsfh.c
351
temp = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
usr.sbin/tcpdump/parsenfsfh.c
352
*inop = temp;
usr.sbin/tcpdump/print-nfs.c
721
static char temp[NFSX_V3FHMAX+1];
usr.sbin/tcpdump/print-nfs.c
724
strlcpy(temp, sfsname, sizeof(temp));
usr.sbin/tcpdump/print-nfs.c
726
sfsname = strchr(temp, ' ');
usr.sbin/tcpdump/print-nfs.c
730
printf(" fh %s/%u", temp, (u_int32_t)ino);
usr.sbin/unbound/daemon/daemon.c
747
int i, n, k, temp;
usr.sbin/unbound/daemon/daemon.c
762
temp = shufport[k];
usr.sbin/unbound/daemon/daemon.c
764
shufport[n] = temp;
usr.sbin/unbound/dynlibmod/dynlibmod.c
269
struct inplace_cb* temp = env->inplace_cb_lists[type];
usr.sbin/unbound/dynlibmod/dynlibmod.c
272
while(temp) {
usr.sbin/unbound/dynlibmod/dynlibmod.c
273
if(temp->id == id) {
usr.sbin/unbound/dynlibmod/dynlibmod.c
275
env->inplace_cb_lists[type] = temp->next;
usr.sbin/unbound/dynlibmod/dynlibmod.c
276
free(temp->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
277
free(temp);
usr.sbin/unbound/dynlibmod/dynlibmod.c
278
temp = env->inplace_cb_lists[type];
usr.sbin/unbound/dynlibmod/dynlibmod.c
281
prev->next = temp->next;
usr.sbin/unbound/dynlibmod/dynlibmod.c
282
free(temp->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
283
free(temp);
usr.sbin/unbound/dynlibmod/dynlibmod.c
284
temp = prev->next;
usr.sbin/unbound/dynlibmod/dynlibmod.c
288
prev = temp;
usr.sbin/unbound/dynlibmod/dynlibmod.c
289
temp = temp->next;
usr.sbin/unbound/libunbound/libworker.c
521
struct regional* temp, enum sec_status msg_security)
usr.sbin/unbound/libunbound/libworker.c
526
rep = parse_reply_in_temp_region(buf, temp, &rq);
usr.sbin/unbound/libunbound/libworker.h
155
struct regional* temp, enum sec_status msg_security);
usr.sbin/unbound/services/authzone.c
3543
struct regional* temp, struct dns_msg* msg)
usr.sbin/unbound/services/authzone.c
3553
(int)FLAGS_GET_RCODE(msg->rep->flags), edns, repinfo, temp, env->now_tv)
usr.sbin/unbound/services/authzone.c
3557
buf, 0, 0, temp, udpsize, edns,
usr.sbin/unbound/services/authzone.c
3569
struct regional* temp, int rcode)
usr.sbin/unbound/services/authzone.c
3577
rcode, edns, repinfo, temp, env->now_tv))
usr.sbin/unbound/services/authzone.c
3587
struct regional* temp)
usr.sbin/unbound/services/authzone.c
3637
auth_error_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/authzone.c
3643
r = auth_zone_generate_answer(z, &zqinfo, temp, &msg, &fallback);
usr.sbin/unbound/services/authzone.c
3653
auth_error_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/authzone.c
3655
else auth_answer_encode(qinfo, env, edns, repinfo, buf, temp, msg);
usr.sbin/unbound/services/authzone.c
5772
struct regional* temp = env->scratch;
usr.sbin/unbound/services/authzone.c
5778
rep = parse_reply_in_temp_region(buf, temp, &rq);
usr.sbin/unbound/services/authzone.c
5801
regional_free_all(temp);
usr.sbin/unbound/services/authzone.c
6865
struct regional* temp = env->scratch;
usr.sbin/unbound/services/authzone.c
6871
rep = parse_reply_in_temp_region(buf, temp, &rq);
usr.sbin/unbound/services/authzone.c
6894
regional_free_all(temp);
usr.sbin/unbound/services/authzone.c
8403
struct regional* temp = env->scratch;
usr.sbin/unbound/services/authzone.c
8407
rep = parse_reply_in_temp_region(buf, temp, &rq);
usr.sbin/unbound/services/authzone.h
560
struct regional* temp);
usr.sbin/unbound/services/localzone.c
1341
struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec,
usr.sbin/unbound/services/localzone.c
1362
repinfo, temp, env->now_tv) || !reply_info_answer_encode(qinfo, &rep,
usr.sbin/unbound/services/localzone.c
1364
buf, 0, 0, temp, udpsize, edns, (int)(edns->bits&EDNS_DO), 0)) {
usr.sbin/unbound/services/localzone.c
1376
struct regional* temp, int rcode, int r, int ede_code,
usr.sbin/unbound/services/localzone.c
1385
rcode, edns, repinfo, temp, env->now_tv))
usr.sbin/unbound/services/localzone.c
1389
edns_opt_list_append_ede(&edns->opt_list_out, temp,
usr.sbin/unbound/services/localzone.c
1401
struct regional* temp)
usr.sbin/unbound/services/localzone.c
1436
temp, sizeof(struct packed_rrset_data)
usr.sbin/unbound/services/localzone.c
1456
d->rr_len = (size_t*)regional_alloc_zero(temp,
usr.sbin/unbound/services/localzone.c
1458
d->rr_data = (uint8_t**)regional_alloc_zero(temp,
usr.sbin/unbound/services/localzone.c
1460
d->rr_ttl = (time_t*)regional_alloc_zero(temp,
usr.sbin/unbound/services/localzone.c
1474
d->rr_data[d->count] = regional_alloc_init(temp,
usr.sbin/unbound/services/localzone.c
1488
struct ub_packed_rrset_key* r, struct regional* temp)
usr.sbin/unbound/services/localzone.c
1490
int result = local_data_find_tag_datas(qinfo, list, r, temp);
usr.sbin/unbound/services/localzone.c
1498
regional_alloc_zero(temp, sizeof(struct local_rrset));
usr.sbin/unbound/services/localzone.c
1502
regional_alloc_init(temp, r, sizeof(*r));
usr.sbin/unbound/services/localzone.c
1513
struct regional* temp, int labs, struct local_data** ldp,
usr.sbin/unbound/services/localzone.c
1532
if(find_tag_datas(qinfo, tag_datas[tag], &r, temp)) {
usr.sbin/unbound/services/localzone.c
1542
return local_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1565
regional_alloc_zero(temp, sizeof(struct local_rrset));
usr.sbin/unbound/services/localzone.c
1569
temp, lr->rrset, sizeof(*lr->rrset));
usr.sbin/unbound/services/localzone.c
1589
buf, temp, LDNS_RCODE_YXDOMAIN,
usr.sbin/unbound/services/localzone.c
1601
d = (struct packed_rrset_data*)regional_alloc_zero(temp,
usr.sbin/unbound/services/localzone.c
1636
return local_encode(qinfo, env, edns, repinfo, buf, temp, &r, 1,
usr.sbin/unbound/services/localzone.c
1639
return local_encode(qinfo, env, edns, repinfo, buf, temp, lr->rrset, 1,
usr.sbin/unbound/services/localzone.c
1684
struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp,
usr.sbin/unbound/services/localzone.c
1696
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1721
return local_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1723
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1733
local_error_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1772
return local_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1777
temp, LDNS_RCODE_NOERROR,
usr.sbin/unbound/services/localzone.c
1789
return local_encode(qinfo, env, edns, repinfo, buf, temp,
usr.sbin/unbound/services/localzone.c
1792
local_error_encode(qinfo, env, edns, repinfo, buf, temp, rcode,
usr.sbin/unbound/services/localzone.c
1876
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
usr.sbin/unbound/services/localzone.c
1959
&& local_data_answer(z, env, qinfo, edns, repinfo, buf, temp, labs,
usr.sbin/unbound/services/localzone.c
1966
r = local_zones_zone_answer(z, env, qinfo, edns, repinfo, buf, temp, ld, lzt);
usr.sbin/unbound/services/localzone.h
334
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
usr.sbin/unbound/services/localzone.h
355
struct comm_reply* repinfo, sldns_buffer* buf, struct regional* temp,
usr.sbin/unbound/services/localzone.h
473
struct regional* temp);
usr.sbin/unbound/services/localzone.h
619
struct regional* temp, int labs, struct local_data** ldp,
usr.sbin/unbound/services/rpz.c
1776
struct regional* temp, struct ub_packed_rrset_key* rrset, int ansec,
usr.sbin/unbound/services/rpz.c
1808
repinfo, temp, env->now_tv) ||
usr.sbin/unbound/services/rpz.c
1811
buf, 0, 0, temp, udpsize, edns, (int)(edns->bits&EDNS_DO), 0)) {
usr.sbin/unbound/services/rpz.c
1823
struct regional* temp)
usr.sbin/unbound/services/rpz.c
1838
return respip_copy_rrset(&csoa, temp);
usr.sbin/unbound/services/rpz.c
1845
struct regional* temp, struct auth_zone* auth_zone)
usr.sbin/unbound/services/rpz.c
1869
rp = respip_copy_rrset(rrset->rrset, temp);
usr.sbin/unbound/services/rpz.c
1884
rsoa = make_soa_ubrrset(auth_zone, soa, temp);
usr.sbin/unbound/services/rpz.c
1892
rpz_local_encode(env, qinfo, edns, repinfo, buf, temp, rp,
usr.sbin/unbound/services/rpz.c
1900
struct query_info* qinfo, struct regional* temp)
usr.sbin/unbound/services/rpz.c
1904
qinfo->local_alias = regional_alloc_zero(temp,
usr.sbin/unbound/services/rpz.c
1908
qinfo->local_alias->rrset = respip_copy_rrset(r->cname_override, temp);
usr.sbin/unbound/services/rpz.c
2239
struct edns_data* edns, sldns_buffer* buf, struct regional* temp,
usr.sbin/unbound/services/rpz.c
2245
if(!rpz_apply_cname_override_action(r, qinfo, temp))
usr.sbin/unbound/services/rpz.c
2256
edns, repinfo, buf, temp, dname_count_labels(qinfo->qname),
usr.sbin/unbound/services/rpz.c
2267
ret = local_zones_zone_answer(z, env, qinfo, edns, repinfo, buf, temp,
usr.sbin/unbound/services/rpz.c
2663
sldns_buffer* buf, struct regional* temp,
usr.sbin/unbound/services/rpz.c
2702
edns, repinfo, buf, temp, *a_out);
usr.sbin/unbound/services/rpz.c
2706
temp)) {
usr.sbin/unbound/services/rpz.c
2713
repinfo, buf, temp, 0 /* no local data used */,
usr.sbin/unbound/services/rpz.c
2741
struct regional* temp, struct comm_reply* repinfo, uint8_t* taglist,
usr.sbin/unbound/services/rpz.c
2751
edns, repinfo, taglist, taglen, stats, buf, temp, &z, &a, &r,
usr.sbin/unbound/services/rpz.c
2794
ret = rpz_synthesize_qname_localdata(env, r, z, lzt, qinfo, edns, buf, temp,
usr.sbin/unbound/services/rpz.h
182
struct regional* temp, struct comm_reply* repinfo,
usr.sbin/unbound/util/module.c
329
struct inplace_cb* temp = env->inplace_cb_lists[type];
usr.sbin/unbound/util/module.c
332
while(temp) {
usr.sbin/unbound/util/module.c
333
if(temp->id == id) {
usr.sbin/unbound/util/module.c
335
env->inplace_cb_lists[type] = temp->next;
usr.sbin/unbound/util/module.c
336
free(temp);
usr.sbin/unbound/util/module.c
337
temp = env->inplace_cb_lists[type];
usr.sbin/unbound/util/module.c
340
prev->next = temp->next;
usr.sbin/unbound/util/module.c
341
free(temp);
usr.sbin/unbound/util/module.c
342
temp = prev->next;
usr.sbin/unbound/util/module.c
346
prev = temp;
usr.sbin/unbound/util/module.c
347
temp = temp->next;
usr.sbin/unbound/util/netevent.c
6369
sldns_buffer* temp)
usr.sbin/unbound/util/netevent.c
6407
c->http_temp = temp;
usr.sbin/unbound/util/netevent.h
679
void* callback_arg, struct sldns_buffer* temp);