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

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
SPVRemapper.h 249 bool isMapped(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); }
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 249 bool isMapped(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); }
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 126 milliseconds