/llvm-project/lldb/test/Shell/Commands/ |
H A D | command-thread-siginfo.test | 11 # CHECK: uid = [[UID:[0-9]+]] 18 # CHECK-DAG: si_uid = [[UID]]
|
/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.cpp | 106 llvm::sys::fs::UniqueID UID) const { in getShardForUID() 107 auto Hash = llvm::hash_combine(UID.getDevice(), UID.getFile()); in getShardForUID() 122 llvm::sys::fs::UniqueID UID) const { in findEntryByUID() 124 auto It = EntriesByUID.find(UID); in findEntryByUID() 147 llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, in getOrEmplaceEntryForUID() argument 150 auto [It, Inserted] = EntriesByUID.insert({UID, nullptr}); in getOrEmplaceEntryForUID()
|
/llvm-project/llvm/lib/Object/ |
H A D | ArchiveWriter.cpp | 115 M.UID = UIDOrErr.get(); in getOldMember() 160 M.UID = Status.getUser(); in getFile() 217 unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) { in printRestOfMemberHeader() argument 222 printWithSpacePadding(Out, UID % 1000000, 6); in printRestOfMemberHeader() 233 unsigned UID, unsigned GID, unsigned Perms, in printGNUSmallMemberHeader() argument 236 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printGNUSmallMemberHeader() 242 unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) { in printBSDMemberHeader() argument 248 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, in printBSDMemberHeader() 258 unsigned UID, unsigned GID, unsigned Perms, in printBigArchiveMemberHeader() argument 268 printWithSpacePadding(Out, UID in printBigArchiveMemberHeader() [all...] |
/llvm-project/llvm/tools/obj2yaml/ |
H A D | archive2yaml.cpp | 54 C.Fields["UID"].Value = ToString(Hdr.UID); in dump() 93 char UID[6]; member
|
/llvm-project/llvm/lib/SandboxIR/ |
H A D | SandboxIR.cpp |
|
/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.h | 183 findEntryByUID(llvm::sys::fs::UniqueID UID) const; 196 getOrEmplaceEntryForUID(llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, 221 CacheShard &getShardForUID(llvm::sys::fs::UniqueID UID) const;
|
/llvm-project/llvm/include/llvm/Object/ |
H A D | ArchiveWriter.h | 24 unsigned UID = 0, GID = 0, Perms = 0644; member
|
H A D | Archive.h | 95 char UID[6]; member 125 char UID[12]; member
|
/llvm-project/clang/include/clang/Basic/ |
H A D | FileEntry.h | 317 unsigned UID = 0; // A unique (small) ID for the file. 333 unsigned getUID() const { return UID; }
|
/llvm-project/llvm/test/tools/llvm-objdump/ |
H A D | malformed-archives.test | 125 ## Check we report an error when the characters in the UID field of a member header are not all dec… 131 # BOGUS10: [[FILE]](hello.c): truncated or malformed archive (characters in UID field in archive me… 136 UID: '~97&'
|
/llvm-project/clang/lib/Basic/ |
H A D | FileManager.cpp | 346 UFE->UID = NextFileUID++; in getFileRef() 464 UFE->UID = NextFileUID++; in getVirtualFileRef() 492 BFE->UID = NextFileUID++; in getBypassFile() 626 // Add this file if it's the first one with the UID, or if its name is in GetUniqueIDMapping()
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | FileSystem.h | 161 uid_t UID, gid_t GID, off_t Size) 164 fs_st_uid(UID), fs_st_gid(GID), in basic_file_status() 243 uid_t UID, gid_t GID, off_t Size) 245 UID, GID, Size), in file_status() 165 basic_file_status(file_type Type,perms Perms,time_t ATime,uint32_t ATimeNSec,time_t MTime,uint32_t MTimeNSec,uid_t UID,gid_t GID,off_t Size) basic_file_status() argument 247 file_status(file_type Type,perms Perms,dev_t Dev,nlink_t Links,ino_t Ino,time_t ATime,uint32_t ATimeNSec,time_t MTime,uint32_t MTimeNSec,uid_t UID,gid_t GID,off_t Size) file_status() argument
|
H A D | VirtualFileSystem.h | 50 llvm::sys::fs::UniqueID UID; variable 72 Status(const Twine &Name, llvm::sys::fs::UniqueID UID, 92 llvm::sys::fs::UniqueID getUniqueID() const { return UID; } in getUniqueID()
|
/llvm-project/llvm/test/tools/llvm-libtool-darwin/ |
H A D | deterministic-library.test | 5 ## assume UID/GIDs are preserved if timestamps are preserved.
|
/llvm-project/llvm/utils/TableGen/ |
H A D | X86RecognizableInstr.h | 189 /// encoding and therefore distinct from the UID 261 InstrUID UID; 259 InstrUID UID; global() variable
|
H A D | X86RecognizableInstr.cpp | 152 UID(uid), Spec(&tables.specForUID(uid)) { in RecognizableInstr() 1012 UID, Is32Bit, OpPrefix == 0, in typeFromString() 1015 tables.setTableFields(*opcodeType, insnContext(), opcodeToSet, *filter, UID, in typeFromString()
|
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
H A D | deterministic-archive.test | 5 # assume UID/GIDs are preserved if timestamps are preserved.
|
/llvm-project/llvm/include/llvm/SandboxIR/ |
H A D | SandboxIR.h |
|
/llvm-project/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 64 : UID(Status.getUniqueID()), MTime(Status.getLastModificationTime()), in Status() 68 Status::Status(const Twine &Name, UniqueID UID, sys::TimePoint<> MTime, 71 : Name(Name.str()), UID(UID), MTime(MTime), User(User), Group(Group), in Status() 829 UniqueID UID = in InMemoryFileSystem() 834 return Status(Path, UID, llvm::sys::toTimePoint(ModificationTime), User, 2730 static std::atomic<unsigned> UID; in addEntry() 2731 unsigned ID = ++UID; 69 Status(const Twine & Name,UniqueID UID,sys::TimePoint<> MTime,uint32_t User,uint32_t Group,uint64_t Size,file_type Type,perms Perms) Status() argument 817 UniqueID UID = makeStatus() local 2717 static std::atomic<unsigned> UID; getNextVirtualUniqueID() local
|
/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.h | 143 DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, AsmPrinter *A,
|
H A D | AsmPrinter.cpp | 3028 unsigned UID) const { 3036 &MJTI, MBB, UID, OutContext); 3072 Value = MCSymbolRefExpr::create(GetJTSetSymbol(UID, MBB->getNumber()), 3078 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF, UID, OutContext); 4148 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { in emitStackMaps() 4152 Twine(UID) + "_set_" + Twine(MBBID)); in emitStackMaps() 3862 GetJTSetSymbol(unsigned UID,unsigned MBBID) const GetJTSetSymbol() argument
|
H A D | DwarfCompileUnit.cpp | 78 DwarfCompileUnit::DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, in DwarfCompileUnit() 81 : DwarfUnit(GetCompileUnitType(Kind, DW), Node, A, DW, DWU, UID) { 73 DwarfCompileUnit(unsigned UID,const DICompileUnit * Node,AsmPrinter * A,DwarfDebug * DW,DwarfFile * DWU,UnitKind Kind) DwarfCompileUnit() argument
|
/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | AsmPrinter.h | 642 MCSymbol *GetJTSetSymbol(unsigned UID, unsigned MBBID) const;
|
/llvm-project/llvm/docs/_static/ |
H A D | LoopOptWG_invite.ics | 31 UID:58h3f0kd3aooohmeii0johh23c@google.com
57 UID:58h3f0kd3aooohmeii0johh23c@google.com
|
/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 261 for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) { in GetAffectingModuleMaps() 262 OptionalFileEntryRef File = FilesByUID[UID]; in GetAffectingModuleMaps() 2193 for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) { in WriteHeaderSearch() 2194 OptionalFileEntryRef File = FilesByUID[UID]; in WriteHeaderSearch() 234 for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) { GetAffectingModuleMaps() local 2149 for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) { WriteHeaderSearch() local
|