Lines Matching refs:newId
267 spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId)
269 //assert(id != spv::NoResult && newId != spv::NoResult);
279 if (newId != unmapped && newId != unused) {
292 if (isNewIdMapped(newId)) {
293 error(std::string("ID already used in module: ") + std::to_string(newId));
297 msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId));
298 setMapped(newId);
299 largestNewId = std::max(largestNewId, newId);
302 return idMapL[id] = newId;