Home
last modified time | relevance | path

Searched refs:Rc (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/openmp/libomptarget/src/
H A Dapi.cpp134 Rc = !IsHostPtr; in omp_target_is_present()
136 return Rc; in omp_target_is_present()
169 int Rc = OFFLOAD_SUCCESS; in omp_target_memcpy() local
178 Rc = OFFLOAD_FAIL; in omp_target_memcpy()
215 return Rc; in omp_target_memcpy()
245 int Rc; in omp_target_memcpy_rect() local
267 if (Rc) { in omp_target_memcpy_rect()
269 return Rc; in omp_target_memcpy_rect()
275 return Rc; in omp_target_memcpy_rect()
306 return Rc; in omp_target_associate_ptr()
[all …]
H A Dinterface.cpp98 if (Rc == OFFLOAD_SUCCESS) in __tgt_target_data_begin_mapper()
99 Rc = AsyncInfo.synchronize(); in __tgt_target_data_begin_mapper()
100 handleTargetOutcome(Rc == OFFLOAD_SUCCESS, Loc); in __tgt_target_data_begin_mapper()
147 if (Rc == OFFLOAD_SUCCESS) in __tgt_target_data_end_mapper()
148 Rc = AsyncInfo.synchronize(); in __tgt_target_data_end_mapper()
149 handleTargetOutcome(Rc == OFFLOAD_SUCCESS, Loc); in __tgt_target_data_end_mapper()
184 if (Rc == OFFLOAD_SUCCESS) in __tgt_target_data_update_mapper()
185 Rc = AsyncInfo.synchronize(); in __tgt_target_data_update_mapper()
186 handleTargetOutcome(Rc == OFFLOAD_SUCCESS, Loc); in __tgt_target_data_update_mapper()
251 if (Rc == OFFLOAD_SUCCESS) in __tgt_target_kernel()
[all …]
H A Domptarget.cpp78 int Rc = OFFLOAD_SUCCESS; in initLibrary() local
107 Rc = OFFLOAD_FAIL; in initLibrary()
118 Rc = OFFLOAD_FAIL; in initLibrary()
134 Rc = OFFLOAD_FAIL; in initLibrary()
178 if (Rc != OFFLOAD_SUCCESS) { in initLibrary()
179 return Rc; in initLibrary()
350 void *Rc = NULL; in targetAllocExplicit() local
353 Rc = malloc(Size); in targetAllocExplicit()
355 return Rc; in targetAllocExplicit()
366 return Rc; in targetAllocExplicit()
[all …]
H A Drtl.cpp115 int32_t Rc = R.init_plugin(); in loadRTLs() local
116 if (Rc != OFFLOAD_SUCCESS) { in loadRTLs()
117 DP("Unable to initialize library '%s': %u!\n", Name, Rc); in loadRTLs()
516 int Rc = target(nullptr, Device, Dtor, 0, nullptr, nullptr, nullptr, in unregisterLib() local
519 if (Rc != OFFLOAD_SUCCESS) { in unregisterLib()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.td78 // Rc - control registers
79 class Rc<bits<5> num, string n,
165 def USR_OVF : Rc<?, "usr.ovf">;
167 def USR : Rc<8, "usr", ["c8"]>, DwarfRegNum<[75]> {
173 def SA0: Rc<0, "sa0", ["c0"]>, DwarfRegNum<[67]>;
174 def LC0: Rc<1, "lc0", ["c1"]>, DwarfRegNum<[68]>;
175 def SA1: Rc<2, "sa1", ["c2"]>, DwarfRegNum<[69]>;
176 def LC1: Rc<3, "lc1", ["c3"]>, DwarfRegNum<[70]>;
177 def P3_0: Rc<4, "p3:0", ["c4"], [P0, P1, P2, P3]>,
181 def C5: Rc<5, "c5", ["c5"]>, DwarfRegNum<[72]>;
[all …]
/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/src/
H A Drtl.cpp400 hsa_status_t Rc = in createQueues() local
403 if (Rc != HSA_STATUS_SUCCESS) { in createQueues()
1606 int Rc = elf_getshdrnum(Elf, &N); in findOnlyShtHash() local
1607 if (Rc != 0) { in findOnlyShtHash()
1719 return Rc; in getSymbolInfoWithoutLoading()
1729 if (Rc == 0) { in interopGetSymbolInfo()
1761 if (Rc == 0) { in getDeviceStateBytes()
1810 if (Rc != 0) { in DeviceEnvironment()
1879 if (Rc != HSA_STATUS_SUCCESS) { in implCalloc()
2628 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_data_submit()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-rc/
H A Dllvm-rc.cpp194 enum Format { Rc, Res, Coff, Unknown }; enumerator
204 Format InputFormat = Rc;
281 .Case("rc", Rc) in parseFormat()
292 .Case(".rc", Rc) in deduceFormat()
408 if (Opts.OutputFormat == Rc) in parseWindresOptions()
741 if (Opts.InputFormat == Rc) { in main()
/llvm-project-15.0.7/openmp/libomptarget/plugins/cuda/src/
H A Drtl.cpp1627 const int32_t Rc = in __tgt_rtl_data_submit() local
1629 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_data_submit()
1653 const int32_t Rc = in __tgt_rtl_data_retrieve() local
1655 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_data_retrieve()
1694 const int32_t Rc = __tgt_rtl_data_exchange_async(SrcDevId, SrcPtr, DstDevId, in __tgt_rtl_data_exchange() local
1696 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_data_exchange()
1720 const int32_t Rc = __tgt_rtl_run_target_team_region_async( in __tgt_rtl_run_target_team_region() local
1723 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_run_target_team_region()
1750 const int32_t Rc = __tgt_rtl_run_target_region_async( in __tgt_rtl_run_target_region() local
1752 if (Rc != OFFLOAD_SUCCESS) in __tgt_rtl_run_target_region()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/
H A Dvirtual-class-destructor.rst11 `C.35 <http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual>`_
/llvm-project-15.0.7/llvm/lib/Target/CSKY/
H A DCSKYConstantIslandPass.cpp170 CPEntry(MachineInstr *Cpemi, unsigned Cpi, unsigned Rc = 0) in CPEntry()
171 : CPEMI(Cpemi), CPI(Cpi), RefCount(Rc) {} in CPEntry()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp10214 MachO::routines_command Rc = Obj->getRoutinesCommand(Command); in PrintLoadCommands() local
10215 PrintRoutinesCommand(Rc); in PrintLoadCommands()
10217 MachO::routines_command_64 Rc = Obj->getRoutinesCommand64(Command); in PrintLoadCommands() local
10218 PrintRoutinesCommand64(Rc); in PrintLoadCommands()