Home | History | Annotate | Download | only in adosfs

Lines Matching refs:adprot

101 adunixprot(int adprot)
103 if (adprot & 0xc000ee00) {
104 adprot = (adprot & 0xee0e) >> 1;
105 return (((adprot & 0x7) << 6) |
106 ((adprot & 0x700) >> 5) |
107 ((adprot & 0x7000) >> 12));
110 adprot = (adprot >> 1) & 0x7;
111 return((adprot << 6) | (adprot << 3) | adprot);