Lines Matching defs:newFlags
168 static bool isArchMatched(uint32_t newFlags, uint32_t res) {
169 if (newFlags == res)
171 if (newFlags == EF_MIPS_ARCH_32 && isArchMatched(EF_MIPS_ARCH_64, res))
173 if (newFlags == EF_MIPS_ARCH_32R2 && isArchMatched(EF_MIPS_ARCH_64R2, res))
178 if (res == newFlags)
280 uint32_t newFlags = f.flags & (EF_MIPS_ARCH | EF_MIPS_MACH);
283 if (isArchMatched(newFlags, ret))
285 if (!isArchMatched(ret, newFlags)) {
288 << getFullArchName(newFlags);
291 ret = newFlags;