HomeSort by: relevance | last modified time | path
    Searched defs:tagmask (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/uvm/
uvm_page_array.c 153 unsigned int tagmask = UVM_PAGE_DIRTY_TAG; local in function:uvm_page_array_fill
156 tagmask |= UVM_PAGE_WRITEBACK_TAG;
162 maxpages, dense, tagmask);
  /src/sys/arch/hppa/dev/
mem.c 117 uint32_t tagmask; /* 0x0a4 L2 cache tag mask */ member in struct:l2_mioc
261 uint32_t tagmask = sc->sc_l2->tagmask >> 20; local in function:memattach
262 aprint_normal(", %dMB L2 cache", tagmask + 1);
  /src/sys/dev/pci/cxgb/
cxgb_ctl_defs.h 96 unsigned int tagmask; member in struct:ulp_iscsi_info
  /src/common/lib/libc/gen/
radixtree.c 108 * RADIX_TREE_TAG_ID_MAX is 2. A set of tags is described as a bitmask tagmask,
164 entry_compose(void *p, unsigned int tagmask)
167 return (void *)((uintptr_t)p | tagmask);
171 entry_match_p(void *p, unsigned int tagmask)
178 if (tagmask == 0) {
181 return (entry_tagmask(p) & tagmask) != 0;
287 * It's illegal to call this function with tagmask 0.
291 radix_tree_empty_tagged_tree_p(struct radix_tree *t, unsigned int tagmask)
294 KASSERT(tagmask != 0);
295 return (entry_tagmask(t->t_root) & tagmask) == 0
452 const unsigned int tagmask = entry_tagmask(t->t_root); local in function:radix_tree_grow
1473 unsigned int tagmask; local in function:test2
    [all...]

Completed in 36 milliseconds