Home
last modified time | relevance | path

Searched refs:box (Results 1 – 25 of 149) sorted by relevance

123456

/Linux-v4.19/arch/x86/events/intel/
Duncore.h186 static inline unsigned uncore_pci_box_ctl(struct intel_uncore_box *box) in uncore_pci_box_ctl() argument
188 return box->pmu->type->box_ctl; in uncore_pci_box_ctl()
191 static inline unsigned uncore_pci_fixed_ctl(struct intel_uncore_box *box) in uncore_pci_fixed_ctl() argument
193 return box->pmu->type->fixed_ctl; in uncore_pci_fixed_ctl()
196 static inline unsigned uncore_pci_fixed_ctr(struct intel_uncore_box *box) in uncore_pci_fixed_ctr() argument
198 return box->pmu->type->fixed_ctr; in uncore_pci_fixed_ctr()
202 unsigned uncore_pci_event_ctl(struct intel_uncore_box *box, int idx) in uncore_pci_event_ctl() argument
204 if (test_bit(UNCORE_BOX_FLAG_CTL_OFFS8, &box->flags)) in uncore_pci_event_ctl()
205 return idx * 8 + box->pmu->type->event_ctl; in uncore_pci_event_ctl()
207 return idx * 4 + box->pmu->type->event_ctl; in uncore_pci_event_ctl()
[all …]
Duncore.c112 u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event) in uncore_msr_read_counter() argument
125 uncore_get_constraint(struct intel_uncore_box *box, struct perf_event *event) in uncore_get_constraint() argument
139 (!uncore_box_is_fake(box) && reg1->alloc)) in uncore_get_constraint()
142 er = &box->shared_regs[reg1->idx]; in uncore_get_constraint()
154 if (!uncore_box_is_fake(box)) in uncore_get_constraint()
162 void uncore_put_constraint(struct intel_uncore_box *box, struct perf_event *event) in uncore_put_constraint() argument
175 if (uncore_box_is_fake(box) || !reg1->alloc) in uncore_put_constraint()
178 er = &box->shared_regs[reg1->idx]; in uncore_put_constraint()
183 u64 uncore_shared_reg_config(struct intel_uncore_box *box, int idx) in uncore_shared_reg_config() argument
189 er = &box->shared_regs[idx]; in uncore_shared_reg_config()
[all …]
Duncore_snb.c85 static void snb_uncore_msr_enable_event(struct intel_uncore_box *box, struct perf_event *event) in snb_uncore_msr_enable_event() argument
95 static void snb_uncore_msr_disable_event(struct intel_uncore_box *box, struct perf_event *event) in snb_uncore_msr_disable_event() argument
100 static void snb_uncore_msr_init_box(struct intel_uncore_box *box) in snb_uncore_msr_init_box() argument
102 if (box->pmu->pmu_idx == 0) { in snb_uncore_msr_init_box()
108 static void snb_uncore_msr_enable_box(struct intel_uncore_box *box) in snb_uncore_msr_enable_box() argument
114 static void snb_uncore_msr_exit_box(struct intel_uncore_box *box) in snb_uncore_msr_exit_box() argument
116 if (box->pmu->pmu_idx == 0) in snb_uncore_msr_exit_box()
199 static void skl_uncore_msr_init_box(struct intel_uncore_box *box) in skl_uncore_msr_init_box() argument
201 if (box->pmu->pmu_idx == 0) { in skl_uncore_msr_init_box()
207 static void skl_uncore_msr_enable_box(struct intel_uncore_box *box) in skl_uncore_msr_enable_box() argument
[all …]
Duncore_nhmex.c200 static void nhmex_uncore_msr_init_box(struct intel_uncore_box *box) in nhmex_uncore_msr_init_box() argument
205 static void nhmex_uncore_msr_exit_box(struct intel_uncore_box *box) in nhmex_uncore_msr_exit_box() argument
210 static void nhmex_uncore_msr_disable_box(struct intel_uncore_box *box) in nhmex_uncore_msr_disable_box() argument
212 unsigned msr = uncore_msr_box_ctl(box); in nhmex_uncore_msr_disable_box()
217 config &= ~((1ULL << uncore_num_counters(box)) - 1); in nhmex_uncore_msr_disable_box()
219 if (uncore_msr_fixed_ctl(box)) in nhmex_uncore_msr_disable_box()
225 static void nhmex_uncore_msr_enable_box(struct intel_uncore_box *box) in nhmex_uncore_msr_enable_box() argument
227 unsigned msr = uncore_msr_box_ctl(box); in nhmex_uncore_msr_enable_box()
232 config |= (1ULL << uncore_num_counters(box)) - 1; in nhmex_uncore_msr_enable_box()
234 if (uncore_msr_fixed_ctl(box)) in nhmex_uncore_msr_enable_box()
[all …]
Duncore_snbep.c400 static void snbep_uncore_pci_disable_box(struct intel_uncore_box *box) in snbep_uncore_pci_disable_box() argument
402 struct pci_dev *pdev = box->pci_dev; in snbep_uncore_pci_disable_box()
403 int box_ctl = uncore_pci_box_ctl(box); in snbep_uncore_pci_disable_box()
412 static void snbep_uncore_pci_enable_box(struct intel_uncore_box *box) in snbep_uncore_pci_enable_box() argument
414 struct pci_dev *pdev = box->pci_dev; in snbep_uncore_pci_enable_box()
415 int box_ctl = uncore_pci_box_ctl(box); in snbep_uncore_pci_enable_box()
424 static void snbep_uncore_pci_enable_event(struct intel_uncore_box *box, struct perf_event *event) in snbep_uncore_pci_enable_event() argument
426 struct pci_dev *pdev = box->pci_dev; in snbep_uncore_pci_enable_event()
432 static void snbep_uncore_pci_disable_event(struct intel_uncore_box *box, struct perf_event *event) in snbep_uncore_pci_disable_event() argument
434 struct pci_dev *pdev = box->pci_dev; in snbep_uncore_pci_disable_event()
[all …]
/Linux-v4.19/scripts/kconfig/lxdialog/
Dtextbox.c39 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box() argument
43 print_page(box, boxh, boxw, update_text, data); in refresh_text_box()
62 WINDOW *dialog, *box; in dialog_textbox() local
112 box = subwin(dialog, boxh, boxw, y + 1, x + 1); in dialog_textbox()
113 wattrset(box, dlg.dialog.atr); in dialog_textbox()
114 wbkgdset(box, dlg.dialog.atr & A_COLOR); in dialog_textbox()
116 keypad(box, TRUE); in dialog_textbox()
137 attr_clear(box, boxh, boxw, dlg.dialog.atr); in dialog_textbox()
138 refresh_text_box(dialog, box, boxh, boxw, cur_y, cur_x, update_text, in dialog_textbox()
157 refresh_text_box(dialog, box, boxh, boxw, in dialog_textbox()
[all …]
Dutil.c478 chtype box, chtype border) in draw_box() argument
491 waddch(win, box | ACS_URCORNER); in draw_box()
493 waddch(win, box | ACS_LRCORNER); in draw_box()
497 waddch(win, box | ACS_HLINE); in draw_box()
501 waddch(win, box | ACS_VLINE); in draw_box()
503 waddch(win, box | ' '); in draw_box()
/Linux-v4.19/sound/pci/ice1712/
Dhoontech.c82 static void snd_ice1712_stdsp24_box_channel(struct snd_ice1712 *ice, int box, int chn, int activate) in snd_ice1712_stdsp24_box_channel() argument
89 ICE1712_STDSP24_0_BOX(spec->boxbits, box); in snd_ice1712_stdsp24_box_channel()
132 static void snd_ice1712_stdsp24_box_midi(struct snd_ice1712 *ice, int box, int master) in snd_ice1712_stdsp24_box_midi() argument
139 ICE1712_STDSP24_0_BOX(spec->boxbits, box); in snd_ice1712_stdsp24_box_midi()
172 int box, chn; in hoontech_init() local
248 for (box = 0; box < 4; box++) { in hoontech_init()
249 if (spec->boxconfig[box] & ICE1712_STDSP24_BOX_MIDI2) in hoontech_init()
252 snd_ice1712_stdsp24_box_channel(ice, box, chn, in hoontech_init()
253 (spec->boxconfig[box] & (1 << chn)) ? 1 : 0); in hoontech_init()
254 if (spec->boxconfig[box] & ICE1712_STDSP24_BOX_MIDI1) in hoontech_init()
[all …]
/Linux-v4.19/drivers/gpu/drm/mga/
Dmga_state.c44 struct drm_clip_rect *box) in mga_emit_clip_rect() argument
62 MGA_CXBNDRY, ((box->x2 - 1) << 16) | box->x1, in mga_emit_clip_rect()
63 MGA_YTOP, box->y1 * pitch, MGA_YBOT, (box->y2 - 1) * pitch); in mga_emit_clip_rect()
502 struct drm_clip_rect *box = &pbox[i]; in mga_dma_dispatch_clear() local
503 u32 height = box->y2 - box->y1; in mga_dma_dispatch_clear()
506 box->x1, box->y1, box->x2, box->y2); in mga_dma_dispatch_clear()
513 MGA_YDSTLEN, (box->y1 << 16) | height, in mga_dma_dispatch_clear()
514 MGA_FXBNDRY, (box->x2 << 16) | box->x1); in mga_dma_dispatch_clear()
529 MGA_YDSTLEN, (box->y1 << 16) | height, in mga_dma_dispatch_clear()
530 MGA_FXBNDRY, (box->x2 << 16) | box->x1); in mga_dma_dispatch_clear()
[all …]
/Linux-v4.19/drivers/gpu/drm/virtio/
Dvirtgpu_ioctl.c366 struct virtio_gpu_box box; in virtio_gpu_transfer_from_host_ioctl() local
385 convert_to_hw_box(&box, &args->box); in virtio_gpu_transfer_from_host_ioctl()
389 &box, &fence); in virtio_gpu_transfer_from_host_ioctl()
411 struct virtio_gpu_box box; in virtio_gpu_transfer_to_host_ioctl() local
429 convert_to_hw_box(&box, &args->box); in virtio_gpu_transfer_to_host_ioctl()
433 box.w, box.h, box.x, box.y, NULL); in virtio_gpu_transfer_to_host_ioctl()
438 args->level, &box, &fence); in virtio_gpu_transfer_to_host_ioctl()
/Linux-v4.19/Documentation/media/v4l-drivers/
Dqcom_camss_8x96_graph.dot76 n00000025 [label="msm_vfe0_video0\n/dev/video0", shape=box, style=filled, fillcolor=yellow]
79 n0000002e [label="msm_vfe0_video1\n/dev/video1", shape=box, style=filled, fillcolor=yellow]
82 n00000037 [label="msm_vfe0_video2\n/dev/video2", shape=box, style=filled, fillcolor=yellow]
85 n00000040 [label="msm_vfe0_video3\n/dev/video3", shape=box, style=filled, fillcolor=yellow]
88 n00000049 [label="msm_vfe1_video0\n/dev/video4", shape=box, style=filled, fillcolor=yellow]
91 n00000052 [label="msm_vfe1_video1\n/dev/video5", shape=box, style=filled, fillcolor=yellow]
94 n0000005b [label="msm_vfe1_video2\n/dev/video6", shape=box, style=filled, fillcolor=yellow]
97 n00000064 [label="msm_vfe1_video3\n/dev/video7", shape=box, style=filled, fillcolor=yellow]
Dqcom_camss_graph.dot27 n00000016 [label="msm_vfe0_video0\n/dev/video0", shape=box, style=filled, fillcolor=yellow]
30 n0000001f [label="msm_vfe0_video1\n/dev/video1", shape=box, style=filled, fillcolor=yellow]
33 n00000028 [label="msm_vfe0_video2\n/dev/video2", shape=box, style=filled, fillcolor=yellow]
36 n00000031 [label="msm_vfe0_video3\n/dev/video3", shape=box, style=filled, fillcolor=yellow]
/Linux-v4.19/arch/arm/mach-sti/
DKconfig33 Electronics family StiH415 parts, primarily targeted at set-top-box
42 Electronics family StiH416 parts, primarily targeted at set-top-box
52 Electronics family StiH407 parts, targetted at set-top-box
/Linux-v4.19/drivers/gpu/drm/vmwgfx/
Dvmwgfx_kms.c149 SVGA3dCopyBox *box; in vmw_kms_cursor_snoop() local
175 box = (SVGA3dCopyBox *)&cmd[1]; in vmw_kms_cursor_snoop()
180 box->x != 0 || box->y != 0 || box->z != 0 || in vmw_kms_cursor_snoop()
181 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 || in vmw_kms_cursor_snoop()
182 box->d != 1 || box_count != 1) { in vmw_kms_cursor_snoop()
188 box->srcx, box->srcy, box->srcz, in vmw_kms_cursor_snoop()
189 box->x, box->y, box->z, in vmw_kms_cursor_snoop()
190 box->w, box->h, box->d, box_count, in vmw_kms_cursor_snoop()
210 if (box->w == 64 && cmd->dma.guest.pitch == 64*4) { in vmw_kms_cursor_snoop()
214 for (i = 0; i < box->h; i++) in vmw_kms_cursor_snoop()
[all …]
/Linux-v4.19/drivers/net/appletalk/
DKconfig9 on a network. If your Linux box is connected to such a network and you
11 so that your Linux box can act as a print and file server for Macs as
36 on a network. If your Linux box is connected to such a network, and wish
85 box is stuck on an AppleTalk only network) or decapsulate (e.g. if
86 you want your Linux box to act as an Internet gateway for a zoo of
106 IP packets inside AppleTalk frames; this is useful if your Linux box
/Linux-v4.19/Documentation/scsi/
Dbfa.txt64 Troubleshooting Guide, and Release Notes for the corresponding out-of-box
69 and use the following inbox and out-of-box driver version mapping to find
72 Inbox Version Out-of-box Version
/Linux-v4.19/Documentation/networking/
Dip_dynaddr.txt5 It is implemented for TCP diald-box connections(1) and IP_MASQuerading(2).
9 while in SYN_SENT state (diald-box processes).
Dipddp.txt13 Through this driver you can either allow your Linux box to communicate
54 You will also need to add the proper routes to route your Linux box's IP
64 Encapsulation has been used to allow a Linux box stuck on a LocalTalk
/Linux-v4.19/net/hsr/
DKconfig8 If you say Y here, then your Linux box will be able to act as a
10 your Linux box needs (at least) two physical Ethernet interfaces,
/Linux-v4.19/include/uapi/drm/
Dvirtgpu_drm.h110 struct drm_virtgpu_3d_box box; member
117 struct drm_virtgpu_3d_box box; member
/Linux-v4.19/Documentation/arm/sti/
Dstih416-overview.txt7 The STiH416 is the next generation of HD, AVC set-top box processors
Dstih415-overview.txt7 The STiH415 is the next generation of HD, AVC set-top box processors
/Linux-v4.19/net/ax25/
DKconfig9 If you want to connect your Linux box to an amateur radio, answer Y
28 that connects your Linux box to your amateur radio. You can either
58 If you say Y here, your Linux box will act as a DAMA slave; this is
73 If you say Y here, your Linux box will act as a DAMA master; this is
/Linux-v4.19/Documentation/media/dvb-drivers/
Dtechnisat.rst15 First start your linux box with a shipped kernel:
29 If the Flexcop / Technisat is the only DVB / TV / Radio device in your box
/Linux-v4.19/arch/arm/mach-zx/
DKconfig7 set-top-box processor is supported. More will be

123456