HomeSort by relevance Sort by last modified time
    Searched refs:mBits (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/rs/
rsComponent.cpp 36 mBits = 0;
80 mBits = 16;
86 mBits = 16;
92 mBits = 16;
132 mBits = 256;
136 mBits = 32;
192 mBits = mTypeBits * rsHigherPow2(mVectorSize);
252 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
255 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
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;
rsElement.cpp 24 mBits = 0;
73 return mBits;
78 total += mFields[ct].e->mBits * mFields[ct].arraySize;
178 mBits = mComponent.getBits();
225 mBits = bits;
  /external/aac/libMpegTPDec/src/
tpdec_drm.cpp 108 int mBits /*!< number of bits in crc region */
117 return ( FDKcrcStartReg(&pDrm->crcInfo, hBs, mBits) );
tpdec_drm.h 119 * If mBits is positive zero padding will be used for CRC calculation, if there
120 * are less than mBits bits available.
121 * If mBits is negative no zero padding is done.
122 * If mBits is zero the memory for the buffer is allocated dynamically, the
127 * \param mBits max number of bits in crc region to be considered
134 int mBits
tpdec_adts.h 155 * If mBits is positive zero padding will be used for CRC calculation, if there
156 * are less than mBits bits available.
157 * If mBits is negative no zero padding is done.
158 * If mBits is zero the memory for the buffer is allocated dynamically, the
163 * \param mBits max number of bits in crc region to be considered
170 int mBits
tpdec_adts.cpp 106 int mBits /*!< number of bits in crc region */
113 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, 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...]
  /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/include/
FDK_crc.h 177 * Bitstream range for crc calculation can be limited or kept dynamic depending on mBits parameter.
182 * \param mBits Number of bits in crc region to be calculated.
183 * - mBits > 0: Zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * - mBits < 0: No zero padding is done.
186 * - mBits = 0: The number of bits used in crc calculation is dynamically,
195 const INT mBits
203 * on mBits parameter of FDKcrcStartReg().
  /external/aac/libMpegTPEnc/src/
tpenc_adts.h 183 * If mBits is positive zero padding will be used for CRC calculation, if there
184 * are less than mBits bits available.
185 * If mBits is negative no zero padding is done.
186 * If mBits is zero the memory for the buffer is allocated dynamically, the
191 * \param mBits limit of number of bits to be considered for the requested CRC region
198 int mBits
tpenc_adts.cpp 101 int mBits /*!< number of bits in crc region */
107 return ( FDKcrcStartReg(&pAdts->crcInfo, hBs, mBits) );
tpenc_lib.cpp 547 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits)
553 crcReg = adtsWrite_CrcStartReg(&hTpEnc->writer.adts, &hTpEnc->bitStream, mBits);
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 68 : mBits(bits),
181 uint16_t *dst_ptr = (uint16_t *)dst.mBits
184 const uint8_t *src_ptr = (const uint8_t *)src.mBits
241 uint8_t *dst_ptr = (uint8_t *)dst.mBits
245 (const uint8_t *)src.mBits + src.mCropTop * src.mStride + src.mCropLeft;
248 (const uint8_t *)src.mBits + src.mStride * src.mHeight
349 uint8_t *dst_ptr = (uint8_t *)dst.mBits
353 (const uint8_t *)src.mBits + src.mCropTop * src.mStride + src.mCropLeft;
356 (const uint8_t *)src.mBits + src.mStride * src.mHeight
431 uint16_t *dst_ptr = (uint16_t *)dst.mBits
    [all...]
  /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; }
  /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;
  /external/aac/libMpegTPEnc/include/
tpenc_lib.h 263 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
266 int transportEnc_CrcStartReg(HANDLE_TRANSPORTENC hTpEnc, int mBits);
  /frameworks/av/media/libstagefright/include/media/stagefright/
ColorConverter.h 58 void *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 );
  /external/aac/libMpegTPDec/include/
tpdec_lib.h 498 * \param mBits Size in bits of the data region. Set to 0 if it should not be of a fixed size.
502 const INT mBits );
  /external/dng_sdk/source/
dng_reference.cpp     [all...]
dng_bottlenecks.h 540 uint32 mBits);
553 uint32 mBits);
    [all...]

Completed in 395 milliseconds

1 2