Home
last modified time | relevance | path

Searched refs:bitValue (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/libc/utils/FPUtil/x86_64/
DFEnv.h258 uint16_t bitValue = in getRound() local
260 switch (bitValue) { in getRound()
275 uint16_t bitValue; in setRound() local
278 bitValue = internal::RoundingControlValue::ToNearest; in setRound()
281 bitValue = internal::RoundingControlValue::Downward; in setRound()
284 bitValue = internal::RoundingControlValue::Upward; in setRound()
287 bitValue = internal::RoundingControlValue::TowardZero; in setRound()
293 uint16_t x87Value = bitValue << internal::X87RoundingControlBitPosition; in setRound()
300 uint32_t mxcsrValue = bitValue << internal::MXCSRRoundingControlBitPosition; in setRound()
/external/gptfdisk/
Dattributes.cc109 uint64_t bitValue; in ChangeAttributes() local
120 bitValue = UINT64_C(1) << response; // Find the integer value of the bit in ChangeAttributes()
121 if (bitValue & attributes) { // bit is set in ChangeAttributes()
122 attributes &= ~bitValue; // so unset it in ChangeAttributes()
125 attributes |= bitValue; // so set it in ChangeAttributes()