Searched refs:page (Results 51 - 75 of 260) sorted by relevance

1234567891011

/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Dumem.c123 struct page *page = sg_page(&chunk->page_list[i]); local
125 set_page_dirty_lock(page);
126 put_page(page);
140 struct page *page = sg_page(&chunk->page_list[i]);
142 if (object && object != page->object)
144 if (object != page->object) {
145 object = page->object;
148 vm_page_dirty(page);
[all...]
/freebsd-9.3-release/lib/libc/db/hash/
H A Dhash_page.c72 #include "page.h"
90 * This is called AFTER we have verified that there is room on the page for
113 /* Adjust page info. */
130 bp = (u_int16_t *)bufp->page;
144 char *src = bufp->page + (int)OFFSET(bp);
167 /* Finally adjust the page data */
204 ino = (u_int16_t *)(op = old_bufp->page);
205 np = new_bufp->page;
222 /* Don't switch page */
234 /* Switch page */
520 int fd, page, size, rsize; local
574 int fd, page, size, wsize; local
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dggc-page.c81 of pages. Each page can allocate objects of a single size only;
84 (`order'), and satisfied from the appropriate page.
86 Each page is recorded in a page-entry, which also maintains an
87 in-use bitmap of object positions on the page. This allows the
89 touching the page itself.
91 Each page-entry also has a context depth, which is used to track
102 Empty pages (of all orders) are kept on a single page cache list,
122 /* A two-level tree is used to look up the page-entry for a given
134 The bottommost HOST_PAGE_SIZE_BITS are ignored, since page
273 char *page; member in struct:page_entry
672 char *page = mmap (pref, size, PROT_READ | PROT_WRITE, local
676 char *page = mmap (pref, size, PROT_READ | PROT_WRITE, local
701 page_group_index(char *allocation, char *page) argument
709 set_page_group_in_use(page_group *group, char *page) argument
715 clear_page_group_in_use(page_group *group, char *page) argument
729 char *page; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/
H A Dopenbsd.h309 char *page = (char *) (((long) addr) & mask); \
312 if (mprotect (page, end - page, PROT_READ | PROT_WRITE | PROT_EXEC) < 0) \
/freebsd-9.3-release/sys/net/
H A Dbpf_zerocopy.c62 * by BPF. Memory is wired since page faults cannot be tolerated in the
110 * Release a page we've previously wired.
124 * Free an sf_buf with attached page.
137 * Free a zbuf, including its page array, sbufs, and pages. Allow partially
155 * Given a user pointer to a page of user memory, return an sf_buf for the
156 * page. Because we may be requesting quite a few sf_bufs, prefer failure to
182 * page alignment, size requirements, etc.
195 * User address must be page-aligned.
213 * Allocate the buffer and set up each page with is own sf_buf.
250 u_int count, page, poffse local
302 u_int count, moffset, page, poffset; local
[all...]
/freebsd-9.3-release/sys/dev/drm2/ttm/
H A Dttm_bo_util.c233 static int ttm_copy_io_page(void *dst, void *src, unsigned long page) argument
236 (uint32_t *) ((unsigned long)dst + (page << PAGE_SHIFT));
238 (uint32_t *) ((unsigned long)src + (page << PAGE_SHIFT));
248 unsigned long page,
251 vm_page_t d = ttm->pages[page];
257 src = (void *)((unsigned long)src + (page << PAGE_SHIFT));
272 unsigned long page,
275 vm_page_t s = ttm->pages[page];
281 dst = (void *)((unsigned long)dst + (page << PAGE_SHIFT));
306 unsigned long page; local
247 ttm_copy_io_ttm_page(struct ttm_tt *ttm, void *src, unsigned long page, vm_memattr_t prot) argument
271 ttm_copy_ttm_io_page(struct ttm_tt *ttm, void *dst, unsigned long page, vm_memattr_t prot) argument
[all...]
/freebsd-9.3-release/sbin/camcontrol/
H A Dcamcontrol.h53 void mode_edit(struct cam_device *device, int page, int page_control, int dbd,
H A Dmodeedit.c54 #define MAX_PAGENUM_LEN 10 /* Max characters in page num. */
55 #define MAX_PAGENAME_LEN 64 /* Max characters in page name. */
62 #define PAGE_CTRL_SHIFT 6 /* Bit offset to page control field. */
84 static STAILQ_HEAD(, editentry) editlist; /* List of page entries. */
117 static int load_format(const char *pagedb_path, int page);
121 static void modepage_dump(struct cam_device *device, int page,
332 /* Trim any trailing whitespace for the page name. */
353 load_format(const char *pagedb_path, int page) argument
433 * Locate the page the user is interested in, skipping
441 * A page entr
778 modepage_dump(struct cam_device *device, int page, int page_control, int dbd, int retries, int timeout) argument
813 mode_edit(struct cam_device *device, int page, int page_control, int dbd, int edit, int binary, int retry_count, int timeout) argument
[all...]
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dsati_mode_pages.h56 * @brief This file contains the mode page constants and members that are
62 // These values represent the mode page (not including header and block
63 // descriptor). The page length fields in the mode sense data are equivalent
65 // the page code byte (byte 0) and the page length byte (byte 1).
138 RETURN_PAGE page
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_uar.c33 #include <asm/page.h> /* PAGE_SHIFT */
/freebsd-9.3-release/lib/libc/db/recno/
H A Drec_seq.c69 /* Toss any page pinned across calls. */
123 mpool_put(t->bt_mp, e->page, 0);
125 t->bt_pinned = e->page;
/freebsd-9.3-release/sys/dev/drm/
H A Ddrm_vm.c64 unsigned long page = offset >> PAGE_SHIFT; local
65 unsigned long phys = dma->pagelist[page];
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_vm.c65 unsigned long page = offset >> PAGE_SHIFT; local
66 unsigned long phys = dma->pagelist[page];
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_buf.c219 struct page *page; local
223 page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)];
232 memset(page_address(page) + cpoff, 0, csize);
235 memcpy(data, page_address(page) + cpoff, csize);
238 memcpy(page_address(page) + cpoff, data, csize);
/freebsd-9.3-release/sys/ofed/include/linux/
H A Ddma-mapping.h37 #include <linux/page.h>
61 dma_addr_t (*map_page)(struct device *dev, struct page *page,
185 dma_map_page(struct device *dev, struct page *page, argument
189 return VM_PAGE_TO_PHYS(page) + offset;
/freebsd-9.3-release/sys/ofed/drivers/net/mlx4/
H A Dicm.c98 struct page *page; local
100 page = alloc_pages(gfp_mask, order);
101 if (!page)
104 sg_set_page(mem, page, PAGE_SIZE << order, 0);
238 mlx4_dbg(dev, "Mapped page at %llx to %llx for ICM.\n",
312 struct page *page = NULL; local
336 * so if we found the page, dma_handle has already
340 page
[all...]
/freebsd-9.3-release/tools/tools/vhba/mptest/
H A Dvhba_mptest.c167 uint8_t page = cdb[2] & SMS_PAGE_CODE; local
170 switch (page) {
200 if (page == SMS_ALL_PAGES_PAGE || page == SMS_FORMAT_DEVICE_PAGE) {
236 if (page == SMS_ALL_PAGES_PAGE || page == SMS_GEOMETRY_PAGE) {
273 if (page == SMS_ALL_PAGES_PAGE || page == SMS_CACHE_PAGE) {
280 if (page == SMS_ALL_PAGES_PAGE || page
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dinfttrace.c2327 pages write-protected. We must remember a page's original permissions,
2328 and we must also know when it is appropriate to restore a page's
2332 hardware-watched page is recorded in the dictionary. Each page's
2336 When hardware watchpoint is set on page X for the first time, page X
2338 hardware watchpoints are subsequently set on page X, its reference
2340 page X, its reference count is decremented. If a page's reference
2341 count drops to 0, it's permissions are restored and the page'
2459 memory_page_t *page; local
2484 memory_page_t *page; local
5160 memory_page_t *page = NULL; local
5206 remove_dictionary_entry_of_page(int pid, memory_page_t *page) argument
5319 memory_page_t *page; local
5390 memory_page_t *page; local
5448 int page; local
[all...]
/freebsd-9.3-release/sys/dev/e1000/
H A De1000_phy.c40 static u32 e1000_get_phy_addr_for_hv_page(u32 page);
694 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
696 * @page: page to set (shifted left when necessary)
698 * Sets PHY page required for PHY register access. Assumes semaphore is
702 s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page) argument
706 DEBUGOUT1("Setting page 0x%x\n", page);
710 return e1000_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
1219 /* Set PHY page
3065 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg) argument
3087 u32 page = offset >> IGP_PAGE_SHIFT; local
3147 u32 page = offset >> IGP_PAGE_SHIFT; local
3206 u16 page = (u16)(offset >> IGP_PAGE_SHIFT); local
3251 u16 page = (u16)(offset >> IGP_PAGE_SHIFT); local
3406 u16 page = BM_PHY_REG_PAGE(offset); local
3521 u16 page = BM_PHY_REG_PAGE(offset); local
3631 u16 page = BM_PHY_REG_PAGE(offset); local
3747 e1000_get_phy_addr_for_hv_page(u32 page) argument
4035 u16 page = offset >> GS40G_PAGE_SHIFT; local
4067 u16 page = offset >> GS40G_PAGE_SHIFT; local
[all...]
/freebsd-9.3-release/lib/libc/db/btree/
H A Dbt_put.c79 /* Toss any page pinned across calls. */
111 * If the key/data pair won't fit on a page, store it on overflow
112 * pages. Only put the key on the overflow page if the pair are
113 * still too big after moving the data to an overflow page.
158 * Bt_fast and __bt_search both pin the returned page.
163 h = e->page;
183 * Note, the delete may empty the page, so we need to put a
184 * new entry into the page immediately.
195 * keys permitted in the page, split the page
[all...]
/freebsd-9.3-release/tools/tools/sysdoc/
H A Dsysdoc.sh19 # creates a manual page dynamicly based on the kernel. This
27 # Set a unique date format in the produced manual page.
34 # part of our manual page.
39 This manual page has been automatically generated by
59 This manual page is automatically generated
75 produce a manual page to aid in the administration and
89 # the final 'inner circle' of our manual page.
107 # manual page. This is required before we populate it with
/freebsd-9.3-release/usr.sbin/manctl/
H A Dmanctl.sh46 # symlinks - ignore these - eg: expn is its own man page:
62 # Uncompress one page
96 echo gunzipping page $pname 1>&2
107 # its own man page !
168 # we have a page with a .so in it
183 echo inlining page $fname 1>&2
196 # If a page consists of just one line with a .so,
230 echo "removing .so's in page $pname" 1>&2
235 # its own man page !
250 # compress one page
[all...]
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_cd.c178 int page; member in struct:cd_page_sizes
268 struct cd_mode_params *data, u_int32_t page);
1935 union cd_pages *page; local
1938 page = (union cd_pages *)find_mode_page_10(
1941 page = (union cd_pages *)find_mode_page_6(
1944 return (page);
1954 if (cd_page_size_table[i].page == page_num)
2017 union cd_pages *page; local
2033 page = cdgetpage(&params);
2035 page
2113 union cd_pages *page; local
2154 union cd_pages *page; local
2483 union cd_pages *page; local
2516 union cd_pages *page; local
2548 union cd_pages *page; local
2582 union cd_pages *page; local
2614 union cd_pages *page; local
2646 union cd_pages *page; local
2676 union cd_pages *page; local
2706 union cd_pages *page; local
3407 cdgetmode(struct cam_periph *periph, struct cd_mode_params *data, u_int32_t page) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DMemory.inc26 // Contrary to what you might expect, the Windows page protection flags
78 // granularity may be larger than a single page (in practice, it is 64K)
/freebsd-9.3-release/contrib/top/
H A DMakefile.X23 # MANDIR - directory where the manual page should live

Completed in 384 milliseconds

1234567891011