/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
if (mBitIndex + aBits > 8) { // Not enough bits in the current byte to write all the bits // required, we'll process what we can and continue with the left over. const uint8_t leftOverBits = mBitIndex + aBits - 8; const uint64_t leftOver = aValue & (~uint64_t(0) >> (8 - mBitIndex));
mask = aValue >> leftOverBits;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.