/src/sys/dev/mvme/ |
vme_two_isr.c | 252 int bitoff; local in function:vmetwo_intr_establish 277 bitoff = vec - VME2_VECTOR_BASE; 285 bitoff = lvl - 1; 305 iloffset = VME2_ILOFFSET_FROM_VECTOR(bitoff) + 307 ilshift = VME2_ILSHIFT_FROM_VECTOR(bitoff); 317 VME2_LOCAL_INTERRUPT(bitoff)); 321 reg |= VME2_LOCAL_INTERRUPT(bitoff); 328 iloffset = VME2_ILOFFSET_FROM_VECTOR(bitoff) + 330 ilshift = VME2_ILSHIFT_FROM_VECTOR(bitoff); 349 int bitoff; local in function:vmetwo_intr_disestablish [all...] |
vme_two_isr.c | 252 int bitoff; local in function:vmetwo_intr_establish 277 bitoff = vec - VME2_VECTOR_BASE; 285 bitoff = lvl - 1; 305 iloffset = VME2_ILOFFSET_FROM_VECTOR(bitoff) + 307 ilshift = VME2_ILSHIFT_FROM_VECTOR(bitoff); 317 VME2_LOCAL_INTERRUPT(bitoff)); 321 reg |= VME2_LOCAL_INTERRUPT(bitoff); 328 iloffset = VME2_ILOFFSET_FROM_VECTOR(bitoff) + 330 ilshift = VME2_ILSHIFT_FROM_VECTOR(bitoff); 349 int bitoff; local in function:vmetwo_intr_disestablish [all...] |
/src/sys/arch/hpcmips/vr/ |
vr4181giu.c | 269 int bitoff; local in function:vr4181giu_intr_establish 345 bitoff = (port & 0x7) << 1; 348 r &= ~(0x3 << bitoff); 349 r |= (VR4181GIU_MODE_IN | VR4181GIU_MODE_GPIO) << bitoff; 356 r &= ~(0x3 << bitoff); 357 r |= raw_intr_type << bitoff;
|
vr4181giu.c | 269 int bitoff; local in function:vr4181giu_intr_establish 345 bitoff = (port & 0x7) << 1; 348 r &= ~(0x3 << bitoff); 349 r |= (VR4181GIU_MODE_IN | VR4181GIU_MODE_GPIO) << bitoff; 356 r &= ~(0x3 << bitoff); 357 r |= raw_intr_type << bitoff;
|
/src/common/lib/libc/gen/ |
ptree.c | 143 const pt_node_t *ptn, pt_bitoff_t bitoff, pt_bitlen_t bitlen) 146 bitoff, bitlen, pt->pt_context); 200 /* set branch bitlen and bitoff in one step. */ 612 pt_bitoff_t bitoff = mask_len; local in function:ptree_insert_mask_node 621 if (!ptree_matchnode(pt, target, NULL, UINT_MAX, &bitoff, &slot)) 638 pt_bitoff_t bitoff; local in function:ptree_find_filtered_node 644 bitoff = 0; 659 if (bitoff < branch_bitoff) { 660 if (!ptree_matchkey(pt, key, ptn, bitoff, branch_bitoff - bitoff)) { 823 pt_bitoff_t bitoff; local in function:ptree_remove_node 1135 const pt_bitoff_t bitoff = PTN_BRANCH_BITOFF(ptn); local in function:ptree_check_branch [all...] |
ptree.c | 143 const pt_node_t *ptn, pt_bitoff_t bitoff, pt_bitlen_t bitlen) 146 bitoff, bitlen, pt->pt_context); 200 /* set branch bitlen and bitoff in one step. */ 612 pt_bitoff_t bitoff = mask_len; local in function:ptree_insert_mask_node 621 if (!ptree_matchnode(pt, target, NULL, UINT_MAX, &bitoff, &slot)) 638 pt_bitoff_t bitoff; local in function:ptree_find_filtered_node 644 bitoff = 0; 659 if (bitoff < branch_bitoff) { 660 if (!ptree_matchkey(pt, key, ptn, bitoff, branch_bitoff - bitoff)) { 823 pt_bitoff_t bitoff; local in function:ptree_remove_node 1135 const pt_bitoff_t bitoff = PTN_BRANCH_BITOFF(ptn); local in function:ptree_check_branch [all...] |
/src/sys/dev/nvmm/x86/ |
nvmm_x86_svm.c | 1768 uint8_t bitoff; local in function:svm_vcpu_msr_allow 1783 bitoff = (msr & 0x3) << 1; 1786 bitmap[byte] &= ~(SVM_MSRBM_READ << bitoff); 1789 bitmap[byte] &= ~(SVM_MSRBM_WRITE << bitoff);
|
nvmm_x86_svm.c | 1768 uint8_t bitoff; local in function:svm_vcpu_msr_allow 1783 bitoff = (msr & 0x3) << 1; 1786 bitmap[byte] &= ~(SVM_MSRBM_READ << bitoff); 1789 bitmap[byte] &= ~(SVM_MSRBM_WRITE << bitoff);
|
nvmm_x86_vmx.c | 2463 uint8_t bitoff; local in function:vmx_vcpu_msr_allow 2475 bitoff = (msr & 0x7); 2478 bitmap[byte] &= ~__BIT(bitoff); 2481 bitmap[2048 + byte] &= ~__BIT(bitoff); 3259 #define CTLS_ONE_ALLOWED(msrval, bitoff) \ 3260 ((msrval & __BIT(32 + bitoff)) != 0) 3261 #define CTLS_ZERO_ALLOWED(msrval, bitoff) \ 3262 ((msrval & __BIT(bitoff)) == 0)
|
nvmm_x86_vmx.c | 2463 uint8_t bitoff; local in function:vmx_vcpu_msr_allow 2475 bitoff = (msr & 0x7); 2478 bitmap[byte] &= ~__BIT(bitoff); 2481 bitmap[2048 + byte] &= ~__BIT(bitoff); 3259 #define CTLS_ONE_ALLOWED(msrval, bitoff) \ 3260 ((msrval & __BIT(32 + bitoff)) != 0) 3261 #define CTLS_ZERO_ALLOWED(msrval, bitoff) \ 3262 ((msrval & __BIT(bitoff)) == 0)
|