HomeSort by: relevance | last modified time | path
    Searched refs:Join (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AMDGPUEmitPrintf.cpp 105 // actual string. We need a join block for a phi that represents the final
110 BasicBlock *Join = nullptr;
112 Join = Prev->splitBasicBlock(Builder.GetInsertPoint(),
113 "strlen.join");
116 Join = BasicBlock::Create(M->getContext(), "strlen.join",
121 Prev->getParent(), Join);
124 Prev->getParent(), Join);
130 BranchInst::Create(Join, While, CmpNull, Prev);
152 // Final join
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Threading.cpp 106 enum class JoiningPolicy { Join, Detach };
122 JoiningPolicy::Join);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Threading.inc 93 if (JP == JoiningPolicy::Join) {
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_thread_arg_retval.h 27 // class keeps data up to the detach or join, as exited thread still can be
70 void Join(uptr thread, const JoinFn& fn) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-go/
llvm-go.go 74 configpath = filepath.Join(bin, "llvm-config")
130 fmt.Println(strings.Join(components, " "))
164 path := filepath.Join(tmpgopath, "src", p.pkgpath)
172 abspath = filepath.Join(srcdir, abspath)
185 newgopath := strings.Join(newgopathlist, string(filepath.ListSeparator))
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_interceptors.cpp 295 hwasanThreadArgRetval().Join((uptr)thread, [&]() {
319 hwasanThreadArgRetval().Join((uptr)thread, [&]() {
329 hwasanThreadArgRetval().Join((uptr)thread, [&]() {
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_interceptors.cpp 481 GetThreadArgRetval().Join((uptr)thread, [&]() {
505 GetThreadArgRetval().Join((uptr)thread, [&]() {
520 GetThreadArgRetval().Join((uptr)thread, [&]() {
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Threading.inc 49 if (JP == JoiningPolicy::Join) {
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 1316 ~ThreadWithParam() override { Join(); }
1318 void Join() {
1474 void Join();
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_interceptors.cpp 287 asanThreadArgRetval().Join((uptr)thread, [&]() {
311 asanThreadArgRetval().Join((uptr)thread, [&]() {
323 asanThreadArgRetval().Join((uptr)thread, [&]() {
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-port.cc 521 Join();
524 void ThreadWithParamBase::Join() {
526 << "Failed to join the thread with error " << ::GetLastError() << ".";
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 1559 SDValue Join;
1562 Join = DAG.getNode(ISD::CONCAT_VECTORS, SL, VT, LoLoad, HiLoad);
1564 Join = DAG.getNode(ISD::INSERT_SUBVECTOR, SL, VT, DAG.getUNDEF(VT), LoLoad,
1566 Join = DAG.getNode(
1568 VT, Join, HiLoad,
1572 SDValue Ops[] = {Join, DAG.getNode(ISD::TokenFactor, SL, MVT::Other,

Completed in 29 milliseconds