Lines Matching defs:Arr
5420 static SmallVector<std::string, 4> getGNUPropertyList(ArrayRef<uint8_t> Arr) {
5424 while (Arr.size() >= 8) {
5425 uint32_t Type = *reinterpret_cast<const Elf_Word *>(Arr.data());
5426 uint32_t DataSize = *reinterpret_cast<const Elf_Word *>(Arr.data() + 4);
5427 Arr = Arr.drop_front(8);
5433 if (Arr.size() < PaddedSize) {
5439 getGNUProperty<ELFT>(Type, DataSize, Arr.take_front(PaddedSize)));
5440 Arr = Arr.drop_front(PaddedSize);
5443 if (!Arr.empty())