Symbol: location
games/battlestar/command1.c
113
if (location == nightfile) {
games/battlestar/command1.c
122
ClearBit(location[POOLS].objects, BATHGOD);
games/battlestar/command1.c
137
if (TestBit(location[position].objects, ELF)) {
games/battlestar/command1.c
141
if (TestBit(location[position].objects, DARK)) {
games/battlestar/command1.c
145
if (TestBit(location[position].objects, WOODSMAN)) {
games/battlestar/command1.c
165
if (TestBit(location[position].objects, GIRL))
games/battlestar/command1.c
168
SetBit(location[GARDEN].objects, GIRLTALK);
games/battlestar/command1.c
169
SetBit(location[GARDEN].objects, LAMPON);
games/battlestar/command1.c
170
SetBit(location[GARDEN].objects, ROPE);
games/battlestar/command1.c
173
ClearBit(location[DOCK].objects, GIRL);
games/battlestar/command1.c
174
ClearBit(location[DOCK].objects, MAN);
games/battlestar/command1.c
177
ClearBit(location[GARDEN].objects, GIRLTALK);
games/battlestar/command1.c
178
ClearBit(location[GARDEN].objects, LAMPON);
games/battlestar/command1.c
179
ClearBit(location[GARDEN].objects, ROPE);
games/battlestar/command1.c
182
if (TestBit(location[position].objects, CYLON)) {
games/battlestar/command1.c
195
ClearBit(location[position].objects, CYLON);
games/battlestar/command1.c
239
if (!location[position].flyhere ||
games/battlestar/command1.c
240
(TestBit(location[position].objects, LAND) && fuel <= 0)) {
games/battlestar/command1.c
241
if (!location[position].flyhere)
games/battlestar/command1.c
245
if (!location[position].down) {
games/battlestar/command1.c
250
position = location[position].down;
games/battlestar/command1.c
253
SetBit(location[position].objects, CRASH);
games/battlestar/command1.c
281
TestBit(location[position].objects, LAMPON)) {
games/battlestar/command1.c
286
whichway(location[position]);
games/battlestar/command1.c
44
TestBit(location[position].objects, LAND) ||
games/battlestar/command1.c
53
whichway(location[position]);
games/battlestar/command1.c
81
location = nightfile;
games/battlestar/command1.c
88
location = dayfile;
games/battlestar/command2.c
142
location[position].down = 160;
games/battlestar/command2.c
143
whichway(location[position]);
games/battlestar/command2.c
218
if (TestBit(location[position].objects, BATHGOD)) {
games/battlestar/command2.c
220
ClearBit(location[position].objects, BATHGOD);
games/battlestar/command2.c
221
SetBit(location[position].objects, DEADGOD);
games/battlestar/command2.c
225
if (TestBit(location[position].objects, NORMGOD)) {
games/battlestar/command2.c
227
ClearBit(location[position].objects, NORMGOD);
games/battlestar/command2.c
228
SetBit(location[position].objects, DEADGOD);
games/battlestar/command2.c
237
if (TestBit(location[position].objects, TIMER)) {
games/battlestar/command2.c
239
ClearBit(location[position].objects, TIMER);
games/battlestar/command2.c
240
SetBit(location[position].objects, DEADTIME);
games/battlestar/command2.c
247
if (TestBit(location[position].objects, NATIVE)) {
games/battlestar/command2.c
249
ClearBit(location[position].objects, NATIVE);
games/battlestar/command2.c
250
SetBit(location[position].objects, DEADNATIVE);
games/battlestar/command2.c
257
if (TestBit(location[position].objects, MAN)) {
games/battlestar/command2.c
283
if (wordtype[wordnumber] == NOUNS && (TestBit(location[position].objects, wordvalue[wordnumber])
games/battlestar/command2.c
284
|| (wordvalue[wordnumber] == NORMGOD && TestBit(location[position].objects, BATHGOD)))) {
games/battlestar/command2.c
289
if (TestBit(location[position].objects, BATHGOD))
games/battlestar/command2.c
311
SetBit(location[ahead].objects, WOODSMAN);
games/battlestar/command2.c
312
SetBit(location[ahead].objects, DEADWOOD);
games/battlestar/command2.c
313
SetBit(location[ahead].objects, MALLET);
games/battlestar/command2.c
314
SetBit(location[back].objects, WOODSMAN);
games/battlestar/command2.c
315
SetBit(location[back].objects, DEADWOOD);
games/battlestar/command2.c
316
SetBit(location[back].objects, MALLET);
games/battlestar/command2.c
317
SetBit(location[left].objects, WOODSMAN);
games/battlestar/command2.c
318
SetBit(location[left].objects, DEADWOOD);
games/battlestar/command2.c
319
SetBit(location[left].objects, MALLET);
games/battlestar/command2.c
320
SetBit(location[right].objects, WOODSMAN);
games/battlestar/command2.c
321
SetBit(location[right].objects, DEADWOOD);
games/battlestar/command2.c
322
SetBit(location[right].objects, MALLET);
games/battlestar/command2.c
344
SetBit(location[position].objects, TALISMAN);
games/battlestar/command2.c
345
SetBit(location[position].objects, AMULET);
games/battlestar/command2.c
352
SetBit(location[position].objects, NORMGOD);
games/battlestar/command2.c
366
(TestBit(location[position].objects, NORMGOD)) && godready >= 2) {
games/battlestar/command3.c
111
if (wordtype[wordnumber] == NOUNS && (TestBit(location[position].objects, value) || value == BODY)) {
games/battlestar/command3.c
115
if (TestBit(inven, MAID) || TestBit(location[position].objects, MAID))
games/battlestar/command3.c
117
if (TestBit(inven, DEADWOOD) || TestBit(location[position].objects, DEADWOOD))
games/battlestar/command3.c
119
if (TestBit(inven, DEADGOD) || TestBit(location[position].objects, DEADGOD))
games/battlestar/command3.c
121
if (TestBit(inven, DEADTIME) || TestBit(location[position].objects, DEADTIME))
games/battlestar/command3.c
123
if (TestBit(inven, DEADNATIVE) || TestBit(location[position].objects, DEADNATIVE))
games/battlestar/command3.c
143
if (wordtype[wordnumber] == OBJECT && position > 88 && (TestBit(inven, value) || TestBit(location[position].objects, value))) {
games/battlestar/command3.c
150
ClearBit(location[position].objects, value);
games/battlestar/command3.c
199
if (TestBit(location[position].objects, value)) {
games/battlestar/command3.c
200
ClearBit(location[position].objects, value);
games/battlestar/command3.c
224
location[189].north = 231;
games/battlestar/command3.c
225
location[231].south = 189;
games/battlestar/command3.c
226
whichway(location[position]);
games/battlestar/command3.c
230
location[30].west = 25;
games/battlestar/command3.c
231
whichway(location[position]);
games/battlestar/command3.c
247
if (TestBit(location[position].objects, BATHGOD)) {
games/battlestar/command3.c
251
ClearBit(location[position].objects, BATHGOD);
games/battlestar/command3.c
252
SetBit(location[180].objects, DEADGOD);
games/battlestar/command3.c
257
if (TestBit(location[position].objects, NORMGOD)) {
games/battlestar/command3.c
261
ClearBit(location[position].objects, NORMGOD);
games/battlestar/command3.c
262
SetBit(location[position].objects, DEADGOD);
games/battlestar/command3.c
274
if (TestBit(location[position].objects, TIMER)) {
games/battlestar/command3.c
279
ClearBit(location[position].objects, TIMER);
games/battlestar/command3.c
280
SetBit(location[position].objects, DEADTIME);
games/battlestar/command3.c
285
if (TestBit(location[position].objects, MAN)) {
games/battlestar/command3.c
293
if (TestBit(location[position].objects, NATIVE)) {
games/battlestar/command3.c
295
ClearBit(location[position].objects, NATIVE);
games/battlestar/command3.c
296
SetBit(location[position].objects, DEADNATIVE);
games/battlestar/command3.c
46
SetBit(location[position].objects, DEADWOOD);
games/battlestar/command3.c
47
SetBit(location[position].objects, COMPASS);
games/battlestar/command3.c
48
SetBit(location[position].objects, KNIFE);
games/battlestar/command3.c
49
SetBit(location[position].objects, MACE);
games/battlestar/command3.c
94
SetBit(location[position].objects, n);
games/battlestar/command4.c
132
if (TestBit(location[position].objects, AMULET)) {
games/battlestar/command4.c
143
if (TestBit(location[position].objects, MEDALION)) {
games/battlestar/command4.c
151
if (TestBit(location[position].objects, TALISMAN)) {
games/battlestar/command4.c
158
if (TestBit(location[position].objects, BATHGOD) && (TestBit(wear, AMULET) || TestBit(inven, AMULET))) {
games/battlestar/command4.c
166
ClearBit(location[position].objects, BATHGOD);
games/battlestar/command4.c
168
if (!TestBit(location[position].objects, BATHGOD))
games/battlestar/command4.c
210
deposit = location[position].up * (location[position].access || position == FINAL);
games/battlestar/command4.c
214
deposit = location[position].down;
games/battlestar/command4.c
220
if (deposit && TestBit(location[position].objects, value)) {
games/battlestar/command4.c
221
ClearBit(location[position].objects, value);
games/battlestar/command4.c
223
SetBit(location[deposit].objects, value);
games/battlestar/command4.c
227
location[deposit].objects[n] = 0;
games/battlestar/command4.c
228
SetBit(location[deposit].objects, CHAR);
games/battlestar/command4.c
231
location[position].access = 1;
games/battlestar/command4.c
236
location[189].north = 231;
games/battlestar/command4.c
237
location[231].south = 189;
games/battlestar/command4.c
241
location[30].west = 25;
games/battlestar/command4.c
247
if (value == GRENADE && TestBit(location[position].objects, value)) {
games/battlestar/command4.c
273
if (TestBit(inven, MAID) || TestBit(location[position].objects, MAID))
games/battlestar/command4.c
275
if (TestBit(inven, DEADWOOD) || TestBit(location[position].objects, DEADWOOD))
games/battlestar/command4.c
277
if (TestBit(inven, DEADGOD) || TestBit(location[position].objects, DEADGOD))
games/battlestar/command4.c
279
if (TestBit(inven, DEADTIME) || TestBit(location[position].objects, DEADTIME))
games/battlestar/command4.c
281
if (TestBit(inven, DEADNATIVE) || TestBit(location[position].objects, DEADNATIVE))
games/battlestar/command4.c
305
SetBit(location[position].objects, value);
games/battlestar/command4.c
316
if (TestBit(location[position].objects, value)) {
games/battlestar/command4.c
322
} else if (TestBit(location[position].objects, value))
games/battlestar/command4.c
349
wordnumber = take(location[position].objects);
games/battlestar/command5.c
121
SetBit(location[position].objects, MEDALION);
games/battlestar/command5.c
132
if (TestBit(location[position].objects, wordvalue[wordnumber])) {
games/battlestar/command5.c
172
if (location[position].down) {
games/battlestar/command5.c
173
position = location[position].down;
games/battlestar/command5.c
188
SetBit(location[position].objects, n);
games/battlestar/command5.c
196
SetBit(location[position].objects, DEADWOOD);
games/battlestar/command5.c
199
SetBit(location[position].objects, HALBERD);
games/battlestar/command5.c
306
if (person && TestBit(location[position].objects, person)) {
games/battlestar/command5.c
316
if (result != -1 && (TestBit(location[position].objects, obj) || obj == AMULET || obj == MEDALION || obj == TALISMAN)) {
games/battlestar/command5.c
317
ClearBit(location[position].objects, obj);
games/battlestar/command5.c
346
ClearBit(location[position].objects, MEDALION);
games/battlestar/command5.c
45
&& TestBit(location[position].objects, BATHGOD)) {
games/battlestar/command5.c
51
if (TestBit(location[position].objects, wordvalue[wordnumber])) {
games/battlestar/command5.c
98
if ((TestBit(location[position].objects, BATHGOD) ||
games/battlestar/command5.c
99
TestBit(location[position].objects, NORMGOD)) &&
games/battlestar/command6.c
183
if (TestBit(location[position].objects, CAR)) {
games/battlestar/command6.c
186
ClearBit(location[position].objects, CAR);
games/battlestar/command6.c
187
SetBit(location[position].objects, CRASH);
games/battlestar/command6.c
200
if (TestBit(location[position].objects, HORSE)) {
games/battlestar/command6.c
203
ClearBit(location[position].objects, HORSE);
games/battlestar/command6.c
205
!beenthere[position] || location[position].flyhere)
games/battlestar/command6.c
207
SetBit(location[position].objects, HORSE);
games/battlestar/command6.c
208
if (location[position].north)
games/battlestar/command6.c
209
position = location[position].north;
games/battlestar/command6.c
210
else if (location[position].south)
games/battlestar/command6.c
211
position = location[position].south;
games/battlestar/command6.c
212
else if (location[position].east)
games/battlestar/command6.c
213
position = location[position].east;
games/battlestar/command6.c
215
position = location[position].west;
games/battlestar/command6.c
247
if (location[189].north == 231)
games/battlestar/command6.c
253
if (location[30].west == 25)
games/battlestar/command6.c
46
if (TestBit(location[position].objects, VIPER) && !notes[CANTLAUNCH]) {
games/battlestar/command6.c
48
ClearBit(location[position].objects, VIPER);
games/battlestar/command6.c
49
position = location[position].up;
games/battlestar/command6.c
66
if (notes[LAUNCHED] && TestBit(location[position].objects, LAND) &&
games/battlestar/command6.c
67
location[position].down) {
games/battlestar/command6.c
69
position = location[position].down;
games/battlestar/command6.c
70
SetBit(location[position].objects, VIPER);
games/battlestar/command7.c
185
ClearBit(location[position].objects, DARK);
games/battlestar/command7.c
205
moveplayer(location[position].down, AHEAD);
games/battlestar/command7.c
217
SetBit(location[position].objects, LASER);
games/battlestar/command7.c
241
ClearBit(location[position].objects, enemy);
games/battlestar/cypher.c
109
if (location[position].access || tempwiz) {
games/battlestar/cypher.c
110
if (!location[position].access)
games/battlestar/cypher.c
112
if (!moveplayer(location[position].up, AHEAD))
games/battlestar/cypher.c
122
if (!moveplayer(location[position].down, AHEAD))
games/battlestar/cypher.c
152
verb_with_all(location[position].objects, OBJ_PERSON,
games/battlestar/cypher.c
161
if (TestBit(location[position].objects, n) && objsht[n]) {
games/battlestar/cypher.c
187
wordnumber = take(location[position].objects);
games/battlestar/cypher.c
193
take(location[position].objects);
games/battlestar/cypher.c
223
(TestBit(location[position].objects, n) && objsht[n])) {
games/battlestar/cypher.c
244
verb_with_all(location[position].objects, 0, puton, "put on");
games/battlestar/cypher.c
307
TestBit(location[position].objects, LAMPON)
games/battlestar/extern.h
251
extern struct room *location;
games/battlestar/globals.c
236
struct room *location;
games/battlestar/init.c
53
location = dayfile;
games/battlestar/init.c
67
SetBit(location[p->room].objects, p->obj);
games/battlestar/room.c
44
printf("\n\t%s\n", location[position].name);
games/battlestar/room.c
47
for (p = location[position].desc; (c = *p++) != 0;)
games/battlestar/room.c
64
unsigned int *p = location[position].objects;
games/battlestar/save.c
107
tmp = location == dayfile;
games/battlestar/save.c
110
fwrite(location[n].link, sizeof location[n].link, 1, fp);
games/battlestar/save.c
111
fwrite(location[n].objects, sizeof location[n].objects, 1, fp);
games/battlestar/save.c
55
location = tmp ? dayfile : nightfile;
games/battlestar/save.c
57
fread(location[n].link, sizeof location[n].link, 1, fp);
games/battlestar/save.c
58
fread(location[n].objects, sizeof location[n].objects, 1, fp);
lib/libcbor/src/cbor/internal/unicode.c
72
(struct _cbor_unicode_status){.location = 0, .status = _CBOR_UNICODE_OK};
lib/libcbor/src/cbor/internal/unicode.c
92
*status = (struct _cbor_unicode_status){.location = pos,
lib/libcbor/src/cbor/internal/unicode.h
22
uint64_t location;
lib/libcrypto/ocsp/ocsp_ext.c
587
if (!(ad->location = GENERAL_NAME_new()))
lib/libcrypto/ocsp/ocsp_ext.c
593
ad->location->type = GEN_URI;
lib/libcrypto/ocsp/ocsp_ext.c
594
ad->location->d.ia5 = ia5;
lib/libcrypto/x509/x509_info.c
132
.offset = offsetof(ACCESS_DESCRIPTION, location),
lib/libcrypto/x509/x509_info.c
246
if ((ret = i2v_GENERAL_NAME(method, desc->location,
lib/libcrypto/x509/x509_info.c
303
if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0))
lib/libcrypto/x509/x509_ocsp.c
416
if (GENERAL_NAME_print(bp, ad->location) <= 0)
lib/libcrypto/x509/x509_utl.c
663
if (ad->location->type == GEN_URI) {
lib/libcrypto/x509/x509_utl.c
665
ad->location->d.uniformResourceIdentifier))
lib/libcrypto/x509/x509v3.h
200
GENERAL_NAME *location;
sbin/bioctl/bioctl.c
303
str2locator(const char *string, struct locator *location)
sbin/bioctl/bioctl.c
317
location->lun = strtonum(lun, 0, 256, &errstr);
sbin/bioctl/bioctl.c
321
location->lun = 0;
sbin/bioctl/bioctl.c
323
location->target = strtonum(targ, 0, 256, &errstr);
sbin/bioctl/bioctl.c
326
location->channel = strtonum(parse, 0, 256, &errstr);
sbin/bioctl/bioctl.c
685
struct locator location;
sbin/bioctl/bioctl.c
692
errstr = str2locator(arg, &location);
sbin/bioctl/bioctl.c
695
bs.bs_channel = location.channel;
sbin/bioctl/bioctl.c
696
bs.bs_target = location.target;
sbin/bioctl/bioctl.c
697
bs.bs_lun = location.lun;
sbin/bioctl/bioctl.c
723
struct locator location;
sbin/bioctl/bioctl.c
731
errstr = str2locator(arg, &location);
sbin/bioctl/bioctl.c
739
bb.bb_target = location.target;
sbin/bioctl/bioctl.c
740
bb.bb_channel = location.channel;
sbin/bioctl/bioctl.c
783
if (bd.bd_channel == location.channel &&
sbin/bioctl/bioctl.c
784
bd.bd_target == location.target &&
sbin/bioctl/bioctl.c
785
bd.bd_lun == location.lun) {
sbin/bioctl/bioctl.c
788
location.target, blink);
sys/arch/amd64/include/smbiosvar.h
187
uint8_t location; /* location in chassis */
sys/arch/arm64/include/smbiosvar.h
184
uint8_t location; /* location in chassis */
sys/arch/i386/include/smbiosvar.h
187
uint8_t location; /* location in chassis */
sys/arch/powerpc64/include/smbiosvar.h
184
uint8_t location; /* location in chassis */
sys/dev/ic/qla.c
1548
port->location = loc;
sys/dev/ic/qla.c
1620
fport->location = QLA_LOCATION_PORT_ID(*lastport);
sys/dev/ic/qla.c
177
qla_classify_port(struct qla_softc *sc, u_int32_t location,
sys/dev/ic/qla.c
1772
if (port->location & QLA_LOCATION_FABRIC)
sys/dev/ic/qla.c
1809
if (port->location & QLA_LOCATION_FABRIC) {
sys/dev/ic/qla.c
1830
if (port->location & QLA_LOCATION_LOOP)
sys/dev/ic/qla.c
1834
fport->location = 0;
sys/dev/ic/qla.c
1858
} else if (fport->location & QLA_LOCATION_LOOP) {
sys/dev/ic/qla.c
1863
} else if (fport->location & QLA_LOCATION_FABRIC) {
sys/dev/ic/qla.c
188
port->location == location) {
sys/dev/ic/qla.c
1890
disp = qla_classify_port(sc, fport->location,
sys/dev/ic/qla.c
1988
if (port->location & QLA_LOCATION_FABRIC)
sys/dev/ic/qla.c
201
if (port->location == location)
sys/dev/ic/qla.c
294
disp = qla_classify_port(sc, port->location, port->port_name,
sys/dev/ic/qla.c
344
if (port->location == QLA_LOCATION_FABRIC) {
sys/dev/ic/qla.c
349
port->location = QLA_LOCATION_PORT_ID(port->portid);
sys/dev/ic/qla.c
408
port->location = QLA_LOCATION_PORT_ID(portid);
sys/dev/ic/qlavar.h
78
u_int32_t location; /* port id or loop id */
sys/dev/isa/if_ex.c
940
ex_eeprom_read(struct ex_softc *sc, int location)
sys/dev/isa/if_ex.c
944
int read_cmd = location | EE_READ_CMD;
sys/dev/isa/if_ie.c
1530
ee16_read_eeprom(struct ie_softc *sc, int location)
sys/dev/isa/if_ie.c
1540
ee16_eeprom_outbits(sc, location, IEE16_EEPROM_ADDR_SIZE);
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
313
svm_range_set_default_attributes(struct svm_range_list *svms, int32_t *location,
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
317
*location = KFD_IOCTL_SVM_LOCATION_UNDEFINED;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3809
uint32_t location = KFD_IOCTL_SVM_LOCATION_UNDEFINED;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3869
svm_range_set_default_attributes(svms, &location, &prefetch_loc,
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3892
(location != KFD_IOCTL_SVM_LOCATION_UNDEFINED &&
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3893
location != prange->preferred_loc)) {
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3894
location = KFD_IOCTL_SVM_LOCATION_UNDEFINED;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3897
location = prange->preferred_loc;
sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
3933
attrs[i].value = location;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
668
int location = -1;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
672
location = i;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
677
return location;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
685
int location = -1;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
694
location = i;
sys/dev/pci/drm/amd/display/dc/dml2/dml21/dml21_translation_helper.c
699
return location;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1003
static void populate_dummy_dml_plane_cfg(struct dml_plane_cfg_st *out, unsigned int location,
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1019
out->CursorBPP[location] = dml_cur_32bit;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1020
out->CursorWidth[location] = 256;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1022
out->GPUVMMinPageSizeKBytes[location] = soc->gpuvm_min_page_size_kbytes;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1024
out->ViewportWidth[location] = width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1025
out->ViewportHeight[location] = height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1026
out->ViewportStationary[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1027
out->ViewportWidthChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1028
out->ViewportHeightChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1029
out->ViewportXStart[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1030
out->ViewportXStartC[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1031
out->ViewportYStart[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1032
out->ViewportYStartC[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1034
out->ScalerEnabled[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1035
out->HRatio[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1036
out->VRatio[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1037
out->HRatioChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1038
out->VRatioChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1039
out->HTaps[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1040
out->VTaps[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1041
out->HTapsChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1042
out->VTapsChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1043
out->SourceScan[location] = dml_rotation_0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1044
out->ScalerRecoutWidth[location] = width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1046
out->LBBitPerPixel[location] = 57;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1048
out->DynamicMetadataEnable[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1050
out->NumberOfCursors[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1051
out->UseMALLForStaticScreen[location] = dml_use_mall_static_screen_disable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1052
out->UseMALLForPStateChange[location] = dml_use_mall_pstate_change_disable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1054
out->DETSizeOverride[location] = 256;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1056
out->ScalerEnabled[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1059
static void populate_dml_plane_cfg_from_plane_state(struct dml_plane_cfg_st *out, unsigned int location,
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1065
out->CursorBPP[location] = dml_cur_32bit;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1066
out->CursorWidth[location] = 256;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1068
out->GPUVMMinPageSizeKBytes[location] = soc->gpuvm_min_page_size_kbytes;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1070
out->ViewportWidth[location] = scaler_data->viewport.width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1071
out->ViewportHeight[location] = scaler_data->viewport.height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1072
out->ViewportWidthChroma[location] = scaler_data->viewport_c.width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1073
out->ViewportHeightChroma[location] = scaler_data->viewport_c.height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1074
out->ViewportXStart[location] = scaler_data->viewport.x;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1075
out->ViewportYStart[location] = scaler_data->viewport.y;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1076
out->ViewportXStartC[location] = scaler_data->viewport_c.x;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1077
out->ViewportYStartC[location] = scaler_data->viewport_c.y;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1078
out->ViewportStationary[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1080
out->ScalerEnabled[location] = scaler_data->ratios.horz.value != dc_fixpt_one.value ||
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1090
out->LBBitPerPixel[location] = 57;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1092
if (out->ScalerEnabled[location] == false) {
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1093
out->HRatio[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1094
out->HRatioChroma[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1095
out->VRatio[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1096
out->VRatioChroma[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1099
out->HRatio[location] = (dml_float_t)scaler_data->ratios.horz.value / (1ULL << 32);
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1100
out->HRatioChroma[location] = (dml_float_t)scaler_data->ratios.horz_c.value / (1ULL << 32);
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1101
out->VRatio[location] = (dml_float_t)scaler_data->ratios.vert.value / (1ULL << 32);
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1102
out->VRatioChroma[location] = (dml_float_t)scaler_data->ratios.vert_c.value / (1ULL << 32);
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1106
out->HTaps[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1107
out->HTapsChroma[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1109
out->HTaps[location] = scaler_data->taps.h_taps;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1110
out->HTapsChroma[location] = scaler_data->taps.h_taps_c;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1113
out->VTaps[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1114
out->VTapsChroma[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1116
out->VTaps[location] = scaler_data->taps.v_taps;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1117
out->VTapsChroma[location] = scaler_data->taps.v_taps_c;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1120
out->SourceScan[location] = (enum dml_rotation_angle)in->rotation;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1121
out->ScalerRecoutWidth[location] = in->dst_rect.width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1123
out->DynamicMetadataEnable[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1124
out->DynamicMetadataLinesBeforeActiveRequired[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1125
out->DynamicMetadataTransmittedBytes[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1127
out->NumberOfCursors[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1134
int location = -1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1138
location = i;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1143
return location;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1175
int location = -1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1184
location = i;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1189
return location;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1227
unsigned int location, const struct dc_stream_state *in)
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1234
out->WritebackEnable[location] = wb_info->wb_enabled;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1235
out->ActiveWritebacksPerSurface[location] = wb_info->dwb_params.cnv_params.src_width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1236
out->WritebackDestinationWidth[location] = wb_info->dwb_params.dest_width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1237
out->WritebackDestinationHeight[location] = wb_info->dwb_params.dest_height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1239
out->WritebackSourceWidth[location] = wb_info->dwb_params.cnv_params.crop_en ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1243
out->WritebackSourceHeight[location] = wb_info->dwb_params.cnv_params.crop_en ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1247
out->WritebackHTaps[location] = wb_info->dwb_params.scaler_taps.h_taps > 0 ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1249
out->WritebackVTaps[location] = wb_info->dwb_params.scaler_taps.v_taps > 0 ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1252
out->WritebackHRatio[location] = wb_info->dwb_params.cnv_params.crop_en ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
1257
out->WritebackVRatio[location] = wb_info->dwb_params.cnv_params.crop_en ?
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
752
static void populate_dml_timing_cfg_from_stream_state(struct dml_timing_cfg_st *out, unsigned int location, const struct dc_stream_state *in)
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
756
out->HActive[location] = in->timing.h_addressable + in->timing.h_border_left + in->timing.h_border_right;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
757
out->VActive[location] = in->timing.v_addressable + in->timing.v_border_bottom + in->timing.v_border_top;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
758
out->RefreshRate[location] = ((in->timing.pix_clk_100hz * 100) / in->timing.h_total) / in->timing.v_total;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
759
out->VFrontPorch[location] = in->timing.v_front_porch;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
760
out->PixelClock[location] = in->timing.pix_clk_100hz / 10000.00;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
762
out->PixelClock[location] *= 2;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
763
out->HTotal[location] = in->timing.h_total;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
764
out->VTotal[location] = in->timing.v_total;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
765
out->Interlace[location] = in->timing.flags.INTERLACE;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
767
out->HBlankEnd[location] = hblank_start
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
772
out->VBlankEnd[location] = vblank_start
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
776
out->DRRDisplay[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
779
static void populate_dml_output_cfg_from_stream_state(struct dml_output_cfg_st *out, unsigned int location,
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
784
out->DSCEnable[location] = (enum dml_dsc_enable)in->timing.flags.DSC;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
785
out->OutputLinkDPLanes[location] = 4; // As per code in dcn20_resource.c
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
786
out->DSCInputBitPerComponent[location] = 12; // As per code in dcn20_resource.c
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
787
out->DSCSlices[location] = in->timing.dsc_cfg.num_slices_h;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
792
out->OutputEncoder[location] = dml_dp;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
793
if (location < MAX_HPO_DP2_ENCODERS && dml2->v20.scratch.hpo_stream_to_link_encoder_mapping[location] != -1)
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
794
out->OutputEncoder[dml2->v20.scratch.hpo_stream_to_link_encoder_mapping[location]] = dml_dp2p0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
797
out->OutputEncoder[location] = dml_edp;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
802
out->OutputEncoder[location] = dml_hdmi;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
805
out->OutputEncoder[location] = dml_dp;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
841
out->OutputFormat[location] = dml_444;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
842
out->OutputBpp[location] = (dml_float_t)output_bpc * 3;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
845
out->OutputFormat[location] = dml_420;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
846
out->OutputBpp[location] = (output_bpc * 3.0) / 2;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
850
out->OutputFormat[location] = dml_n422;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
852
out->OutputFormat[location] = dml_s422;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
853
out->OutputBpp[location] = (dml_float_t)output_bpc * 2;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
856
out->OutputFormat[location] = dml_444;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
857
out->OutputBpp[location] = (dml_float_t)output_bpc * 3;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
862
out->OutputBpp[location] = in->timing.dsc_cfg.bits_per_pixel / 16.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
866
out->OutputMultistreamEn[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
880
out->OutputLinkDPRate[location] = dml_dp_rate_na;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
884
out->PixelClockBackEnd[location] = in->timing.pix_clk_100hz / 10000.00;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
886
out->AudioSampleLayout[location] = in->audio_info.modes->sample_size;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
887
out->AudioSampleRate[location] = in->audio_info.modes->max_bit_rate;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
889
out->OutputDisabled[location] = true;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
892
static void populate_dummy_dml_surface_cfg(struct dml_surface_cfg_st *out, unsigned int location, const struct dc_stream_state *in)
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
894
out->SurfaceWidthY[location] = in->timing.h_addressable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
895
out->SurfaceHeightY[location] = in->timing.v_addressable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
896
out->SurfaceWidthC[location] = in->timing.h_addressable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
897
out->SurfaceHeightC[location] = in->timing.v_addressable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
898
out->PitchY[location] = ((out->SurfaceWidthY[location] + 127) / 128) * 128;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
899
out->PitchC[location] = 1;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
900
out->DCCEnable[location] = false;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
901
out->DCCMetaPitchY[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
902
out->DCCMetaPitchC[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
903
out->DCCRateLuma[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
904
out->DCCRateChroma[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
905
out->DCCFractionOfZeroSizeRequestsLuma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
906
out->DCCFractionOfZeroSizeRequestsChroma[location] = 0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
907
out->SurfaceTiling[location] = dml_sw_64kb_r_x;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
908
out->SourcePixelFormat[location] = dml_444_32;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
911
static void populate_dml_surface_cfg_from_plane_state(enum dml_project_id dml2_project, struct dml_surface_cfg_st *out, unsigned int location, const struct dc_plane_state *in)
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
913
out->PitchY[location] = in->plane_size.surface_pitch;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
914
out->SurfaceHeightY[location] = in->plane_size.surface_size.height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
915
out->SurfaceWidthY[location] = in->plane_size.surface_size.width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
916
out->SurfaceHeightC[location] = in->plane_size.chroma_size.height;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
917
out->SurfaceWidthC[location] = in->plane_size.chroma_size.width;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
918
out->PitchC[location] = in->plane_size.chroma_pitch;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
919
out->DCCEnable[location] = in->dcc.enable;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
920
out->DCCMetaPitchY[location] = in->dcc.meta_pitch;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
921
out->DCCMetaPitchC[location] = in->dcc.meta_pitch_c;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
922
out->DCCRateLuma[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
923
out->DCCRateChroma[location] = 1.0;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
924
out->DCCFractionOfZeroSizeRequestsLuma[location] = in->dcc.independent_64b_blks;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
925
out->DCCFractionOfZeroSizeRequestsChroma[location] = in->dcc.independent_64b_blks_c;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
929
out->SurfaceTiling[location] = (enum dml_swizzle_mode)in->tiling_info.gfx9.swizzle;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
938
out->SurfaceTiling[location] = dml_sw_64kb_r_x;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
941
out->SurfaceTiling[location] = dml_sw_linear;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
949
out->SourcePixelFormat[location] = dml_420_8;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
953
out->SourcePixelFormat[location] = dml_420_10;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
959
out->SourcePixelFormat[location] = dml_444_64;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
963
out->SourcePixelFormat[location] = dml_444_16;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
966
out->SourcePixelFormat[location] = dml_444_8;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
969
out->SourcePixelFormat[location] = dml_rgbe_alpha;
sys/dev/pci/drm/amd/display/dc/dml2/dml2_translation_helper.c
972
out->SourcePixelFormat[location] = dml_444_32;
sys/dev/pci/drm/amd/display/dc/inc/hw/mpc.h
1000
void (*set_movable_cm_location)(struct mpc *mpc, enum mpcc_movable_cm_location location, int mpcc_id);
sys/dev/pci/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c
50
void mpc401_set_movable_cm_location(struct mpc *mpc, enum mpcc_movable_cm_location location, int mpcc_id)
sys/dev/pci/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c
54
switch (location) {
sys/dev/pci/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.h
207
void mpc401_set_movable_cm_location(struct mpc *mpc, enum mpcc_movable_cm_location location, int mpcc_id);
sys/dev/pci/if_ice.c
28758
#define ICE_PF_STAT_PFC(name, location, index) \
sys/dev/pci/if_ice.c
28761
&prev_ps->location[index], &cur_ps->location[index])
sys/dev/pci/if_ice.c
28763
#define ICE_PF_STAT40(name, location) \
sys/dev/pci/if_ice.c
28766
&prev_ps->location, &cur_ps->location)
sys/dev/pci/if_ice.c
28768
#define ICE_PF_STAT32(name, location) \
sys/dev/pci/if_ice.c
28771
&prev_ps->location, &cur_ps->location)
sys/dev/pci/if_ice.c
28854
#define ICE_VSI_STAT40(name, location) \
sys/dev/pci/if_ice.c
28857
&prev_es->location, &cur_es->location)
sys/dev/pci/if_ice.c
28859
#define ICE_VSI_STAT32(name, location) \
sys/dev/pci/if_ice.c
28862
&prev_es->location, &cur_es->location)
sys/dev/pci/qle.c
1004
port->location = QLE_LOCATION_PORT_ID(portid);
sys/dev/pci/qle.c
107
u_int32_t location; /* port id or loop id */
sys/dev/pci/qle.c
1949
fport->location = QLE_LOCATION_PORT_ID(*lastport);
sys/dev/pci/qle.c
2127
if (port->location & QLE_LOCATION_FABRIC)
sys/dev/pci/qle.c
2169
if (port->location & QLE_LOCATION_FABRIC) {
sys/dev/pci/qle.c
2190
if (port->location & QLE_LOCATION_LOOP)
sys/dev/pci/qle.c
2194
fport->location = 0;
sys/dev/pci/qle.c
2218
} else if (fport->location & QLE_LOCATION_LOOP) {
sys/dev/pci/qle.c
2223
} else if (fport->location & QLE_LOCATION_FABRIC) {
sys/dev/pci/qle.c
2255
disp = qle_classify_port(sc, fport->location,
sys/dev/pci/qle.c
2356
if (port->location & QLE_LOCATION_FABRIC)
sys/dev/pci/qle.c
708
qle_classify_port(struct qle_softc *sc, u_int32_t location,
sys/dev/pci/qle.c
719
port->location == location) {
sys/dev/pci/qle.c
732
if (port->location == location)
sys/dev/pci/qle.c
851
port->location = loc;
sys/dev/pci/qle.c
886
disp = qle_classify_port(sc, port->location, port->port_name,
sys/dev/pci/qle.c
939
if (port->location == QLE_LOCATION_FABRIC) {
sys/dev/pci/qle.c
944
port->location = QLE_LOCATION_PORT_ID(port->portid);
sys/isofs/cd9660/cd9660_rrip.c
502
ana->iso_ce_blk = isonum_733(p->location);
sys/isofs/cd9660/cd9660_rrip.h
136
char location [ISODCL ( 4, 11)];
usr.bin/make/engine.c
515
job->location = NULL;
usr.bin/make/engine.c
576
printf(", line %lu of %s", job->location->lineno,
usr.bin/make/engine.c
577
job->location->fname);
usr.bin/make/engine.c
709
job->location = &command->location;
usr.bin/make/engine.c
710
Parse_SetLocation(job->location);
usr.bin/make/engine.h
105
Location *location;
usr.bin/make/gnode.h
161
Location location;
usr.bin/make/job.c
259
Buf_printf(&buf, " (%s:%lu", j->location->fname, j->location->lineno);
usr.bin/make/job.c
320
if (j->location->fname == k->location->fname)
usr.bin/make/parse.c
1547
Parse_FillLocation(&cmd->location);
usr.sbin/httpd/config.c
651
srv_conf->location, parent->name, parent->id,
usr.sbin/httpd/httpd.h
477
char location[HTTPD_LOCATION_MAX];
usr.sbin/httpd/parse.y
2410
dstl->srv_conf.location,
usr.sbin/httpd/parse.y
590
if (strlcpy(s->srv_conf.location, $4,
usr.sbin/httpd/parse.y
591
sizeof(s->srv_conf.location)) >=
usr.sbin/httpd/parse.y
592
sizeof(s->srv_conf.location)) {
usr.sbin/httpd/parse.y
661
strcmp(s->srv_conf.location,
usr.sbin/httpd/parse.y
662
srv_conf->location) == 0)
usr.sbin/httpd/parse.y
667
srv->srv_conf.location);
usr.sbin/httpd/parse.y
674
srv->srv_conf.location,
usr.sbin/httpd/parse.y
823
srv_conf->location, srv_conf->name, srv_conf->id,
usr.sbin/httpd/server_http.c
1503
struct server_config *srv_conf = clt->clt_srv_conf, *location;
usr.sbin/httpd/server_http.c
1508
TAILQ_FOREACH(location, &srv->srv_hosts, entry) {
usr.sbin/httpd/server_http.c
1510
if (location->flags & SRVFLAG_LOCATION) {
usr.sbin/httpd/server_http.c
1512
__func__, location->location, path);
usr.sbin/httpd/server_http.c
1515
if ((location->flags & SRVFLAG_LOCATION) &&
usr.sbin/httpd/server_http.c
1516
location->parent_id == srv_conf->parent_id) {
usr.sbin/httpd/server_http.c
1518
if (location->flags & SRVFLAG_LOCATION_MATCH) {
usr.sbin/httpd/server_http.c
1519
ret = str_match(path, location->location,
usr.sbin/httpd/server_http.c
1522
ret = fnmatch(location->location,
usr.sbin/httpd/server_http.c
1526
if ((ret = server_locationaccesstest(location,
usr.sbin/httpd/server_http.c
1533
clt->clt_srv_conf = srv_conf = location;
usr.sbin/makefs/cd9660/cd9660_rrip.h
139
char location [ISODCL ( 4, 11)];
usr.sbin/rpki-client/ccr.c
1043
if (!x509_location(fn, "SIA: signedObject", ad->location,
usr.sbin/rpki-client/ccr.c
286
GENERAL_NAME_free(ad->location);
usr.sbin/rpki-client/ccr.c
287
ad->location = a2i_GENERAL_NAME(NULL, NULL, NULL, GEN_URI, sia, 0);
usr.sbin/rpki-client/ccr.c
288
if (ad->location == NULL)
usr.sbin/rpki-client/cert.c
2439
if ((nca->location = strdup(cert->path)) == NULL)
usr.sbin/rpki-client/cert.c
2463
free(found->location);
usr.sbin/rpki-client/cert.c
659
if (!x509_location(fn, "AIA: caIssuers", ad->location,
usr.sbin/rpki-client/cert.c
736
ad->location, &carepo))
usr.sbin/rpki-client/cert.c
761
ad->location, &rpkimft))
usr.sbin/rpki-client/cert.c
776
ad->location, &notify))
usr.sbin/rpki-client/cert.c
886
ad->location, &signedobj))
usr.sbin/rpki-client/extern.h
157
char *location;
usr.sbin/rpki-client/extern.h
220
enum location location; /* temporary or valid directory */
usr.sbin/rpki-client/extern.h
589
enum location location; /* which directory the file lives in */
usr.sbin/rpki-client/main.c
157
io_read_buf(b, &ent->location, sizeof(ent->location));
usr.sbin/rpki-client/main.c
184
io_simple_buffer(b, &ent->location, sizeof(ent->location));
usr.sbin/rpki-client/main.c
204
enum location loc = DIR_UNKNOWN;
usr.sbin/rpki-client/main.c
245
entityq_add(char *path, char *file, enum rtype type, enum location loc,
usr.sbin/rpki-client/main.c
255
p->location = loc;
usr.sbin/rpki-client/main.c
447
entityq_add(npath, nfile, f->type, f->location, rp,
usr.sbin/rpki-client/mft.c
498
io_simple_buffer(b, &p->files[i].location,
usr.sbin/rpki-client/mft.c
499
sizeof(p->files[i].location));
usr.sbin/rpki-client/mft.c
539
io_read_buf(b, &p->files[i].location,
usr.sbin/rpki-client/mft.c
540
sizeof(p->files[i].location));
usr.sbin/rpki-client/output-json.c
191
json_do_string("location", nca->location);
usr.sbin/rpki-client/parser.c
1009
entp->file, entp->location);
usr.sbin/rpki-client/parser.c
151
enum location loc)
usr.sbin/rpki-client/parser.c
269
const enum location loc[2] = { DIR_TEMP, DIR_VALID };
usr.sbin/rpki-client/parser.c
290
m->location = loc[try];
usr.sbin/rpki-client/parser.c
312
parse_load_crl_from_mft(struct entity *entp, struct mft *mft, enum location loc,
usr.sbin/rpki-client/parser.c
830
entp->location);
usr.sbin/rpki-client/x509.c
326
x509_location(const char *fn, const char *descr, GENERAL_NAME *location,
usr.sbin/rpki-client/x509.c
334
if (location->type != GEN_URI) {
usr.sbin/rpki-client/x509.c
339
data = ASN1_STRING_get0_data(location->d.uniformResourceIdentifier);
usr.sbin/rpki-client/x509.c
340
length = ASN1_STRING_length(location->d.uniformResourceIdentifier);