Searched refs:mBits (Results 1 - 4 of 4) sorted by relevance

/prebuilts/ndk/current/sources/third_party/shaderc/third_party/glslang/SPIRV/
H A DSPVRemapper.h247 static const int mBits = sizeof(bits_t) * 4; member in class:spv::spirvbin_t
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/current/sources/third_party/vulkan/glslang/SPIRV/
H A DSPVRemapper.h247 static const int mBits = sizeof(bits_t) * 4; member in class:spv::spirvbin_t
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/shaderc/third_party/glslang/SPIRV/
H A DSPVRemapper.h247 static const int mBits = sizeof(bits_t) * 4; member in class:spv::spirvbin_t
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/
H A DSPVRemapper.h247 static const int mBits = sizeof(bits_t) * 4; member in class:spv::spirvbin_t
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; }

Completed in 42 milliseconds