Home
last modified time | relevance | path

Searched refs:MaxBits (Results 1 – 11 of 11) sorted by relevance

/external/libcap/cap/
Diab.go65 for c := MaxBits(); c > 0; {
204 if val >= MaxBits() {
Dcap.go279 func MaxBits() Value { func
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h57 assert(S <= MaxBits); in SmallBitVector()
115 assert(Size <= MaxBits); in resize()
120 assert(Size <= MaxBits); in reserve()
189 static constexpr SizeT MaxBits = sizeof(SmallBitVector::Bits) * CHAR_BIT; variable
/external/libcap/go/
Dcompare-cap.go286 mb := cap.MaxBits()
342 for c := cap.MaxBits(); c > 0; {
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp468 const unsigned MaxBits = 64; in convertFloatingToInteger() local
471 if (SpreadBits <= MaxBits - 3) { in convertFloatingToInteger()
480 ScalingFactor = Scaled64(1, MaxBits) / Max; in convertFloatingToInteger()
/external/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp443 const unsigned MaxBits = 64; in convertFloatingToInteger() local
446 if (SpreadBits <= MaxBits - 3) { in convertFloatingToInteger()
455 ScalingFactor = Scaled64(1, MaxBits) / Max; in convertFloatingToInteger()
/external/llvm-project/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp474 const unsigned MaxBits = 64; in convertFloatingToInteger() local
477 if (SpreadBits <= MaxBits - 3) { in convertFloatingToInteger()
486 ScalingFactor = Scaled64(1, MaxBits) / Max; in convertFloatingToInteger()
/external/llvm-project/llvm/tools/llvm-rc/
DResourceFileWriter.cpp51 static Error checkNumberFits(uint32_t Number, size_t MaxBits, in checkNumberFits() argument
53 assert(1 <= MaxBits && MaxBits <= 32); in checkNumberFits()
54 if (!(Number >> MaxBits)) in checkNumberFits()
57 Twine(MaxBits) + " bits.", in checkNumberFits()
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dstructs.h296 uint16_t MaxBits; member
Disacfix.c280 ISAC_inst->ISACenc_obj.MaxBits = 0; in WebRtcIsacfix_EncoderInit()
/external/llvm-project/clang/lib/AST/
DExprConstant.cpp12037 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in VisitBuiltinCallExpr() local
12044 ++MaxBits; in VisitBuiltinCallExpr()
12046 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr()
12047 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr()
12048 Result = APSInt(MaxBits, !IsSigned); in VisitBuiltinCallExpr()