HomeSort by relevance Sort by last modified time
    Searched defs:mBits (Results 1 - 11 of 11) sorted by null

  /frameworks/native/libs/math/include/math/
half.h 85 CONSTEXPR half(float v) noexcept : mBits(ftoh(v)) { }
86 CONSTEXPR operator float() const noexcept { return htof(mBits); }
88 uint16_t getBits() const noexcept { return mBits.bits; }
89 unsigned int getExponent() const noexcept { return mBits.getE(); }
90 unsigned int getMantissa() const noexcept { return mBits.getM(); }
97 explicit constexpr half(Binary, uint16_t bits) noexcept : mBits(bits) { }
100 fp16 mBits;
  /external/aac/libFDK/src/
FDK_crc.cpp 257 const INT mBits
264 hCrcInfo->crcRegData[reg].maxBits = mBits;
395 * Calculate crc. Lenght depends on mBits parameter in FDKcrcStartReg() configuration.
432 int mBits = bits & 0x7; /* modulo bits */
442 if(mBits!=0) {
443 rBits -= calcCrc_Bits(&crc, hCrcInfo->crcMask, hCrcInfo->crcPoly, &bsReader, mBits );
  /frameworks/av/media/libstagefright/include/media/stagefright/
ColorConverter.h 58 void *mBits;
  /frameworks/rs/
rsComponent.h 44 uint32_t getBits() const {return mBits;}
60 uint32_t mBits;
rsElement.h 96 uint32_t getBits() const {return mBits;}
161 uint32_t mBits;
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Weekdays.java 92 private final int mBits;
96 mBits = ALL_DAYS & bits;
150 return new Weekdays(on ? (mBits | bit) : (mBits & ~bit));
171 return (mBits & bit) > 0;
177 public int getBits() { return mBits; }
182 public boolean isRepeating() { return mBits != 0; }
237 return mBits == weekdays.mBits;
242 return mBits;
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApkNdkApiReport.java 107 private String mBits;
111 mBits = bits;
119 return mBits;
GTestApiReport.java 105 private String mBits;
109 mBits = bits;
117 return mBits;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
SPVRemapper.h 247 static const int mBits = sizeof(bits_t) * 4;
249 bool isMapped(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); }
250 void setMapped(spv::Id id) { resizeMapped(id); mapped[id/mBits] |= (1LL<<(id%mBits)); }
251 void resizeMapped(spv::Id id) { if (id >= maxMappedId()) mapped.resize(id/mBits+1, 0); }
252 size_t maxMappedId() const { return mapped.size() * mBits; }
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
SPVRemapper.h 247 static const int mBits = sizeof(bits_t) * 4;
249 bool isMapped(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); }
250 void setMapped(spv::Id id) { resizeMapped(id); mapped[id/mBits] |= (1LL<<(id%mBits)); }
251 void resizeMapped(spv::Id id) { if (id >= maxMappedId()) mapped.resize(id/mBits+1, 0); }
252 size_t maxMappedId() const { return mapped.size() * mBits; }
  /external/deqp/framework/common/
tcuTexture.cpp 514 const int mBits = 9;
522 float e = deFloatPow(2.0f, (float)((int)exp - eBias - mBits));
    [all...]

Completed in 218 milliseconds