Home
last modified time | relevance | path

Searched refs:Decoded (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Support/
H A DConvertUTFTest.cpp178 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsLenient() local
179 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsLenient()
183 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsLenient()
185 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsLenient()
187 return std::make_pair(ErrorCode, Decoded); in ConvertUTF8ToUnicodeScalarsLenient()
195 std::vector<UTF32> Decoded(S.size(), 0); in ConvertUTF8ToUnicodeScalarsPartialLenient() local
196 UTF32 *TargetStart = Decoded.data(); in ConvertUTF8ToUnicodeScalarsPartialLenient()
200 Decoded.data() + Decoded.size(), lenientConversion); in ConvertUTF8ToUnicodeScalarsPartialLenient()
202 Decoded.resize(TargetStart - Decoded.data()); in ConvertUTF8ToUnicodeScalarsPartialLenient()
211 std::vector<unsigned> Decoded; in CheckConvertUTF8ToUnicodeScalars() local
[all …]
/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/
H A Dstack_trace_compressor.cpp62 uintptr_t Decoded = Value >> 1; in zigzagDecode() local
64 return Decoded; in zigzagDecode()
65 return ~Decoded; in zigzagDecode()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/GSYM/
H A DGSYMTest.cpp172 ASSERT_FALSE((bool)Decoded); in TestFunctionInfoDecodeError()
259 ASSERT_TRUE((bool)Decoded); in TestFunctionInfoEncodeDecode()
261 EXPECT_EQ(FI, Decoded.get()); in TestFunctionInfoEncodeDecode()
334 ASSERT_TRUE((bool)Decoded); in TestInlineInfoEncodeDecode()
346 ASSERT_FALSE((bool)Decoded); in TestInlineInfoDecodeError()
687 ASSERT_TRUE((bool)Decoded); in TestLineTableHelper()
689 EXPECT_EQ(LT, Decoded.get()); in TestLineTableHelper()
757 ASSERT_FALSE((bool)Decoded); in TestLineTableDecodeError()
845 ASSERT_FALSE((bool)Decoded); in TestHeaderDecodeError()
918 ASSERT_TRUE((bool)Decoded); in TestHeaderEncodeDecode()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp1087 Waitcnt Decoded; in decodeWaitcnt() local
1088 Decoded.VmCnt = decodeVmcnt(Version, Encoded); in decodeWaitcnt()
1089 Decoded.ExpCnt = decodeExpcnt(Version, Encoded); in decodeWaitcnt()
1090 Decoded.LgkmCnt = decodeLgkmcnt(Version, Encoded); in decodeWaitcnt()
1091 return Decoded; in decodeWaitcnt()
1124 unsigned encodeWaitcnt(const IsaVersion &Version, const Waitcnt &Decoded) { in encodeWaitcnt() argument
1125 return encodeWaitcnt(Version, Decoded.VmCnt, Decoded.ExpCnt, Decoded.LgkmCnt); in encodeWaitcnt()
H A DAMDGPUBaseInfo.h654 unsigned encodeWaitcnt(const IsaVersion &Version, const Waitcnt &Decoded);
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h309 bool Decoded = false; in Decode() local
313 Decoded = true; in Decode()
317 if (!Decoded) in Decode()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp1225 AMDGPU::Waitcnt Decoded = AMDGPU::decodeWaitcnt(IV, Imm); in fixSMEMtoVectorWriteHazards() local
1226 return (Decoded.LgkmCnt == 0); in fixSMEMtoVectorWriteHazards()