reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
106 adjustBranch(Size, Fixup, Value, Ctx); 108 auto top = Value & (0xf00000 << 6); // the top four bits 109 auto middle = Value & (0x1ffff << 5); // the middle 13 bits 110 auto bottom = Value & 0x1f; // end bottom 5 bits 112 Value = (top << 6) | (middle << 3) | (bottom << 0);