/llvm-project/offload/test/offloading/ |
H A D | ompx_saxpy_mixed.c | 36 int gid = tid + bid * tdim; in main() local 37 if (gid < N) in main() 38 Y[gid] = a * X[gid] + Y[gid]; in main()
|
H A D | ompx_coords.c | 34 int gid = tid + bid * tdim; in main() local 35 if (gid < N) { in main() 36 X[gid].tid = tid; in main() 37 X[gid].bid = bid; in main() 38 X[gid].tdim = tdim; in main()
|
H A D | bug51982.c | 14 for (int gid = 0; gid < nxyz; gid++) { in main() local
|
H A D | bug64959_compile_only.c | 17 for (int gid = 0; gid < nxyz; gid++) { in main() local
|
H A D | bug64959.c | 37 for (int gid = 0; gid < nxyz; gid++) { in main() local
|
/llvm-project/llvm/test/tools/obj2yaml/Archives/ |
H A D | regular.yaml | 31 # MULTIPLE-NEXT: GID: '3' 38 # MULTIPLE-NEXT: GID: '6' 45 # MULTIPLE-NEXT: GID: '' 57 GID: '3' 65 GID: '6' 75 GID: '' 84 GID: '0'
|
/llvm-project/llvm/test/DebugInfo/X86/ |
H A D | dbg-value-list-dag-combine.ll | 4 ;; hand. The debug nodes for idx and gid are transferred to new nodes via 9 ; CHECK-DAG: ![[gid:[0-9]+]] = !DILocalVariable(name: "gid", 14 ; CHECK: DBG_VALUE_LIST ![[gid]], !DIExpression(DW_OP_LLVM_arg, 0, DW_OP_stack_value), 50 !9 = !DILocalVariable(name: "gid", line: 3, scope: !10, file: !1, type: !6)
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/altera/ |
H A D | single-work-item-barrier.cpp | 33 int gid = get_global_id(0); in success_barrier_both_ids() local 61 int gid = get_global_id(0); in success_nokernel_barrier_both_ids() local 93 int gid = get_global_id(0); in success_barrier_both_ids() local 121 int gid = get_global_id(0); in success_nokernel_barrier_both_ids() local 181 int gid = get_global_id(0); in success_barrier_both_ids() local 209 int gid = get_global_id(0); in success_nokernel_barrier_both_ids() local 269 int gid = get_global_id(0); in success_barrier_both_ids() local 297 int gid = get_global_id(0); in success_nokernel_barrier_both_ids() local
|
/llvm-project/lldb/source/API/ |
H A D | SBAttachInfo.cpp | 185 void SBAttachInfo::SetGroupID(uint32_t gid) { in SetGroupID() argument 186 LLDB_INSTRUMENT_VA(this, gid); in SetGroupID() 188 m_opaque_sp->SetGroupID(gid); in SetGroupID() 221 void SBAttachInfo::SetEffectiveGroupID(uint32_t gid) { in SetEffectiveGroupID() argument 222 LLDB_INSTRUMENT_VA(this, gid); in SetEffectiveGroupID() 224 m_opaque_sp->SetEffectiveGroupID(gid); in SetEffectiveGroupID()
|
/llvm-project/llvm/test/tools/yaml2obj/Archives/ |
H A D | regular.yaml | 76 GID: 'asdfgh' 87 GID: '3' 102 # RUN: FileCheck %s --check-prefix=ERROR -DFIELD="GID" -DVAL=6 117 GID: '[[GID=""]]'
|
/llvm-project/lldb/unittests/Utility/ |
H A D | ProcessInstanceInfoTest.cpp | 26 std::optional<std::string> DoGetGroupName(id_t gid) override { in DoGetGroupName() argument 27 if (gid % 2) in DoGetGroupName() 28 return ("group" + llvm::Twine(gid)).str(); in DoGetGroupName() 49 gid = 3 (group3) in TEST()
|
/llvm-project/llvm/test/Transforms/IndVarSimplify/ |
H A D | widen-i32-i8ptr.ll | 27 %gid.0 = phi ptr [ null, %entry ], [ %incdec.ptr, %for.cond2106 ] 29 %incdec.ptr = getelementptr inbounds i8, ptr %gid.0, i64 1 32 store ptr %gid.0, ptr %arrayidx2115, align 8
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | UserIDResolver.h | 31 std::optional<llvm::StringRef> GetGroupName(id_t gid) { in GetGroupName() argument 32 return Get(gid, m_gid_cache, &UserIDResolver::DoGetGroupName); in GetGroupName() 41 virtual std::optional<std::string> DoGetGroupName(id_t gid) = 0;
|
H A D | ProcessInfo.h | 60 void SetGroupID(uint32_t gid) { m_gid = gid; } in SetGroupID() argument 170 void SetEffectiveGroupID(uint32_t gid) { m_egid = gid; } in SetEffectiveGroupID() argument
|
/llvm-project/lldb/source/Host/posix/ |
H A D | HostInfoPosix.cpp | 93 std::optional<std::string> DoGetGroupName(id_t gid) override; in DoGetUserName() 121 std::optional<std::string> PosixUserIDResolver::DoGetGroupName(id_t gid) { 128 if (::getgrgid_r(gid, &group_info, group_buffer, group_buffer_size, in GetGroupID() 135 group_info_ptr = ::getgrgid(gid); in GetDefaultShell() 98 DoGetGroupName(id_t gid) DoGetGroupName() argument
|
/llvm-project/llvm/lib/Object/ |
H A D | ArchiveWriter.cpp | 119 M.GID = GIDOrErr.get(); in getOldMember() 161 M.GID = Status.getGroup(); in getFile() 217 unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) { in printRestOfMemberHeader() argument 220 // The format has only 6 chars for uid and gid. Truncate if the provided in printRestOfMemberHeader() 223 printWithSpacePadding(Out, GID % 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, unsigne in printBigArchiveMemberHeader() argument [all...] |
/llvm-project/llvm/tools/obj2yaml/ |
H A D | archive2yaml.cpp | 55 C.Fields["GID"].Value = ToString(Hdr.GID); in dump() 94 char GID[6]; member
|
/llvm-project/lldb/test/API/functionalities/gdb_remote_client/ |
H A D | TestPlatformMacOSX.py | 26 …return "pid:a860;parent-pid:d2a0;real-uid:1f5;real-gid:14;effective-uid:1f5;effective-gid:14;cputy…
|
H A D | TestIOSSimulator.py | 33 …"pid:a860;parent-pid:d2a0;real-uid:1f5;real-gid:14;effective-uid:1f5;effective-gid:14;cputype:1000…
|
H A D | TestNoLocalFile.py | 75 …return "$pid:10b70;parent-pid:10b20;real-uid:1f6;real-gid:14;effective-uid:1f6;effective-gid:14;cp…
|
H A D | TestDynamicLoaderDarwin.py | 111 …return "pid:a860;parent-pid:d2a0;real-uid:1f5;real-gid:14;effective-uid:1f5;effective-gid:14;cputy…
|
/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerCommon.cpp | 376 } else if (key == "gid") { in Handle_qfProcessInfo() local 377 uint32_t gid = UINT32_MAX; in Handle_qfProcessInfo() 378 if (value.getAsInteger(0, gid)) in Handle_qfProcessInfo() 380 match_info.GetProcessInfo().SetGroupID(gid); in Handle_qfProcessInfo() 387 uint32_t gid = UINT32_MAX; in Handle_qfProcessInfo() 388 if (value.getAsInteger(0, gid)) in Handle_qfProcessInfo() 390 match_info.GetProcessInfo().SetEffectiveGroupID(gid); in Handle_qfProcessInfo() 453 // Packet format: "qGroupName:%i" where %i is the gid in Handle_qGroupName() 455 uint32_t gid = packet.GetU32(UINT32_MAX); in Handle_qGroupName() 456 if (gid ! in Handle_qGroupName() 386 uint32_t gid = UINT32_MAX; Handle_qfProcessInfo() local 454 uint32_t gid = packet.GetU32(UINT32_MAX); Handle_qGroupName() local [all...] |
/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
H A D | PlatformPOSIX.cpp | 71 uint32_t gid = UINT32_MAX) { in chown_file() argument 75 if (uid == UINT32_MAX && gid == UINT32_MAX) in chown_file() 82 if (gid != UINT32_MAX) in chown_file() 83 command.Printf(":%d", gid); in chown_file() 94 uint32_t gid) { in PutFile() argument 101 // chown uid:gid dst in PutFile() 115 if (uid == UINT32_MAX && gid == UINT32_MAX) in PutFile() 117 if (chown_file(this, dst_path.c_str(), uid, gid) != 0) in PutFile() 146 // if (chown_file(this,dst_path.c_str(),uid,gid) != 0) in PutFile() 155 return Platform::PutFile(source, destination, uid, gid); [all...] |
/llvm-project/lldb/test/Shell/Minidump/ |
H A D | memory-region-from-module.yaml | 54 Gid: 1001 1001 1001 1001 88 Gid: 1001 1001 1001 1001
|
/llvm-project/libcxx/utils/ci/vendor/android/ |
H A D | emulator-entrypoint.sh | 14 # The container's /dev/kvm has the same UID+GID as the host device. Changing the 15 # ownership inside the container doesn't affect the UID+GID on the host.
|