Home
last modified time | relevance | path

Searched refs:window (Results 1 – 200 of 282) sorted by relevance

12

/linux-4.4.14/drivers/misc/mic/scif/
Dscif_rma.c149 struct scif_window *window; in scif_create_window() local
152 window = scif_zalloc(sizeof(*window)); in scif_create_window()
153 if (!window) in scif_create_window()
156 window->dma_addr = scif_zalloc(nr_pages * sizeof(*window->dma_addr)); in scif_create_window()
157 if (!window->dma_addr) in scif_create_window()
160 window->num_pages = scif_zalloc(nr_pages * sizeof(*window->num_pages)); in scif_create_window()
161 if (!window->num_pages) in scif_create_window()
164 window->offset = offset; in scif_create_window()
165 window->ep = (u64)ep; in scif_create_window()
166 window->magic = SCIFEP_MAGIC; in scif_create_window()
[all …]
Dscif_rma_list.c28 void scif_insert_tcw(struct scif_window *window, struct list_head *head) in scif_insert_tcw() argument
34 INIT_LIST_HEAD(&window->list); in scif_insert_tcw()
38 if (curr->va_for_temp < window->va_for_temp) { in scif_insert_tcw()
39 list_add_tail(&window->list, head); in scif_insert_tcw()
45 if (curr->va_for_temp > window->va_for_temp) in scif_insert_tcw()
49 list_add(&window->list, &prev->list); in scif_insert_tcw()
58 void scif_insert_window(struct scif_window *window, struct list_head *head) in scif_insert_window() argument
63 INIT_LIST_HEAD(&window->list); in scif_insert_window()
66 if (curr->offset > window->offset) in scif_insert_window()
71 list_add(&window->list, head); in scif_insert_window()
[all …]
Dscif_debugfs.c65 static void scif_display_window(struct scif_window *window, struct seq_file *s) in scif_display_window() argument
69 scif_pinned_pages_t pin = window->pinned_pages; in scif_display_window()
72 window, window->type, window->temp, window->offset); in scif_display_window()
74 window->nr_pages, window->nr_contig_chunks, window->prot); in scif_display_window()
76 window->ref_count, window->magic, window->peer_window); in scif_display_window()
78 window->unreg_state, window->va_for_temp); in scif_display_window()
80 for (j = 0; j < window->nr_contig_chunks; j++) in scif_display_window()
82 window->dma_addr[j], window->num_pages[j]); in scif_display_window()
84 if (window->type == SCIF_WINDOW_SELF && pin) in scif_display_window()
85 for (j = 0; j < window->nr_pages; j++) in scif_display_window()
[all …]
Dscif_mmap.c34 struct scif_window *window = NULL; in scif_recv_munmap() local
40 req.out_window = &window; in scif_recv_munmap()
57 scif_put_window(window, window->nr_pages); in scif_recv_munmap()
59 if (!window->ref_count) { in scif_recv_munmap()
62 list_del_init(&window->list); in scif_recv_munmap()
63 scif_free_window_offset(ep, window, window->offset); in scif_recv_munmap()
67 if (window && !window->ref_count) in scif_recv_munmap()
68 scif_queue_for_cleanup(window, &scif_info.rma); in scif_recv_munmap()
134 struct scif_window *window; in __scif_cleanup_rma_for_zombies() local
137 window = list_entry(pos, struct scif_window, list); in __scif_cleanup_rma_for_zombies()
[all …]
Dscif_rma.h313 struct scif_window *window, s64 offset);
318 int scif_destroy_window(struct scif_endpt *ep, struct scif_window *window);
319 void scif_unmap_window(struct scif_dev *remote_dev, struct scif_window *window);
322 struct scif_window *window);
324 int scif_unregister_window(struct scif_window *window);
327 scif_destroy_remote_window(struct scif_window *window);
369 scif_init_window_iter(struct scif_window *window, struct scif_window_iter *iter) in scif_init_window_iter() argument
371 iter->offset = window->offset; in scif_init_window_iter()
375 dma_addr_t scif_off_to_dma_addr(struct scif_window *window, s64 off,
379 dma_addr_t __scif_off_to_dma_addr(struct scif_window *window, s64 off) in __scif_off_to_dma_addr() argument
[all …]
Dscif_dma.c127 struct scif_window *window; in __scif_rma_destroy_tcw() local
135 window = list_entry(item, struct scif_window, list); in __scif_rma_destroy_tcw()
136 ep = (struct scif_endpt *)window->ep; in __scif_rma_destroy_tcw()
139 start_va = window->va_for_temp; in __scif_rma_destroy_tcw()
140 end_va = start_va + (window->nr_pages << PAGE_SHIFT); in __scif_rma_destroy_tcw()
145 __scif_rma_destroy_tcw_helper(window); in __scif_rma_destroy_tcw()
603 struct scif_window *window; in scif_rma_destroy_windows() local
611 window = list_entry(item, struct scif_window, in scif_rma_destroy_windows()
613 ep = (struct scif_endpt *)window->ep; in scif_rma_destroy_windows()
616 list_del_init(&window->list); in scif_rma_destroy_windows()
[all …]
Dscif_rma_list.h45 void scif_insert_window(struct scif_window *window, struct list_head *head);
46 void scif_insert_tcw(struct scif_window *window,
55 int scif_rma_list_unregister(struct scif_window *window, s64 offset,
Dscif_fence.c186 static inline void *scif_get_local_va(off_t off, struct scif_window *window) in scif_get_local_va() argument
188 struct page **pages = window->pinned_pages->pages; in scif_get_local_va()
189 int page_nr = (off - window->offset) >> PAGE_SHIFT; in scif_get_local_va()
293 struct scif_window *window = NULL; in scif_prog_signal() local
299 req.out_window = &window; in scif_prog_signal()
320 dst_virt = scif_get_local_va(offset, window); in scif_prog_signal()
324 window->peer_window); in scif_prog_signal()
327 dst_dma_addr = __scif_off_to_dma_addr(window, offset); in scif_prog_signal()
/linux-4.4.14/drivers/mtd/maps/
Dichxrom.c56 static void ichxrom_cleanup(struct ichxrom_window *window) in ichxrom_cleanup() argument
62 pci_read_config_word(window->pdev, BIOS_CNTL, &word); in ichxrom_cleanup()
63 pci_write_config_word(window->pdev, BIOS_CNTL, word & ~1); in ichxrom_cleanup()
64 pci_dev_put(window->pdev); in ichxrom_cleanup()
67 list_for_each_entry_safe(map, scratch, &window->maps, list) { in ichxrom_cleanup()
75 if (window->rsrc.parent) in ichxrom_cleanup()
76 release_resource(&window->rsrc); in ichxrom_cleanup()
77 if (window->virt) { in ichxrom_cleanup()
78 iounmap(window->virt); in ichxrom_cleanup()
79 window->virt = NULL; in ichxrom_cleanup()
[all …]
Damd76xrom.c68 static void amd76xrom_cleanup(struct amd76xrom_window *window) in amd76xrom_cleanup() argument
73 if (window->pdev) { in amd76xrom_cleanup()
75 pci_read_config_byte(window->pdev, 0x40, &byte); in amd76xrom_cleanup()
76 pci_write_config_byte(window->pdev, 0x40, byte & ~1); in amd76xrom_cleanup()
77 pci_dev_put(window->pdev); in amd76xrom_cleanup()
81 list_for_each_entry_safe(map, scratch, &window->maps, list) { in amd76xrom_cleanup()
90 if (window->rsrc.parent) in amd76xrom_cleanup()
91 release_resource(&window->rsrc); in amd76xrom_cleanup()
93 if (window->virt) { in amd76xrom_cleanup()
94 iounmap(window->virt); in amd76xrom_cleanup()
[all …]
Desb2rom.c117 static void esb2rom_cleanup(struct esb2rom_window *window) in esb2rom_cleanup() argument
123 pci_read_config_byte(window->pdev, BIOS_CNTL, &byte); in esb2rom_cleanup()
124 pci_write_config_byte(window->pdev, BIOS_CNTL, in esb2rom_cleanup()
128 list_for_each_entry_safe(map, scratch, &window->maps, list) { in esb2rom_cleanup()
136 if (window->rsrc.parent) in esb2rom_cleanup()
137 release_resource(&window->rsrc); in esb2rom_cleanup()
138 if (window->virt) { in esb2rom_cleanup()
139 iounmap(window->virt); in esb2rom_cleanup()
140 window->virt = NULL; in esb2rom_cleanup()
141 window->phys = 0; in esb2rom_cleanup()
[all …]
Dck804xrom.c81 static void ck804xrom_cleanup(struct ck804xrom_window *window) in ck804xrom_cleanup() argument
86 if (window->pdev) { in ck804xrom_cleanup()
88 pci_read_config_byte(window->pdev, 0x6d, &byte); in ck804xrom_cleanup()
89 pci_write_config_byte(window->pdev, 0x6d, byte & ~1); in ck804xrom_cleanup()
93 list_for_each_entry_safe(map, scratch, &window->maps, list) { in ck804xrom_cleanup()
102 if (window->rsrc.parent) in ck804xrom_cleanup()
103 release_resource(&window->rsrc); in ck804xrom_cleanup()
105 if (window->virt) { in ck804xrom_cleanup()
106 iounmap(window->virt); in ck804xrom_cleanup()
107 window->virt = NULL; in ck804xrom_cleanup()
[all …]
/linux-4.4.14/arch/sparc/kernel/
Dwindows.c63 int window; in synchronize_user_stack() local
70 for(window = tp->w_saved - 1; window >= 0; window--) { in synchronize_user_stack()
71 unsigned long sp = tp->rwbuf_stkptrs[window]; in synchronize_user_stack()
74 if (copy_to_user((char __user *) sp, &tp->reg_window[window], in synchronize_user_stack()
78 shift_window_buffer(window, tp->w_saved - 1, tp); in synchronize_user_stack()
115 int window; in try_to_clear_window_buffer() local
118 for(window = 0; window < tp->w_saved; window++) { in try_to_clear_window_buffer()
119 unsigned long sp = tp->rwbuf_stkptrs[window]; in try_to_clear_window_buffer()
122 copy_to_user((char __user *) sp, &tp->reg_window[window], in try_to_clear_window_buffer()
Dprocess_64.c504 unsigned long window; in synchronize_user_stack() local
507 if ((window = get_thread_wsaved()) != 0) { in synchronize_user_stack()
508 window -= 1; in synchronize_user_stack()
510 struct reg_window *rwin = &t->reg_window[window]; in synchronize_user_stack()
514 sp = t->rwbuf_stkptrs[window]; in synchronize_user_stack()
522 shift_window_buffer(window, get_thread_wsaved() - 1, t); in synchronize_user_stack()
525 } while (window--); in synchronize_user_stack()
544 unsigned long window; in fault_in_user_windows() local
547 window = get_thread_wsaved(); in fault_in_user_windows()
549 if (likely(window != 0)) { in fault_in_user_windows()
[all …]
Dwof.S109 save %g0, %g0, %g0 ! save into the window to stash away
115 STORE_WINDOW(sp) ! stash the window
116 restore %g0, %g0, %g0 ! go back into trap window
Detrap_32.S94 bne trap_setup_kernel_spill ! in trap window, clean up
112 sll %t_wim, 0x7, %t_wim ! patched on 7 window Sparcs
115 and %g2, 0xff, %g2 ! patched on 7 window Sparcs
Dptrace_64.c222 struct reg_window window; in genregs64_get() local
224 if (regwindow64_get(target, regs, &window)) in genregs64_get()
227 &window, in genregs64_get()
272 struct reg_window window; in genregs64_set() local
274 if (regwindow64_get(target, regs, &window)) in genregs64_set()
278 &window, in genregs64_set()
283 regwindow64_set(target, regs, &window)) in genregs64_set()
Dwuf.S184 st %g5, [%curptr + TI_UWINMASK] ! one live user window still
/linux-4.4.14/drivers/pci/
Dhost-bridge.c52 struct resource_entry *window; in pcibios_resource_to_bus() local
55 resource_list_for_each_entry(window, &bridge->windows) { in pcibios_resource_to_bus()
56 if (resource_contains(window->res, res)) { in pcibios_resource_to_bus()
57 offset = window->offset; in pcibios_resource_to_bus()
77 struct resource_entry *window; in pcibios_bus_to_resource() local
80 resource_list_for_each_entry(window, &bridge->windows) { in pcibios_bus_to_resource()
83 if (resource_type(res) != resource_type(window->res)) in pcibios_bus_to_resource()
86 bus_region.start = window->res->start - window->offset; in pcibios_bus_to_resource()
87 bus_region.end = window->res->end - window->offset; in pcibios_bus_to_resource()
90 offset = window->offset; in pcibios_bus_to_resource()
Dprobe.c2094 struct resource_entry *window, *n; in pci_create_root_bus() local
2159 resource_list_for_each_entry_safe(window, n, resources) { in pci_create_root_bus()
2160 list_move_tail(&window->node, &bridge->windows); in pci_create_root_bus()
2161 res = window->res; in pci_create_root_bus()
2162 offset = window->offset; in pci_create_root_bus()
2262 struct resource_entry *window; in pci_scan_root_bus_msi() local
2267 resource_list_for_each_entry(window, resources) in pci_scan_root_bus_msi()
2268 if (window->res->flags & IORESOURCE_BUS) { in pci_scan_root_bus_msi()
/linux-4.4.14/drivers/video/fbdev/
Dau1200fb.c135 struct au1200_lcd_window_regs_t window; member
708 winctrl0 = lcd->window[plane].winctrl0; in au1200_setlocation()
709 winctrl1 = lcd->window[plane].winctrl1; in au1200_setlocation()
731 fb_offset += (((0 - xpos) * winbpp(lcd->window[plane].winctrl1))/8); in au1200_setlocation()
759 lcd->window[plane].winctrl0 = winctrl0; in au1200_setlocation()
760 lcd->window[plane].winctrl1 = winctrl1; in au1200_setlocation()
761 lcd->window[plane].winbuf0 = in au1200_setlocation()
762 lcd->window[plane].winbuf1 = fbdev->fb_phys; in au1200_setlocation()
763 lcd->window[plane].winbufctrl = 0; /* select winbuf0 */ in au1200_setlocation()
895 D(lcd->window[0].winctrl0); in au1200_setpanel()
[all …]
Dau1200fb.h75 } window[4]; member
361 } window[4]; member
/linux-4.4.14/drivers/edac/
Di3200_edac.c102 void __iomem *window; member
187 void __iomem *window = priv->window; in i3200_get_and_clear_error_info() local
200 info->eccerrlog[0] = readq(window + I3200_C0ECCERRLOG); in i3200_get_and_clear_error_info()
202 info->eccerrlog[1] = readq(window + I3200_C1ECCERRLOG); in i3200_get_and_clear_error_info()
213 info->eccerrlog[0] = readq(window + I3200_C0ECCERRLOG); in i3200_get_and_clear_error_info()
215 info->eccerrlog[1] = readq(window + I3200_C1ECCERRLOG); in i3200_get_and_clear_error_info()
272 void __iomem *window; in i3200_map_mchbar() local
285 window = ioremap_nocache(u.mchbar, I3200_MMR_WINDOW_SIZE); in i3200_map_mchbar()
286 if (!window) in i3200_map_mchbar()
290 return window; in i3200_map_mchbar()
[all …]
Dx38_edac.c170 void __iomem *window = mci->pvt_info; in x38_get_and_clear_error_info() local
183 info->eccerrlog[0] = lo_hi_readq(window + X38_C0ECCERRLOG); in x38_get_and_clear_error_info()
185 info->eccerrlog[1] = lo_hi_readq(window + X38_C1ECCERRLOG); in x38_get_and_clear_error_info()
196 info->eccerrlog[0] = lo_hi_readq(window + X38_C0ECCERRLOG); in x38_get_and_clear_error_info()
199 lo_hi_readq(window + X38_C1ECCERRLOG); in x38_get_and_clear_error_info()
257 void __iomem *window; in x38_map_mchbar() local
271 window = ioremap_nocache(u.mchbar, X38_MMR_WINDOW_SIZE); in x38_map_mchbar()
272 if (!window) in x38_map_mchbar()
276 return window; in x38_map_mchbar()
280 static void x38_get_drbs(void __iomem *window, in x38_get_drbs() argument
[all …]
Die31200_edac.c136 void __iomem *window; member
222 void __iomem *window = priv->window; in ie31200_get_and_clear_error_info() local
235 info->eccerrlog[0] = lo_hi_readq(window + IE31200_C0ECCERRLOG); in ie31200_get_and_clear_error_info()
237 info->eccerrlog[1] = lo_hi_readq(window + IE31200_C1ECCERRLOG); in ie31200_get_and_clear_error_info()
248 info->eccerrlog[0] = lo_hi_readq(window + IE31200_C0ECCERRLOG); in ie31200_get_and_clear_error_info()
251 lo_hi_readq(window + IE31200_C1ECCERRLOG); in ie31200_get_and_clear_error_info()
309 void __iomem *window; in ie31200_map_mchbar() local
321 window = ioremap_nocache(u.mchbar, IE31200_MMR_WINDOW_SIZE); in ie31200_map_mchbar()
322 if (!window) in ie31200_map_mchbar()
326 return window; in ie31200_map_mchbar()
[all …]
Di3000_edac.c323 void __iomem *window; in i3000_probe1() local
329 window = ioremap_nocache(mchbar, I3000_MMR_WINDOW_SIZE); in i3000_probe1()
330 if (!window) { in i3000_probe1()
336 c0dra[0] = readb(window + I3000_C0DRA + 0); /* ranks 0,1 */ in i3000_probe1()
337 c0dra[1] = readb(window + I3000_C0DRA + 1); /* ranks 2,3 */ in i3000_probe1()
338 c1dra[0] = readb(window + I3000_C1DRA + 0); /* ranks 0,1 */ in i3000_probe1()
339 c1dra[1] = readb(window + I3000_C1DRA + 1); /* ranks 2,3 */ in i3000_probe1()
342 c0drb[i] = readb(window + I3000_C0DRB + i); in i3000_probe1()
343 c1drb[i] = readb(window + I3000_C1DRB + i); in i3000_probe1()
346 iounmap(window); in i3000_probe1()
Di82875p_edac.c277 void __iomem *window; in i82875p_setup_overfl_dev() local
314 window = pci_ioremap_bar(dev, 0); in i82875p_setup_overfl_dev()
315 if (window == NULL) { in i82875p_setup_overfl_dev()
321 *ovrfl_window = window; in i82875p_setup_overfl_dev()
/linux-4.4.14/arch/powerpc/platforms/cell/
Diommu.c173 struct iommu_window *window = in tce_build_cell() local
191 (window->ioid & CBE_IOPTE_IOID_Mask); in tce_build_cell()
194 CBE_IOPTE_SO_RW | (window->ioid & CBE_IOPTE_IOID_Mask); in tce_build_cell()
206 invalidate_tce_cache(window->iommu, io_pte, npages); in tce_build_cell()
218 struct iommu_window *window = in tce_free_cell() local
229 __pa(window->iommu->pad_page) | in tce_free_cell()
230 (window->ioid & CBE_IOPTE_IOID_Mask); in tce_free_cell()
240 invalidate_tce_cache(window->iommu, io_pte, npages); in tce_free_cell()
442 struct iommu_window *window;
446 list_for_each_entry(window, &(iommu->windows), list) {
[all …]
/linux-4.4.14/tools/perf/ui/gtk/
Dannotate.c88 static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym, in perf_gtk__annotate_symbol() argument
147 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk__annotate_symbol()
161 GtkWidget *window; in symbol__gtk_annotate() local
175 window = pgctx->main_window; in symbol__gtk_annotate()
188 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); in symbol__gtk_annotate()
189 gtk_window_set_title(GTK_WINDOW(window), "perf annotate"); in symbol__gtk_annotate()
191 g_signal_connect(window, "delete_event", gtk_main_quit, NULL); in symbol__gtk_annotate()
193 pgctx = perf_gtk__activate_context(window); in symbol__gtk_annotate()
212 gtk_container_add(GTK_CONTAINER(window), vbox); in symbol__gtk_annotate()
238 GtkWidget *window; in perf_gtk__show_annotations() local
[all …]
Dbrowser.c17 void perf_gtk__resize_window(GtkWidget *window) in perf_gtk__resize_window() argument
25 screen = gtk_widget_get_screen(window); in perf_gtk__resize_window()
27 monitor = gdk_screen_get_monitor_at_window(screen, window->window); in perf_gtk__resize_window()
34 gtk_window_resize(GTK_WINDOW(window), width, height); in perf_gtk__resize_window()
Dhists.c158 static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists, in perf_gtk__show_hists() argument
266 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk__show_hists()
279 GtkWidget *window; in perf_evlist__gtk_browse_hists() local
287 window = gtk_window_new(GTK_WINDOW_TOPLEVEL); in perf_evlist__gtk_browse_hists()
289 gtk_window_set_title(GTK_WINDOW(window), "perf report"); in perf_evlist__gtk_browse_hists()
291 g_signal_connect(window, "delete_event", gtk_main_quit, NULL); in perf_evlist__gtk_browse_hists()
293 pgctx = perf_gtk__activate_context(window); in perf_evlist__gtk_browse_hists()
310 gtk_container_add(GTK_CONTAINER(window), vbox); in perf_evlist__gtk_browse_hists()
343 gtk_widget_show_all(window); in perf_evlist__gtk_browse_hists()
345 perf_gtk__resize_window(window); in perf_evlist__gtk_browse_hists()
[all …]
Dgtk.h33 struct perf_gtk_context *perf_gtk__activate_context(GtkWidget *window);
41 void perf_gtk__resize_window(GtkWidget *window);
Dutil.c10 struct perf_gtk_context *perf_gtk__activate_context(GtkWidget *window) in perf_gtk__activate_context() argument
16 ctx->main_window = window; in perf_gtk__activate_context()
/linux-4.4.14/Documentation/video4linux/
Dsh_mobile_ceu_camera.txt58 (6) to (6') - CEU scale - user window
71 current sensor scales onto input window - this is user S_CROP:
75 3. Calculate new combined scales from "effective" input window to requested user
76 window:
80 4. Calculate sensor output window by applying combined scales to real input
81 window:
85 5. Apply iterative sensor S_FMT for sensor output window.
89 6. Retrieve sensor output window (g_fmt)
101 9. Use CEU cropping to crop to the new window:
105 10. Use CEU scaling to scale to the requested user window:
[all …]
Dsoc-camera.txt111 VIDIOC_S_CROP: sets location and sizes of the sensor window. Unit is one sensor
112 pixel. Changing sensor window sizes preserves any scaling factors, therefore
113 user window sizes change as well.
115 VIDIOC_S_FMT: sets user window. Should preserve previously set sensor window as
116 much as possible by modifying scaling factors. If the sensor window cannot be
132 .s_fmt() and .try_fmt() have to be implemented too. Sensor window and scaling
140 User window geometry is kept in .user_width and .user_height fields in struct
/linux-4.4.14/drivers/pci/host/
Dpcie-iproc.c74 #define OARR_LO(window) (0xd20 + (window) * 8) argument
75 #define OARR_HI(window) (0xd24 + (window) * 8) argument
76 #define OMAP_LO(window) (0xd40 + (window) * 8) argument
77 #define OMAP_HI(window) (0xd44 + (window) * 8) argument
295 struct resource_entry *window; in iproc_pcie_map_ranges() local
298 resource_list_for_each_entry(window, resources) { in iproc_pcie_map_ranges()
299 struct resource *res = window->res; in iproc_pcie_map_ranges()
308 res->start - window->offset, in iproc_pcie_map_ranges()
Dpci-xgene.c305 struct resource_entry *window; in xgene_pcie_map_ranges() local
309 resource_list_for_each_entry(window, res) { in xgene_pcie_map_ranges()
310 struct resource *res = window->res; in xgene_pcie_map_ranges()
318 res->start - window->offset); in xgene_pcie_map_ranges()
328 window->offset); in xgene_pcie_map_ranges()
333 window->offset); in xgene_pcie_map_ranges()
/linux-4.4.14/drivers/staging/vme/devices/
Dvme_pio2_core.c66 retval = vme_master_write(card->window, &reg, 1, PIO2_REGS_CTRL); in pio2_set_led()
92 retval = vme_master_read(card->window, &reg, 1, in pio2_int()
130 retval = vme_master_write(card->window, &data, 1, PIO2_REGS_CTRL); in pio2_reset_card()
135 retval = vme_master_write(card->window, &data, 1, PIO2_REGS_VME_VECTOR); in pio2_reset_card()
283 card->window = vme_master_request(vdev, VME_A24, VME_SCT, VME_D16); in pio2_probe()
284 if (!card->window) { in pio2_probe()
291 retval = vme_master_set(card->window, 1, card->base, 0x10000, VME_A24, in pio2_probe()
305 retval = vme_master_read(card->window, &reg, 1, PIO2_REGS_ID); in pio2_probe()
332 retval = vme_master_write(card->window, &reg, 1, PIO2_REGS_CTRL); in pio2_probe()
337 retval = vme_master_write(card->window, &card->irq_vector, 1, in pio2_probe()
[all …]
Dvme_pio2_cntr.c30 retval = vme_master_write(card->window, &data, 1, PIO2_CNTR_CTRL[id]); in pio2_cntr_irq_set()
35 retval = vme_master_write(card->window, &data, 1, PIO2_CNTR_DATA[id]); in pio2_cntr_irq_set()
40 retval = vme_master_write(card->window, &data, 1, PIO2_CNTR_DATA[id]); in pio2_cntr_irq_set()
63 retval = vme_master_read(card->window, &reg, 1, in pio2_cntr_reset()
Dvme_pio2_gpio.c46 retval = vme_master_read(card->window, &reg, 1, in pio2_gpio_get()
91 retval = vme_master_write(card->window, &reg, 1, in pio2_gpio_set()
152 retval = vme_master_write(card->window, &data, 1, in pio2_gpio_reset()
161 retval = vme_master_write(card->window, &data, 1, in pio2_gpio_reset()
166 retval = vme_master_write(card->window, &data, 1, in pio2_gpio_reset()
178 retval = vme_master_read(card->window, &data, 1, in pio2_gpio_reset()
Dvme_pio2.h235 struct vme_resource *window; member
/linux-4.4.14/drivers/sh/intc/
Daccess.c16 struct intc_window *window; in intc_phys_to_virt() local
21 window = d->window + k; in intc_phys_to_virt()
23 if (address < window->phys) in intc_phys_to_virt()
26 if (address >= (window->phys + window->size)) in intc_phys_to_virt()
29 address -= window->phys; in intc_phys_to_virt()
30 address += (unsigned long)window->virt; in intc_phys_to_virt()
Dcore.c206 d->window = kzalloc(d->nr_windows * sizeof(*d->window), in register_intc_controller()
208 if (!d->window) in register_intc_controller()
214 d->window[k].phys = res->start; in register_intc_controller()
215 d->window[k].size = resource_size(res); in register_intc_controller()
216 d->window[k].virt = ioremap_nocache(res->start, in register_intc_controller()
218 if (!d->window[k].virt) in register_intc_controller()
396 if (d->window[k].virt) in register_intc_controller()
397 iounmap(d->window[k].virt); in register_intc_controller()
399 kfree(d->window); in register_intc_controller()
Dinternals.h68 struct intc_window *window; member
/linux-4.4.14/drivers/gpu/drm/tegra/
Ddc.c241 const struct tegra_dc_window *window) in tegra_dc_setup_window() argument
251 yuv = tegra_dc_format_is_yuv(window->format, &planar); in tegra_dc_setup_window()
253 bpp = window->bits_per_pixel / 8; in tegra_dc_setup_window()
262 tegra_dc_writel(dc, window->format, DC_WIN_COLOR_DEPTH); in tegra_dc_setup_window()
263 tegra_dc_writel(dc, window->swap, DC_WIN_BYTE_SWAP); in tegra_dc_setup_window()
265 value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x); in tegra_dc_setup_window()
268 value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w); in tegra_dc_setup_window()
271 h_offset = window->src.x * bpp; in tegra_dc_setup_window()
272 v_offset = window->src.y; in tegra_dc_setup_window()
273 h_size = window->src.w * bpp; in tegra_dc_setup_window()
[all …]
/linux-4.4.14/lib/zlib_deflate/
Ddeflate.c154 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
232 s->window = (Byte *) mem->window_memory; in zlib_deflateInit2()
560 register Byte *scan = s->window + s->strstart; /* current string */ in longest_match()
577 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
581 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
604 match = s->window + cur_match; in longest_match()
636 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match()
668 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match()
705 if (memcmp((char *)s->window + match, in check_match()
706 (char *)s->window + start, length) != EQUAL) { in check_match()
[all …]
Ddefutil.h89 Byte *window; member
/linux-4.4.14/Documentation/devicetree/bindings/bus/
Dmvebu-mbus.txt20 the second cell for the address offset within the window.
30 within the internal register window (see below).
52 the first one controls the devices decoding window,
53 the second one controls the SDRAM decoding window and
80 ** MBus address decoding window specification
83 the window ID and the second one for the offset within the window.
84 In order to allow to describe valid and non-valid window entries, the
91 S = 0x0 for a MBus valid window
92 S = 0xf for a non-valid window (see below)
96 I = 4-bit window target ID
[all …]
/linux-4.4.14/drivers/pcmcia/
Dvrc4173_cardu.c251 uint8_t ioctl, window; in cardu_get_io_map() local
262 window = exca_readb(socket, ADR_WIN_EN); in cardu_get_io_map()
263 io->flags = (window & IO_WIN_EN(map)) ? MAP_ACTIVE : 0; in cardu_get_io_map()
276 uint8_t window, enable; in cardu_set_io_map() local
283 window = exca_readb(socket, ADR_WIN_EN); in cardu_set_io_map()
286 if (window & enable) { in cardu_set_io_map()
287 window &= ~enable; in cardu_set_io_map()
288 exca_writeb(socket, ADR_WIN_EN, window); in cardu_set_io_map()
300 exca_writeb(socket, ADR_WIN_EN, window | enable); in cardu_set_io_map()
309 uint8_t window; in cardu_get_mem_map() local
[all …]
/linux-4.4.14/net/ipv4/
Dtcp_cdg.c35 static int window __read_mostly = 8;
43 module_param(window, int, 0444);
44 MODULE_PARM_DESC(window, "gradient window size (power of two <= 256)");
199 ca->tail = (ca->tail + 1) & (window - 1); in tcp_cdg_grad()
214 if (!ca->gradients && window > 1) in tcp_cdg_grad()
215 grad *= window; /* Memory allocation failed. */ in tcp_cdg_grad()
219 grad = (grad * window) / (int)ca->tail; in tcp_cdg_grad()
362 memset(gradients, 0, window * sizeof(gradients[0])); in tcp_cdg_cwnd_event()
386 if (window > 1) in tcp_cdg_init()
387 ca->gradients = kcalloc(window, sizeof(ca->gradients[0]), in tcp_cdg_init()
[all …]
Dinet_lro.c111 tcph->window = lro_desc->tcp_window; in lro_update_tcp_ip_header()
161 lro_desc->tcp_window = tcph->window; in lro_init_desc()
194 lro_desc->tcp_window = tcph->window; in lro_add_common()
Dtcp_output.c972 th->window = htons(min(tp->rcv_wnd, 65535U)); in tcp_transmit_skb()
974 th->window = htons(tcp_select_window(sk)); in tcp_transmit_skb()
1558 u32 partial, needed, window, max_len; in tcp_mss_split_point() local
1560 window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; in tcp_mss_split_point()
1563 if (likely(max_len <= window && skb != tcp_write_queue_tail(sk))) in tcp_mss_split_point()
1566 needed = min(skb->len, window); in tcp_mss_split_point()
2381 int window; in __tcp_select_window() local
2415 window = tp->rcv_wnd; in __tcp_select_window()
2417 window = free_space; in __tcp_select_window()
2423 if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window) in __tcp_select_window()
[all …]
DKconfig460 congestion window is large, additive increase with a large
481 congestion window and slow start threshold after a congestion
483 slow start threshold and a congestion window which takes into
506 increase the congestion window by when an ACK is received.
525 window. TCP Vegas should provide less packet loss, but it is
553 type. TCP Veno cuts down less congestion window in response to random
564 congestion window. It's design goals target high efficiency,
Dtcp_fastopen.c163 tp->snd_wnd = ntohs(tcp_hdr(skb)->window); in tcp_fastopen_create_child()
/linux-4.4.14/arch/alpha/kernel/
Dcore_t2.c89 } window[2]; member
390 t2_saved_config.window[0].wbase = *(vulp)T2_WBASE1; in t2_save_configuration()
391 t2_saved_config.window[0].wmask = *(vulp)T2_WMASK1; in t2_save_configuration()
392 t2_saved_config.window[0].tbase = *(vulp)T2_TBASE1; in t2_save_configuration()
393 t2_saved_config.window[1].wbase = *(vulp)T2_WBASE2; in t2_save_configuration()
394 t2_saved_config.window[1].wmask = *(vulp)T2_WMASK2; in t2_save_configuration()
395 t2_saved_config.window[1].tbase = *(vulp)T2_TBASE2; in t2_save_configuration()
487 *(vulp)T2_WBASE1 = t2_saved_config.window[0].wbase; in t2_kill_arch()
488 *(vulp)T2_WMASK1 = t2_saved_config.window[0].wmask; in t2_kill_arch()
489 *(vulp)T2_TBASE1 = t2_saved_config.window[0].tbase; in t2_kill_arch()
[all …]
Dcore_cia.c327 cia_prepare_tbia_workaround(int window) in cia_prepare_tbia_workaround() argument
339 *(vip)CIA_IOC_PCI_Wn_BASE(window) = CIA_BROKEN_TBIA_BASE | 3; in cia_prepare_tbia_workaround()
340 *(vip)CIA_IOC_PCI_Wn_MASK(window) in cia_prepare_tbia_workaround()
342 *(vip)CIA_IOC_PCI_Tn_BASE(window) = virt_to_phys(ppte) >> 2; in cia_prepare_tbia_workaround()
572 } window[4]; member
594 saved_config.window[i].w_base = *(vip)CIA_IOC_PCI_Wn_BASE(i); in cia_save_srm_settings()
595 saved_config.window[i].w_mask = *(vip)CIA_IOC_PCI_Wn_MASK(i); in cia_save_srm_settings()
596 saved_config.window[i].t_base = *(vip)CIA_IOC_PCI_Tn_BASE(i); in cia_save_srm_settings()
607 *(vip)CIA_IOC_PCI_Wn_BASE(i) = saved_config.window[i].w_base; in cia_restore_srm_settings()
608 *(vip)CIA_IOC_PCI_Wn_MASK(i) = saved_config.window[i].w_mask; in cia_restore_srm_settings()
[all …]
/linux-4.4.14/Documentation/powerpc/
Dpci_iov_resource_on_powernv.txt50 Each window can be configured to be remapped via a "TCE table" (IOMMU
67 window and sixteen M64 windows. They have different characteristics.
72 - The M32 window:
78 32-bit PCIe accesses. We configure that window at boot from FW and
88 to be assigned to PEs on a segment granularity. For a 2GB window,
91 Now, this is the "main" window we use in Linux today (excluding
110 specify the PE# for the entire window. When segmented, a window
115 there's a defined ordering for which window applies.
120 We configure an M64 window to cover the entire region of address space
178 - M32 window: There's one M32 window, and it is split into 256
[all …]
/linux-4.4.14/net/netfilter/
Dxt_osf.c197 u16 window, totlen, mss = 0; in xt_osf_match_packet() local
217 window = ntohs(tcp->window); in xt_osf_match_packet()
294 if (f->wss.val == 0 || window == f->wss.val) in xt_osf_match_packet()
306 if (window == f->wss.val * mss || in xt_osf_match_packet()
307 window == f->wss.val * SMART_MSS_1 || in xt_osf_match_packet()
308 window == f->wss.val * SMART_MSS_2) in xt_osf_match_packet()
312 if (window == f->wss.val * (mss + 40) || in xt_osf_match_packet()
313 window == f->wss.val * (SMART_MSS_1 + 40) || in xt_osf_match_packet()
314 window == f->wss.val * (SMART_MSS_2 + 40)) in xt_osf_match_packet()
318 if ((window % f->wss.val) == 0) in xt_osf_match_packet()
Dnf_log_common.c86 nf_log_buf_add(m, "WINDOW=%u ", ntohs(th->window)); in nf_log_dump_tcp_header()
/linux-4.4.14/arch/powerpc/platforms/pseries/
Diommu.c861 struct direct_window *window; in find_existing_ddw() local
867 list_for_each_entry(window, &direct_window_list, list) { in find_existing_ddw()
868 if (window->device == pdn) { in find_existing_ddw()
869 direct64 = window->prop; in find_existing_ddw()
883 struct direct_window *window; in find_existing_ddw_windows() local
894 window = kzalloc(sizeof(*window), GFP_KERNEL); in find_existing_ddw_windows()
895 if (!window || len < sizeof(struct dynamic_dma_window_prop)) { in find_existing_ddw_windows()
896 kfree(window); in find_existing_ddw_windows()
901 window->device = pdn; in find_existing_ddw_windows()
902 window->prop = direct64; in find_existing_ddw_windows()
[all …]
/linux-4.4.14/net/lapb/
Dlapb_iface.c137 lapb->window = LAPB_DEFAULT_WINDOW; in lapb_create_cb()
214 parms->window = lapb->window; in lapb_getparms()
248 if (parms->window < 1 || parms->window > 127) in lapb_setparms()
251 if (parms->window < 1 || parms->window > 7) in lapb_setparms()
255 lapb->window = parms->window; in lapb_setparms()
Dlapb_out.c78 end = (lapb->va + lapb->window) % modulus; in lapb_kick()
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Drs.c244 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window) in rs_rate_scale_clear_window() argument
246 window->data = 0; in rs_rate_scale_clear_window()
247 window->success_counter = 0; in rs_rate_scale_clear_window()
248 window->success_ratio = IWL_INVALID_VALUE; in rs_rate_scale_clear_window()
249 window->counter = 0; in rs_rate_scale_clear_window()
250 window->average_tpt = IWL_INVALID_VALUE; in rs_rate_scale_clear_window()
251 window->stamp = 0; in rs_rate_scale_clear_window()
470 struct iwl_rate_scale_data *window = NULL; in rs_collect_tx_data() local
478 window = &(tbl->win[scale_index]); in rs_collect_tx_data()
492 if (window->counter >= IWL_RATE_MAX_WINDOW) { in rs_collect_tx_data()
[all …]
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Drs.c576 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window) in rs_rate_scale_clear_window() argument
578 window->data = 0; in rs_rate_scale_clear_window()
579 window->success_counter = 0; in rs_rate_scale_clear_window()
580 window->success_ratio = IWL_INVALID_VALUE; in rs_rate_scale_clear_window()
581 window->counter = 0; in rs_rate_scale_clear_window()
582 window->average_tpt = IWL_INVALID_VALUE; in rs_rate_scale_clear_window()
664 struct iwl_rate_scale_data *window) in _rs_collect_tx_data() argument
681 if (window->counter >= IWL_RATE_MAX_WINDOW) { in _rs_collect_tx_data()
683 window->counter = IWL_RATE_MAX_WINDOW - 1; in _rs_collect_tx_data()
685 if (window->data & mask) { in _rs_collect_tx_data()
[all …]
Dfw-api-tx.h627 u8 window; member
/linux-4.4.14/drivers/ssb/
Ddriver_mipscore.c223 pflash->window = SSB_FLASH1; in ssb_mips_flash_detect()
238 pflash->window = SSB_FLASH2; in ssb_mips_flash_detect()
251 bcm47xx_nvram_init_from_mem(sflash->window, sflash->size); in ssb_mips_flash_detect()
255 bcm47xx_nvram_init_from_mem(pflash->window, pflash->window_size); in ssb_mips_flash_detect()
259 ssb_pflash_resource.start = pflash->window; in ssb_mips_flash_detect()
260 ssb_pflash_resource.end = pflash->window + pflash->window_size; in ssb_mips_flash_detect()
Ddriver_chipcommon_sflash.c148 sflash->window = SSB_FLASH2; in ssb_sflash_init()
/linux-4.4.14/net/ax25/
Dax25_std_in.c47 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine()
53 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state1_machine()
89 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state1_machine()
153 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state3_machine()
156 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state3_machine()
278 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_state4_machine()
281 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_std_state4_machine()
Dax25_ds_in.c40 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_ds_state1_machine()
46 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_ds_state1_machine()
157 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_ds_state3_machine()
160 ax25->window = ax25->ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_ds_state3_machine()
Daf_ax25.c394 ax25->window = ax25_ctl.arg; in ax25_ctl_ioctl()
462 ax25->window = ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_fillin_cb_from_dev()
465 ax25->window = ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_fillin_cb_from_dev()
496 ax25->window = AX25_DEF_EWINDOW; in ax25_fillin_cb()
499 ax25->window = AX25_DEF_WINDOW; in ax25_fillin_cb()
569 ax25->window = opt; in ax25_setsockopt()
704 val = ax25->window; in ax25_getsockopt()
929 ax25->window = oax25->window; in ax25_make_new()
1264 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_connect()
1789 ax25_info.window = ax25->window; in ax25_ioctl()
[all …]
Dax25_in.c401 ax25->window = ax25_dev->values[AX25_VALUES_EWINDOW]; in ax25_rcv()
404 ax25->window = ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_rcv()
Dax25_std_timer.c131 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_std_t1timer_expiry()
Dax25_ds_timer.c200 ax25->window = ax25->ax25_dev->values[AX25_VALUES_WINDOW]; in ax25_ds_t1_timeout()
Dax25_out.c260 end = (ax25->va + ax25->window) % ax25->modulus; in ax25_kick()
/linux-4.4.14/include/linux/ssb/
Dssb_driver_mips.h19 u32 window; member
26 u32 window; member
/linux-4.4.14/arch/alpha/boot/
Dmisc.c45 static uch *window; /* Sliding window buffer */ variable
128 in = window; in flush_window()
166 window = malloc(WSIZE); in decompress_kernel()
/linux-4.4.14/Documentation/devicetree/bindings/pci/
Dbrcm,iproc-pcie.txt29 - brcm,pcie-ob-window-size: The outbound address mapping window size (in MB)
33 increase the outbound window size
60 brcm,pcie-ob-window-size = <256>;
Dmvebu-pci.txt34 of the internal register window (as identified by MBUS_ID(0xf0,
43 * t is the type of the MBus window (as defined by the standard PCI DT
48 * w is the 'target ID' value for the MBus window
50 * a the 'attribute' value for the MBus window.
/linux-4.4.14/arch/mips/pci/
Dpci-vr41xx.c116 struct pci_target_address_window *window; in vr41xx_pciu_init() local
245 window = setup->target_window1; in vr41xx_pciu_init()
246 val = PMBA(window->base_address) | TYPE_32BITSPACE | in vr41xx_pciu_init()
252 window = setup->target_window2; in vr41xx_pciu_init()
253 val = PMBA(window->base_address) | TYPE_32BITSPACE | in vr41xx_pciu_init()
/linux-4.4.14/arch/arm/mach-mv78xx0/
Dcommon.h29 void mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size,
31 void mv78xx0_setup_pcie_mem_win(int window, u32 base, u32 size,
/linux-4.4.14/Documentation/devicetree/bindings/iommu/
Diommu.txt56 - #iommu-cells = <4>: Some IOMMU devices allow the DMA window for masters to
59 the DMA window for the given device. The length of the DMA window is given
162 Multiple-master IOMMU with configurable DMA window:
169 * address of the DMA window. The length of the DMA
170 * window is encoded in two cells.
172 * The DMA window is the range addressable by the
179 /* master ID 42, 4 GiB DMA window starting at 0 */
Dnvidia,tegra30-smmu.txt9 - dma-window : IOVA start address and length.
19 dma-window = <0 0x40000000>; /* IOVA start & length */
Dsamsung,sysmmu.txt22 * FIMD in Exynos5420 has one System MMU for window 0 and 4, the other system MMU
23 for window 1, 2 and 3.
/linux-4.4.14/Documentation/networking/
Dproc_net_tcp.txt31 | | | | | | | | |----> sending congestion window
39 | |----------------------------------> unanswered 0-window probes
48 4 zero window probe timer is pending
Dtcp.txt16 snd_cwnd The size of the congestion window
22 snd_cwnd_stamp Timestamp for when congestion window last validated.
24 congestion window is in use. It is used to adjust
43 provide an alternative the congestion window calculation. More complex
99 If the window is full we queue full sized frames. On the first timeout in
100 zero window we split this.
Dlapb-module.txt66 unsigned int window;
73 The window size is the maximum number of outstanding data packets allowed to
74 be unacknowledged by the remote end, the value of the window is between 1
88 consequently larger window sizes, the default is standard LAPB operation.
Dxfrm_proc.txt31 i.e. Sequence number is out of window
Dnetdev-FAQ.txt39 a two week "merge window" where the main maintainers feed their new
41 the merge window is closed, and it is called/tagged "-rc1". No new
49 Relating that to netdev: At the beginning of the 2-week merge window,
Dip-sysctl.txt202 Reserve max(window/2^tcp_app_win, mss) of window for application
307 (a) out-of-window sequence number,
308 (b) out-of-window acknowledgment number, or
388 The window length of the windowed min filter to track the minimum RTT.
389 A shorter window lets a flow more quickly pick up new (higher)
391 engineering). A longer window makes the filter more resistant to RTT
500 Default: 87380 bytes. This value results in window of 65535 with
516 window after an idle period. An idle period is defined at
517 the current RTO. If unset, the congestion window will not
603 if available window is too small.
[all …]
Dcxgb.txt156 TCP window size for single connections:
169 TCP window size for multiple connections:
172 smaller window prevents congestion and facilitates better pacing,
Dnf_conntrack-sysctl.txt118 If it's non-zero, we mark only out of window RST segments as INVALID.
D3c509.txt181 0x02 Out-of-window collision.
197 Out of window collision. This typically occurs when some other Ethernet
/linux-4.4.14/lib/zlib_inflate/
Dinffast.c102 unsigned char *window; /* allocated sliding window, if wsize != 0 */ in inflate_fast() local
129 window = state->window; in inflate_fast()
208 from = window - OFF; in inflate_fast()
227 from = window - OFF; in inflate_fast()
Dinflate.c69 state->window = &WS(strm)->working_window[0]; in zlib_inflateInit2()
111 memcpy(state->window, strm->next_out - state->wsize, state->wsize); in zlib_updatewindow()
118 memcpy(state->window + state->write, strm->next_out - copy, dist); in zlib_updatewindow()
121 memcpy(state->window, strm->next_out - copy, copy); in zlib_updatewindow()
654 from = state->window + (state->wsize - copy); in zlib_inflate()
657 from = state->window + (state->write - copy); in zlib_inflate()
Dinflate.h87 unsigned char *window; /* allocated sliding window, if needed */ member
/linux-4.4.14/net/tipc/
Dlink.h195 u16 window; member
225 int window, u32 session, u32 ownnode, u32 peer,
233 int mtu, int window, u16 peer_caps,
254 void tipc_link_set_queue_limits(struct tipc_link *l, u32 window);
Dbearer.h123 u32 window; member
160 u32 window; member
Dib_media.c97 .window = TIPC_DEF_LINK_WIN,
Deth_media.c95 .window = TIPC_DEF_LINK_WIN,
Dbearer.c315 b_ptr->window = m_ptr->window; in tipc_enable_bearer()
665 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window)) in __tipc_nl_add_bearer()
898 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]); in tipc_nl_bearer_set()
931 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window)) in __tipc_nl_add_media()
1066 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]); in tipc_nl_media_set()
Dlink.c259 int window, u32 session, u32 ownnode, u32 peer, in tipc_link_create() argument
297 tipc_link_set_queue_limits(l, window); in tipc_link_create()
324 int mtu, int window, u16 peer_caps, in tipc_link_bc_create() argument
332 if (!tipc_link_create(net, "", MAX_BEARERS, 0, 'Z', mtu, 0, window, in tipc_link_bc_create()
655 lim = l->window + l->backlog[imp].limit; in link_prepare_wakeup()
715 unsigned int maxwin = l->window; in tipc_link_xmit()
781 while (skb_queue_len(&l->transmq) < l->window) { in tipc_link_advance_backlog()
1423 if (more(peers_snd_nxt, l->rcv_nxt + l->window)) in tipc_link_bc_sync_rcv()
1522 l->window = win; in tipc_link_set_queue_limits()
1818 link->window)) in __tipc_nl_add_link()
/linux-4.4.14/arch/x86/pci/
Dbus_numa.c34 struct resource_entry *window; in x86_pci_root_bus_resources() local
44 resource_list_for_each_entry(window, resources) in x86_pci_root_bus_resources()
45 if (window->res->flags & IORESOURCE_BUS) { in x86_pci_root_bus_resources()
/linux-4.4.14/Documentation/
Dvme_api.txt84 specific window or DMA channel (which may be used by a different driver) this
100 such any combination of the attributes can be requested for a single window,
101 the core will assign a window that meets the requirements, returning a pointer
107 If an unallocated window fitting the requirements can not be found a NULL
110 Functions are also provided to free window allocations once they are no longer
126 the underlying chipset. A window must be configured before it can be used.
129 Master window configuration
132 Once a master window has been assigned the following functions can be used to
150 Master window access
174 Parts of a VME window can be mapped into user space memory using the following
[all …]
Dntb.txt110 * b2b\_mw\_idx - If the peer ntb is to be accessed via a memory window, then use
111 this memory window to access the peer ntb. A value of zero or positive
115 * b2b\_mw\_share - If the peer ntb is to be accessed via a memory window, and if
116 the memory window is large enough, still allow the client to use the
117 second half of the memory window for address translation to the peer.
119 this 64 bit address on the bus between the NTB devices for the window
Demail-clients.txt86 If the inserted patch has to be edited in the Claws composition window
129 Make the composer window wide enough so that no lines wrap. As of
131 the email if the lines wrap in the composer window. Having word wrapping
133 long lines, you must make the composer window very wide before sending
149 are actually viewing it in its own window -- there has been a request filed
240 - Has a helpful ruler bar in the compose window.
Dvfio.txt301 out of the window leads to the whole PE isolation.
321 of the DMA window on the PCI bus.
325 the DMA window is and adjust rlimit before doing any real job.
357 /* Check here is .iova/.size are within DMA window from spapr_iommu_info */
467 6) sPAPR specification allows guests to have an additional DMA window(s) on
472 2GB long, uses 4K pages and called "default 32bit window"; the other can
476 VFIO_IOMMU_SPAPR_TCE_CREATE receives a page shift, a DMA window size and
479 It creates a new window in the available slot and returns the bus address where
480 the new window starts. Due to hardware limitation, the user space cannot choose
483 VFIO_IOMMU_SPAPR_TCE_REMOVE receives the bus start address of the window
/linux-4.4.14/include/uapi/linux/
Datmsap.h109 unsigned char window; /* window size (k), 1-127 (0 to omit) */ member
120 unsigned char window;/* packet window size, 1-127 (0 to omit) */ member
Dax25.h108 unsigned int window; member
Dtcp.h54 __be16 window; member
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-osd-api.txt312 Positions the main output window on the screen. The coordinates must be
313 such that the entire window fits on the screen.
315 window width
317 window height
319 top left window corner horizontal offset
321 top left window corner vertical offset
Dfw-decoder-regs.txt306 NOTE: Video corruption will occur if video window is shifted off the right
314 running in a window.
318 Decoder video window colour
319 Contains the colour (in yuv) used to fill the video window when the
/linux-4.4.14/drivers/scsi/qla2xxx/
Dqla_tmpl.c140 qla27xx_read8(void __iomem *window, void *buf, ulong *len) in qla27xx_read8() argument
145 value = RD_REG_BYTE(window); in qla27xx_read8()
151 qla27xx_read16(void __iomem *window, void *buf, ulong *len) in qla27xx_read16() argument
156 value = RD_REG_WORD(window); in qla27xx_read16()
162 qla27xx_read32(void __iomem *window, void *buf, ulong *len) in qla27xx_read32() argument
167 value = RD_REG_DWORD(window); in qla27xx_read32()
184 void __iomem *window = (void __iomem *)reg + offset; in qla27xx_read_reg() local
186 qla27xx_read32(window, buf, len); in qla27xx_read_reg()
193 __iomem void *window = (void __iomem *)reg + offset; in qla27xx_write_reg() local
196 WRT_REG_DWORD(window, data); in qla27xx_write_reg()
[all …]
Dqla_nx.c584 int window; in qla82xx_pci_set_window() local
591 window = MN_WIN(addr); in qla82xx_pci_set_window()
592 ha->ddr_mn_window = window; in qla82xx_pci_set_window()
594 ha->mn_win_crb | QLA82XX_PCI_CRBSPACE, window); in qla82xx_pci_set_window()
597 if ((win_read << 17) != window) { in qla82xx_pci_set_window()
600 __func__, window, win_read); in qla82xx_pci_set_window()
611 window = OCM_WIN(addr); in qla82xx_pci_set_window()
612 ha->ddr_mn_window = window; in qla82xx_pci_set_window()
614 ha->mn_win_crb | QLA82XX_PCI_CRBSPACE, window); in qla82xx_pci_set_window()
617 temp1 = ((window & 0x1FF) << 7) | in qla82xx_pci_set_window()
[all …]
/linux-4.4.14/drivers/pinctrl/sh-pfc/
Dcore.c93 struct sh_pfc_window *window; in sh_pfc_phys_to_virt() local
99 window = pfc->windows + i; in sh_pfc_phys_to_virt()
101 if (address < window->phys) in sh_pfc_phys_to_virt()
104 if (address >= (window->phys + window->size)) in sh_pfc_phys_to_virt()
107 return window->virt + (address - window->phys); in sh_pfc_phys_to_virt()
Dgpio.c352 struct sh_pfc_window *window = &pfc->windows[i]; in sh_pfc_register_gpiochip() local
354 if (address >= window->phys && in sh_pfc_register_gpiochip()
355 address < window->phys + window->size) in sh_pfc_register_gpiochip()
/linux-4.4.14/net/netrom/
Dnr_subr.c108 unsigned short vt = (nr->vl + nr->window) % NR_MODULUS; in nr_in_rx_window()
165 *dptr++ = nr->window; in nr_write_internal()
186 *dptr++ = nr->window; in nr_write_internal()
Daf_netrom.c463 nr->window = sysctl_netrom_transport_requested_window_size; in nr_create()
508 nr->window = onr->window; in nr_make_new()
870 unsigned short frametype, flags, window, timeout; in nr_rx_frame() local
965 window = skb->data[20]; in nr_rx_frame()
989 if (window < nr_make->window) in nr_rx_frame()
990 nr_make->window = window; in nr_rx_frame()
1323 nr->window, in nr_info_show()
Dnr_in.c91 nr->window = skb->data[20]; in nr_state1_machine()
258 if (((nrom->vl + nrom->window) % NR_MODULUS) == nrom->vr) { in nr_state3_machine()
Dnr_out.c141 end = (nr->va + nr->window) % NR_MODULUS; in nr_kick()
/linux-4.4.14/drivers/of/
Dof_pci.c170 struct resource_entry *window; in of_pci_get_host_bridge_resources() local
258 resource_list_for_each_entry(window, resources) in of_pci_get_host_bridge_resources()
259 kfree(window->res); in of_pci_get_host_bridge_resources()
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dtwd.txt20 register window.
45 register window.
Dversatile-sysreg.txt10 - reg : physical base address and the size of the registers window
Drtsm-dcscb.txt12 - reg : physical base address and the size of the registers window
Dscu.txt18 - reg : Specify the base address and the size of the SCU register window.
Dglobal_timer.txt16 register window.
Dvexpress-scc.txt24 registers window
Dl2cc.txt44 - arm,filter-ranges : <start length> Starting address and length of window to
45 filter. Addresses in the filter window are directed to the M1 port. Other
Dvexpress-sysreg.txt10 - reg : physical base address and the size of the registers window
/linux-4.4.14/net/ipv4/netfilter/
Dipt_SYNPROXY.c105 nth->window = 0; in synproxy_send_client_synack()
149 nth->window = th->window; in synproxy_send_server_syn()
189 nth->window = htons(state->seen[IP_CT_DIR_ORIGINAL].td_maxwin); in synproxy_send_server_ack()
227 nth->window = htons(ntohs(th->window) >> opts->wscale); in synproxy_send_client_ack()
/linux-4.4.14/net/ipv6/netfilter/
Dip6t_SYNPROXY.c118 nth->window = 0; in synproxy_send_client_synack()
162 nth->window = th->window; in synproxy_send_server_syn()
202 nth->window = htons(state->seen[IP_CT_DIR_ORIGINAL].td_maxwin); in synproxy_send_server_ack()
240 nth->window = htons(ntohs(th->window) >> opts->wscale); in synproxy_send_client_ack()
Dnf_reject_ipv6.c120 tcph->window = 0; in nf_reject_ip6_tcphdr_put()
/linux-4.4.14/arch/nios2/boot/compressed/
Dmisc.c49 static uch window[WSIZE]; /* Sliding window buffer */ variable
152 in = window; in flush_window()
/linux-4.4.14/drivers/net/wireless/ath/ath5k/
Dpcu.c739 ath5k_check_timer_win(int a, int b, int window, int intval) in ath5k_check_timer_win() argument
747 if ((b - a == window) || /* 1.) */ in ath5k_check_timer_win()
748 (a - b == intval - window) || /* 2.) */ in ath5k_check_timer_win()
749 ((a | 0x10000) - b == intval - window) || /* 3.) */ in ath5k_check_timer_win()
750 ((b | 0x10000) - a == window)) /* 4.) */ in ath5k_check_timer_win()
/linux-4.4.14/arch/mn10300/boot/compressed/
Dmisc.c89 static uch window[WSIZE]; /* sliding window buffer */ variable
265 in = window; in flush_window_low()
282 in = window; in flush_window_high()
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-powercap101 the time window specified by "constraint_X_time_window_us".
109 Time window in micro seconds. This is used along with
135 Maximum allowed time window in micro seconds for this
143 Minimum allowed time window in micro seconds for this
Dsysfs-bus-intel_th-devices-msc27 of numbers of pages for each window to be allocated. Number of
Dsysfs-class-bdi31 Size of the read-ahead window in kilobytes
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dmsi-pic.txt99 In the PAMU, each PCI controller is given only one primary window. The
100 PAMU restricts DMA operations so that they can only occur within a window.
101 Because PCI devices must be able to DMA to memory, the primary window must
112 primary window used for memory, but mapped to the MSIR block (where MSIIR
Dlbc.txt11 the entire access window as configured.
/linux-4.4.14/drivers/staging/rdma/amso1100/
DTODO4 It will be removed in the 4.6 merge window.
/linux-4.4.14/drivers/staging/rdma/ehca/
DTODO4 It will be removed in the 4.6 merge window.
/linux-4.4.14/drivers/mtd/devices/
Dbcm47xxsflash.c112 memcpy_fromio(buf, (void __iomem *)KSEG0ADDR(b47s->window + from), in bcm47xxsflash_read()
300 b47s->window = sflash->window; in bcm47xxsflash_bcma_probe()
Dbcm47xxsflash.h68 u32 window; member
DKconfig15 the size of the aperture window pointing into the devices memory.
18 you can select a 1M window into the memory and the driver will
19 "slide" the window around the PMC551's memory. This was
/linux-4.4.14/Documentation/isdn/
DREADME.icn18 2. A memory window with 16KB-256KB size, which can be setup in 16k steps
19 over the whole range of 16MB. Isdn4linux only uses a 16k window.
20 The base address of the window can be configured when loading
22 all cards are mapped to the same window and activated as needed.
/linux-4.4.14/drivers/uwb/
Drsv.c214 bow->window = UWB_DRP_BACKOFF_WIN_MIN >> 1; in uwb_rsv_backoff_win_timer()
228 dev_dbg(dev, "backoff_win_increment: window=%d\n", bow->window); in uwb_rsv_backoff_win_increment()
232 if((bow->window << 1) == UWB_DRP_BACKOFF_WIN_MAX) in uwb_rsv_backoff_win_increment()
235 bow->window <<= 1; in uwb_rsv_backoff_win_increment()
236 bow->n = prandom_u32() & (bow->window - 1); in uwb_rsv_backoff_win_increment()
237 dev_dbg(dev, "new_window=%d, n=%d\n", bow->window, bow->n); in uwb_rsv_backoff_win_increment()
989 rc->bow.window = UWB_DRP_BACKOFF_WIN_MIN >> 1; in uwb_rsv_init()
/linux-4.4.14/drivers/staging/rdma/ipath/
DTODO2 few releases. The driver will be deleted during the 4.6 merge window.
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dfsl-imx-esdhc.txt24 to select a proper data sampling window in case the clock quality is not good
35 tuning step can't find the proper delay window within limited tuning retries.
/linux-4.4.14/net/irda/
Dirlap_frame.c743 self->window -= 1; in irlap_send_data_primary()
749 self->window -= 1; in irlap_send_data_primary()
819 self->window = self->window_size; in irlap_send_data_primary_poll()
914 self->window = self->window_size; in irlap_send_data_secondary_final()
956 self->window -= 1; in irlap_send_data_secondary()
961 self->window -= 1; in irlap_send_data_secondary()
1014 if (self->window > 0) { in irlap_resend_rejected_frames()
1022 if ((self->window > 1) && in irlap_resend_rejected_frames()
Dirlap_event.c988 if ((self->window > 0) && (!self->remote_busy)) { in irlap_state_xmit_p()
1061 if ((self->window > 1) && (nextfit)) { in irlap_state_xmit_p()
1096 self->window = self->window_size; in irlap_state_xmit_p()
1753 if ((self->window > 0) && (!self->remote_busy)) { in irlap_state_xmit_s()
1790 self->window = self->window_size; in irlap_state_xmit_s()
1812 if ((self->window > 1) && (nextfit)) { in irlap_state_xmit_s()
1929 (self->window > 0)) in irlap_state_nrm_s()
2030 (self->window > 0) && !self->remote_busy) in irlap_state_nrm_s()
2061 (self->window > 0)) { in irlap_state_nrm_s()
Dirlap.c706 self->window = self->window_size - skb_queue_len(&self->wx_list); in irlap_update_nr_received()
774 self->window = 1; in irlap_initiate_connection_state()
992 self->window = self->qos_tx.window_size.value; in irlap_apply_connection_parameters()
1127 seq_printf(seq, "win: %d, ", self->window); in irlap_seq_show()
/linux-4.4.14/Documentation/devicetree/bindings/arm/rockchip/
Dpmu.txt9 - reg : physical base address and the size of the registers window
Dpmu-sram.txt10 - reg : physical base address and the size of the registers window
/linux-4.4.14/Documentation/power/powercap/
Dpowercap.txt202 applicable for the time window specified by "constraint_X_time_window_us".
204 constraint_X_time_window_us (rw): Time window in micro seconds.
212 constraint_X_max_time_window_us(ro): Maximum allowed time window in micro seconds.
214 constraint_X_min_time_window_us(ro): Minimum allowed time window in micro seconds.
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/
Dmvebu-devbus.txt111 the mbus address decoding window for each of its child devices.
112 The window is created using the chip select specified in the child
114 property. For instance, in the example below the allocated decoding window
118 This address window handling is done in this mvebu-devbus only as a temporary
/linux-4.4.14/drivers/bcma/
Ddriver_mips.c291 pflash->window = BCMA_SOC_FLASH2; in bcma_core_mips_flash_detect()
301 bcma_pflash_resource.start = pflash->window; in bcma_core_mips_flash_detect()
302 bcma_pflash_resource.end = pflash->window + pflash->window_size; in bcma_core_mips_flash_detect()
Ddriver_chipcommon_sflash.c148 sflash->window = BCMA_SOC_FLASH2; in bcma_sflash_init()
/linux-4.4.14/drivers/net/ethernet/qlogic/netxen/
Dnetxen_nic_hw.c1088 u32 window) in netxen_nic_pci_set_crbwindow_128M() argument
1094 if (adapter->ahw.crb_win == window) in netxen_nic_pci_set_crbwindow_128M()
1100 writel(window, offset); in netxen_nic_pci_set_crbwindow_128M()
1102 if (window == readl(offset)) in netxen_nic_pci_set_crbwindow_128M()
1108 (window == NETXEN_WINDOW_ONE)); in netxen_nic_pci_set_crbwindow_128M()
1114 adapter->ahw.crb_win = window; in netxen_nic_pci_set_crbwindow_128M()
1163 u32 window; in netxen_nic_pci_set_crbwindow_2M() local
1168 window = CRB_HI(off); in netxen_nic_pci_set_crbwindow_2M()
1170 writel(window, addr); in netxen_nic_pci_set_crbwindow_2M()
1171 if (readl(addr) != window) { in netxen_nic_pci_set_crbwindow_2M()
[all …]
/linux-4.4.14/Documentation/arm/
DIXP4xx67 3a. Limited inbound PCI window
74 3b. Limited outbound PCI window
78 1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB).
92 of the PCI window.
/linux-4.4.14/drivers/net/slip/
Dslhc.c374 if((deltaS = ntohs(th->window) - ntohs(oth->window)) != 0){ in slhc_compress()
567 thp->window = htons( ntohs(thp->window) + x); in slhc_uncompress()
/linux-4.4.14/include/linux/
Dlapb.h42 unsigned int window; member
/linux-4.4.14/Documentation/development-process/
D2.Process32 cycle, the "merge window" is said to be open. At that time, code which is
40 merge window do not come out of thin air; they have been collected, tested,
44 The merge window lasts for approximately two weeks. At the end of this
45 time, Linus Torvalds will declare that the window is closed and release the
47 for example, the release which happens at the end of the merge window will
55 features outside of the merge window tend to get an unfriendly reception.
56 As a general rule, if you miss the merge window for a given feature, the
72 January 18 2.6.38-rc1, merge window closes
94 worse; the pile of changes waiting for the next merge window will grow
224 When the merge window opens, top-level maintainers will ask Linus to "pull"
[all …]
/linux-4.4.14/arch/cris/boot/compressed/
Dmisc.c55 static uch window[WSIZE]; /* Sliding window buffer */ variable
205 in = window; in flush_window()
/linux-4.4.14/init/
Ddo_mounts_rd.c324 static long __init compr_flush(void *window, unsigned long outcnt) in compr_flush() argument
326 long written = sys_write(crd_outfd, window, outcnt); in compr_flush()
/linux-4.4.14/Documentation/devicetree/bindings/pwm/
Dpxa-pwm.txt11 length covers only the register window for one PWM output, not that of the
/linux-4.4.14/drivers/nvdimm/
DKconfig10 namespaces (/dev/pmemX) and BLK (sliding mmio window(s))
39 tristate "BLK: Block data window (aperture) device support"
/linux-4.4.14/arch/arm/kernel/
Dbios32.c416 struct resource_entry *window; in pcibios_init_resources() local
423 resource_list_for_each_entry(window, &sys->resources) in pcibios_init_resources()
424 if (resource_type(window->res) == IORESOURCE_IO) in pcibios_init_resources()
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_hw.c1168 u32 window; in qlcnic_pci_set_crbwindow_2M() local
1173 window = CRB_HI(off); in qlcnic_pci_set_crbwindow_2M()
1174 if (window == 0) { in qlcnic_pci_set_crbwindow_2M()
1179 writel(window, addr); in qlcnic_pci_set_crbwindow_2M()
1180 if (readl(addr) != window) { in qlcnic_pci_set_crbwindow_2M()
1184 window, off); in qlcnic_pci_set_crbwindow_2M()
1263 u32 window, u64 off, u64 *data, int op) in qlcnic_pci_mem_access_direct() argument
1270 writel(window, adapter->ahw->ocm_win_crb); in qlcnic_pci_mem_access_direct()
/linux-4.4.14/drivers/isdn/mISDN/
Dlayer2.h65 u_int window; member
Dlayer2.c387 return (p1 < l2->window) && !test_bit(FLG_PEER_BUSY, &l2->flag); in cansend()
616 l2->sow = (l2->sow + 1) % l2->window; in setva()
1179 p1 = (p1 + l2->sow) % l2->window; in invoke_retransmission()
1509 p1 = (p1 + l2->sow) % l2->window; in l2_pull_iqueue()
2145 l2->window = 7; in create_l2()
2147 l2->window = 1; in create_l2()
2170 l2->window = 7; in create_l2()
2172 l2->window = 1; in create_l2()
2190 l2->window = 7; in create_l2()
/linux-4.4.14/scripts/kconfig/
Dgconf.c112 void replace_button_icon(GladeXML * xml, GdkDrawable * window, in replace_button_icon() argument
120 pixmap = gdk_pixmap_create_from_xpm_d(window, &mask, in replace_button_icon()
172 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
174 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
176 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
474 if (widget->window == NULL) in on_window1_size_request()
477 gdk_window_get_size(widget->window, &w, &h); in on_window1_size_request()
/linux-4.4.14/drivers/scsi/qla4xxx/
Dql4_nx.c609 int window; in qla4_82xx_pci_set_window() local
615 window = MN_WIN(addr); in qla4_82xx_pci_set_window()
616 ha->ddr_mn_window = window; in qla4_82xx_pci_set_window()
618 QLA82XX_PCI_CRBSPACE, window); in qla4_82xx_pci_set_window()
621 if ((win_read << 17) != window) { in qla4_82xx_pci_set_window()
624 __func__, window, win_read); in qla4_82xx_pci_set_window()
636 window = OCM_WIN(addr); in qla4_82xx_pci_set_window()
637 ha->ddr_mn_window = window; in qla4_82xx_pci_set_window()
639 QLA82XX_PCI_CRBSPACE, window); in qla4_82xx_pci_set_window()
642 temp1 = ((window & 0x1FF) << 7) | in qla4_82xx_pci_set_window()
[all …]
/linux-4.4.14/include/net/
Dlapb.h97 unsigned char window; member
Dnetrom.h69 unsigned char state, condition, bpqext, window; member
/linux-4.4.14/include/net/iucv/
Daf_iucv.h71 u16 window; member
/linux-4.4.14/Documentation/devicetree/bindings/iio/accel/
Dlis302.txt34 - st,click-window: click window, from 0 to 255 msec with
/linux-4.4.14/tools/perf/scripts/python/
Dcall-graph-from-postgresql.py323 window = MainWindow(db, dbname) variable
324 window.show()
/linux-4.4.14/lib/
Ddecompress_inflate.c127 WS(strm)->inflate_state.window = NULL; in __gunzip()
/linux-4.4.14/drivers/net/wan/
Dsdla.c438 long window; in sdla_cmd() local
441 window = flp->type == SDLA_S508 ? SDLA_508_CMD_BUF : SDLA_502_CMD_BUF; in sdla_cmd()
442 cmd_buf = (struct sdla_cmd *)(dev->mem_start + (window & SDLA_ADDR_MASK)); in sdla_cmd()
448 SDLA_WINDOW(dev, window); in sdla_cmd()
468 SDLA_WINDOW(dev, window); in sdla_cmd()
478 SDLA_WINDOW(dev, window); in sdla_cmd()
/linux-4.4.14/drivers/net/ethernet/sfc/
Dptp.c212 u32 window; /* Derived: end - start, allowing for wrap */ member
701 timeset->window = end_ns - start_ns; in efx_ptp_read_timeset()
739 s32 window, corrected; in efx_ptp_process_times() local
749 window = ptp->timeset[i].window; in efx_ptp_process_times()
750 corrected = window - wait.tv_nsec; in efx_ptp_process_times()
761 if (window < SYNCHRONISATION_GRANULARITY_NS) { in efx_ptp_process_times()
/linux-4.4.14/drivers/staging/speakup/
Dspkguide.txt748 "highlight tracking" and "read window."
757 tracking are: "cursoring on", "highlight tracking", "read window",
768 With the "read window" variety of cursor tracking, you can limit the text
769 that Speakup speaks by specifying a window of interest on the screen.
772 the contents of the window. This is especially helpful when you are hearing
780 each time you move, so you can silence it by specifying a window. Find
781 the last line of text on the screen. Clear the current window by pressing
784 define a one-line window. The boundaries of the window are the
787 says "read window." Move through your history using your arrow keys.
1083 speakup + f2 -- Set the bounds of the window.
[all …]
/linux-4.4.14/drivers/net/ethernet/3com/
D3c59x.c658 int window; /* Register window */ member
661 static void window_set(struct vortex_private *vp, int window) in window_set() argument
663 if (window != vp->window) { in window_set()
664 iowrite16(SelectWindow + window, vp->ioaddr + EL3_CMD); in window_set()
665 vp->window = window; in window_set()
671 window_read ## size(struct vortex_private *vp, int window, int addr) \
676 window_set(vp, window); \
683 int window, int addr) \
687 window_set(vp, window); \
1178 vp->window = -1; in vortex_probe1()
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/fsl/
Difc.txt25 the entire access window as configured.
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/ti/
Demif.txt34 supports read idle window programming
/linux-4.4.14/include/net/irda/
Dirlap.h178 int window; /* Nr of I-frames allowed to send */ member
/linux-4.4.14/include/linux/bcma/
Dbcma_driver_chipcommon.h577 u32 window; member
584 u32 window; member
/linux-4.4.14/Documentation/s390/
D3270.txt28 another 3270 emulator, started from an xterm window on your PC or
69 1. Bring up an x3270 window.
70 2. Use the DIAL command in that window.
132 1. Bring up an x3270 window, or use an actual hardware 3278 or
/linux-4.4.14/Documentation/fb/
Dvesafb.txt124 interface. The visible screen is just a window of the
126 start of the window.
Duvesafb.txt60 interface. The visible screen is just a window of the
62 start of the window. This option is available on x86
/linux-4.4.14/drivers/input/
DKconfig128 it as a mouse then the mousedev driver needs to know the X window
138 it as a mouse then the mousedev driver needs to know the X window
/linux-4.4.14/Documentation/rapidio/
Dtsi721.txt12 destination IDs without need for changes in outbound window translation.
/linux-4.4.14/Documentation/devicetree/bindings/mtd/
Ddavinci-nand.txt16 - offset and length for the access window.
/linux-4.4.14/net/iucv/
Daf_iucv.c336 phs_hdr->window = iucv->msglimit; in afiucv_hs_send()
339 phs_hdr->window = confirm_recv; in afiucv_hs_send()
1956 if (!trans_hdr->window) in afiucv_hs_callback_syn()
1959 niucv->msglimit_peer = trans_hdr->window; in afiucv_hs_callback_syn()
1969 trans_hdr->window = niucv->msglimit; in afiucv_hs_callback_syn()
1998 iucv->msglimit_peer = trans_hdr->window; in afiucv_hs_callback_synack()
2063 atomic_sub(trans_hdr->window, &iucv->msg_sent); in afiucv_hs_callback_win()
/linux-4.4.14/arch/arm/mach-ixp4xx/
DKconfig205 1) A direct mapped window from 0x48000000 to 0x4BFFFFFF (64MB).
219 case due to the indirect nature of the PCI window.
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/
Den_rx.c128 tcp->window = cqe->lro_tcp_win; in mlx5e_lro_update_hdr()
/linux-4.4.14/Documentation/video4linux/bttv/
DPROBLEMS49 - Some popup windows (e.g. of the window manager) are not refreshed.
/linux-4.4.14/drivers/memory/
DKconfig100 physical addresses that mapped by no local access window
/linux-4.4.14/Documentation/frv/
Dconfiguring.txt50 window for the use as consistent DMA memory (mainly for PCI). At least a
/linux-4.4.14/drivers/powercap/
Dintel_rapl.c497 u64 window) in set_time_window() argument
506 rapl_write_data_raw(rd, TIME_WINDOW1, window); in set_time_window()
509 rapl_write_data_raw(rd, TIME_WINDOW2, window); in set_time_window()
/linux-4.4.14/include/net/bluetooth/
Dhci.h1167 __le16 window; member
1173 __le16 window; member
1336 __le16 window; member

12