/src/usr.bin/chflags/ |
chflags.c | 67 int Hflag, Lflag, Rflag, ch, fts_options, dflag, hflag, oct, rval; local in function:main 126 oct = 1; 131 oct = 0; 180 if (oct)
|
/src/sys/arch/dreamcast/dev/microcode/ |
aica_arm.c | 125 int oct; local in function:rate2reg 128 for (oct = 7; oct >= -8 && rate < base; oct--) 132 return (oct << 11) & 0xf800; 150 oct++; 164 return ((oct << 11) & 0xf800) + fns;
|
/src/sys/arch/x68k/dev/ |
opmbell.c | 368 int i, oct; local in function:bell_pitchtokey 372 for (oct = -1; i > 0; i >>= 1, oct++) 375 i = (pitch * 16 - (440 * (1 << oct))) / (1 << oct); 376 key = (oct << 12) + note[i];
|
/src/sys/dev/nvmm/x86/ |
nvmm_x86_svm.c | 2131 size_t i, oct, bit; local in function:svm_asid_alloc 2136 oct = i / 8; 2139 if (svm_asidmap[oct] & __BIT(bit)) { 2143 svm_asidmap[oct] |= __BIT(bit); 2163 size_t oct, bit; local in function:svm_asid_free 2169 oct = vmcb->ctrl.guest_asid / 8; 2173 svm_asidmap[oct] &= ~__BIT(bit);
|
nvmm_x86_vmx.c | 2857 size_t i, oct, bit; local in function:vmx_asid_alloc 2862 oct = i / 8; 2865 if (vmx_asidmap[oct] & __BIT(bit)) { 2871 vmx_asidmap[oct] |= __BIT(bit); 2885 size_t oct, bit; local in function:vmx_asid_free 2890 oct = asid / 8; 2894 vmx_asidmap[oct] &= ~__BIT(bit);
|