/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Use.h | 55 class Use { 57 Use(const Use &U) = delete; 61 void swap(Use &RHS); 82 static inline void *getAsVoidPointer(Use **P) { return P; } in getAsVoidPointer() 84 static inline Use **getFromVoidPointer(void *P) { in getFromVoidPointer() 85 return (Use **)P; in getFromVoidPointer() 93 ~Use() { in ~Use() 101 Use(PrevPtrTag tag) { Prev.setInt(tag); } in Use() function 118 inline const Use &operator=(const Use &RHS); 123 Use *getNext() const { return Next; } in getNext() [all …]
|
D | User.h | 73 User(Type *ty, unsigned vty, Use *, unsigned NumOps) in User() argument 127 template <int Idx, typename U> static Use &OpFrom(const U *that) { in OpFrom() 133 template <int Idx> Use &Op() { in Op() 136 template <int Idx> const Use &Op() const { in Op() 141 const Use *getHungOffOperands() const { in getHungOffOperands() 142 return *(reinterpret_cast<const Use *const *>(this) - 1); in getHungOffOperands() 145 Use *&getHungOffOperands() { return *(reinterpret_cast<Use **>(this) - 1); } in getHungOffOperands() 147 const Use *getIntrusiveOperands() const { in getIntrusiveOperands() 148 return reinterpret_cast<const Use *>(this) - NumUserOperands; in getIntrusiveOperands() 151 Use *getIntrusiveOperands() { in getIntrusiveOperands() [all …]
|
D | OperandTraits.h | 31 static Use *op_begin(SubClass* U) { in op_begin() 35 return reinterpret_cast<Use*>(U) - ARITY; in op_begin() 37 static Use *op_end(SubClass* U) { in op_end() 38 return reinterpret_cast<Use*>(U); in op_end() 69 static Use *op_begin(SubClass* U) { in op_begin() 73 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin() 75 static Use *op_end(SubClass* U) { in op_end() 76 return reinterpret_cast<Use*>(U); in op_end() 96 static Use *op_begin(User* U) { in op_begin() 99 static Use *op_end(User* U) { in op_end() [all …]
|
D | Value.h | 78 Use *UseList; 167 use_iterator_impl<Use> UI; 168 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() 202 Use &getUse() const { return *UI; } in getUse() 302 llvm::function_ref<bool(Use &U)> ShouldReplace) { in replaceUsesWithIf() 308 Use &U = *UI; in replaceUsesWithIf() 352 using use_iterator = use_iterator_impl<Use>; 353 using const_use_iterator = use_iterator_impl<const Use>; 457 void addUse(Use &U) { U.addToList(&UseList); } in addUse() 686 static Use *mergeUseLists(Use *L, Use *R, Compare Cmp) { in mergeUseLists() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Use.h | 36 class Use; variable 56 class Use { 58 Use(const Use &U) = delete; 62 void swap(Use &RHS); 70 ~Use() { in ~Use() 78 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); } in Use() function 93 inline const Use &operator=(const Use &RHS); 98 Use *getNext() const { return Next; } in getNext() 107 static Use *initTags(Use *Start, Use *Stop); 111 static void zap(Use *Start, const Use *Stop, bool del = false); [all …]
|
D | User.h | 76 User(Type *ty, unsigned vty, Use *, unsigned NumOps) in User() argument 112 template <int Idx, typename U> static Use &OpFrom(const U *that) { in OpFrom() 117 template <int Idx> Use &Op() { in Op() 120 template <int Idx> const Use &Op() const { in Op() 125 Use *&getHungOffOperands() { return *(reinterpret_cast<Use **>(this) - 1); } in getHungOffOperands() 127 Use *getIntrusiveOperands() { in getIntrusiveOperands() 128 return reinterpret_cast<Use *>(this) - NumUserOperands; in getIntrusiveOperands() 131 void setOperandList(Use *NewList) { in setOperandList() 138 Use *getOperandList() { in getOperandList() 141 const Use *getOperandList() const { in getOperandList() [all …]
|
D | OperandTraits.h | 32 static Use *op_begin(SubClass* U) { in op_begin() 33 return reinterpret_cast<Use*>(U) - ARITY; in op_begin() 35 static Use *op_end(SubClass* U) { in op_end() 36 return reinterpret_cast<Use*>(U); in op_end() 67 static Use *op_begin(SubClass* U) { in op_begin() 68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin() 70 static Use *op_end(SubClass* U) { in op_end() 71 return reinterpret_cast<Use*>(U); in op_end() 94 static Use *op_begin(User* U) { in op_begin() 97 static Use *op_end(User* U) { in op_end() [all …]
|
D | Value.h | 73 Use *UseList; 160 use_iterator_impl<Use> UI; 161 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() 195 Use &getUse() const { return *UI; } in getUse() 303 typedef use_iterator_impl<Use> use_iterator; 304 typedef use_iterator_impl<const Use> const_use_iterator; 406 void addUse(Use &U) { U.addToList(&UseList); } in addUse() 580 static Use *mergeUseLists(Use *L, Use *R, Compare Cmp) { in mergeUseLists() 581 Use *Merged; in mergeUseLists() 582 Use **Next = &Merged; in mergeUseLists() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | User.cpp | 42 static_assert(alignof(Use) >= alignof(Use::UserRef), in allocHungoffUses() 44 static_assert(alignof(Use::UserRef) >= alignof(BasicBlock *), in allocHungoffUses() 49 size_t size = N * sizeof(Use) + sizeof(Use::UserRef); in allocHungoffUses() 52 Use *Begin = static_cast<Use*>(::operator new(size)); in allocHungoffUses() 53 Use *End = Begin + N; in allocHungoffUses() 54 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); in allocHungoffUses() 55 setOperandList(Use::initTags(Begin, End)); in allocHungoffUses() 67 Use *OldOps = getOperandList(); in growHungoffUses() 69 Use *NewOps = getOperandList(); in growHungoffUses() 77 reinterpret_cast<char *>(OldOps + OldNumUses) + sizeof(Use::UserRef); in growHungoffUses() [all …]
|
D | Use.cpp | 16 void Use::swap(Use &RHS) { in swap() 40 User *Use::getUser() const { in getUser() 41 const Use *End = getImpliedUser(); in getUser() 44 : reinterpret_cast<User *>(const_cast<Use *>(End)); in getUser() 47 unsigned Use::getOperandNo() const { in getOperandNo() 56 Use *Use::initTags(Use *const Start, Use *Stop) { in initTags() 66 new (Stop) Use(tags[Done++]); in initTags() 73 new (Stop) Use(stopTag); in initTags() 77 new (Stop) Use(PrevPtrTag(Count & 1)); in initTags() 86 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() [all …]
|
/third_party/icu/icu4c/source/ |
D | runConfigureICU | 39 AIX Use the IBM XL xlclang/xlclang compilers on AIX 40 AIX/GCC Use the GNU gcc/g++ compilers on AIX 41 Cygwin Use the GNU gcc/g++ compilers on Cygwin 42 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin 43 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin 44 Cygwin/ICL Use the Intel C++ compiler on Cygwin 45 FreeBSD Use the clang/clang++ or GNU gcc/g++ compilers on FreeBSD 46 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11 47 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400 48 Linux Use the clang/clang++ or GNU gcc/g++ compilers on Linux [all …]
|
/third_party/skia/third_party/externals/icu/source/ |
D | runConfigureICU | 39 AIX Use the IBM XL xlclang/xlclang compilers on AIX 40 AIX/GCC Use the GNU gcc/g++ compilers on AIX 41 Cygwin Use the GNU gcc/g++ compilers on Cygwin 42 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin 43 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin 44 Cygwin/ICL Use the Intel C++ compiler on Cygwin 45 FreeBSD Use the clang/clang++ or GNU gcc/g++ compilers on FreeBSD 46 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11 47 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400 48 Linux Use the clang/clang++ or GNU gcc/g++ compilers on Linux [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/ |
D | runConfigureICU | 39 AIX Use the IBM Visual Age xlc_r/xlC_r compilers on AIX 40 AIX/GCC Use the GNU gcc/g++ compilers on AIX 41 Cygwin Use the GNU gcc/g++ compilers on Cygwin 42 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin 43 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin 44 Cygwin/ICL Use the Intel C++ compiler on Cygwin 45 FreeBSD Use the clang/clang++ or GNU gcc/g++ compilers on FreeBSD 46 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11 47 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400 48 Linux Use the clang/clang++ or GNU gcc/g++ compilers on Linux [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZRegisterInfo.cpp | 93 for (auto &Use : MRI->reg_nodbg_instructions(VirtReg)) in getRegAllocationHints() local 94 if (SystemZ::getTwoOperandOpcode(Use.getOpcode()) != -1) { in getRegAllocationHints() 98 if (VirtReg == Use.getOperand(0).getReg()) { in getRegAllocationHints() 99 VRRegMO = &Use.getOperand(0); in getRegAllocationHints() 100 OtherMO = &Use.getOperand(1); in getRegAllocationHints() 101 if (Use.isCommutable()) in getRegAllocationHints() 102 CommuMO = &Use.getOperand(2); in getRegAllocationHints() 103 } else if (VirtReg == Use.getOperand(1).getReg()) { in getRegAllocationHints() 104 VRRegMO = &Use.getOperand(1); in getRegAllocationHints() 105 OtherMO = &Use.getOperand(0); in getRegAllocationHints() [all …]
|
/third_party/pixman/ |
D | meson_options.txt | 24 description : 'Use Loongson MMI intrinsic optimized paths', 29 description : 'Use X86 MMX intrinsic optimized paths', 34 description : 'Use X86 SSE2 intrinsic optimized paths', 39 description : 'Use X86 SSSE3 intrinsic optimized paths', 44 description : 'Use PPC VMX/Altivec intrinsic optimized paths', 49 description : 'Use ARMv6 SIMD intrinsic optimized paths', 54 description : 'Use ARM NEON intrinsic optimized paths', 59 description : 'Use ARM IWMMXT intrinsic optimized paths', 65 description : 'Use ARM IWMMXT2 intrinsic instead of IWMMXT', 70 description : 'Use MIPS32 DSPr2 intrinsic optimized paths', [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | examples_test.cc | 24 void Use(T) {} in Use() function 32 Use(elem); in TEST() 36 Use(dice_roll); in TEST() 40 Use(byte); in TEST() 44 Use(fraction); in TEST() 48 Use(coin_toss); in TEST() 52 Use(file_size); in TEST()
|
/third_party/abseil-cpp/absl/random/ |
D | examples_test.cc | 24 void Use(T) {} in Use() function 32 Use(elem); in TEST() 36 Use(dice_roll); in TEST() 40 Use(byte); in TEST() 44 Use(fraction); in TEST() 48 Use(coin_toss); in TEST() 52 Use(file_size); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTX.td | 61 "Use PTX version 3.2">; 63 "Use PTX version 4.0">; 65 "Use PTX version 4.1">; 67 "Use PTX version 4.2">; 69 "Use PTX version 4.3">; 71 "Use PTX version 5.0">; 73 "Use PTX version 6.0">; 75 "Use PTX version 6.1">; 77 "Use PTX version 6.3">; 79 "Use PTX version 6.4">;
|
/third_party/boost/tools/build/src/tools/features/ |
D | stdlib-feature.jam | 16 `native`::: Use compiler's default. 17 `gnu`::: Use GNU Standard Library (a.k.a. pass:[libstdc++]) with the old ABI. 18 `gnu11`::: Use GNU Standard Library with the new ABI. 19 `libc++`::: Use LLVM pass:[libc++]. 20 `sun-stlport`::: Use the STLport implementation of the standard library 22 `apache`::: Use the Apache stdcxx version 4 C++ standard library provided with
|
/third_party/curl/docs/cmdline-opts/ |
D | tls-max.d | 19 Use up to recommended TLS version. 21 Use up to TLSv1.0. 23 Use up to TLSv1.1. 25 Use up to TLSv1.2. 27 Use up to TLSv1.3.
|
/third_party/vk-gl-cts/external/openglcts/docs/specs/ |
D | CTS_ARB_sparse_texture.txt | 55 - Use TexParameter* function to set TEXTURE_SPARSE_ARB parameter 86 Use TexStorage* for all targets and sized internal formats 92 - Use TexParameter* function to set TEXTURE_SPARSE_ARB parameter 96 - Use TexParameter* function to set VIRTUAL_PAGE_SIZE_INDEX_ARB 100 - Use TexStorage* on a texture for which TEXTURE_SPARSE_ARB parameter 104 - Use TexStorage* on a texture for which 119 - Use TexStorage* on a texture for which TEXTURE_SPARSE_ARB parameter 149 - Use TexPageCommitmentARB with <xoffset> + <width> or 153 - Use TexPageCommitmentARB with <zoffset> + <depth> greater than: 162 - Use TexPageCommitmentARB with <width> that is not an integer [all …]
|
/third_party/curl/m4/ |
D | xc-val-flgs.m4 | 75 AC_MSG_NOTICE([$xc_bad_var_msg macro definitions. Use CPPFLAGS for: $xc_word]) 78 AC_MSG_NOTICE([$xc_bad_var_msg macro suppressions. Use CPPFLAGS for: $xc_word]) 81 AC_MSG_NOTICE([$xc_bad_var_msg include directories. Use CPPFLAGS for: $xc_word]) 84 AC_MSG_NOTICE([$xc_bad_var_msg libraries. Use LIBS for: $xc_word]) 117 AC_MSG_NOTICE([$xc_bad_var_msg library runtime directories. Use LDFLAGS for: $xc_word]) 120 AC_MSG_NOTICE([$xc_bad_var_msg library directories. Use LDFLAGS for: $xc_word]) 123 AC_MSG_NOTICE([$xc_bad_var_msg libraries. Use LIBS for: $xc_word]) 165 AC_MSG_NOTICE([$xc_bad_var_msg macro definitions. Use CPPFLAGS for: $xc_word]) 168 AC_MSG_NOTICE([$xc_bad_var_msg macro suppressions. Use CPPFLAGS for: $xc_word]) 171 AC_MSG_NOTICE([$xc_bad_var_msg include directories. Use CPPFLAGS for: $xc_word]) [all …]
|
/third_party/node/deps/cares/m4/ |
D | xc-val-flgs.m4 | 75 AC_MSG_NOTICE([$xc_bad_var_msg macro definitions. Use CPPFLAGS for: $xc_word]) 78 AC_MSG_NOTICE([$xc_bad_var_msg macro suppressions. Use CPPFLAGS for: $xc_word]) 81 AC_MSG_NOTICE([$xc_bad_var_msg include directories. Use CPPFLAGS for: $xc_word]) 84 AC_MSG_NOTICE([$xc_bad_var_msg libraries. Use LIBS for: $xc_word]) 117 AC_MSG_NOTICE([$xc_bad_var_msg library runtime directories. Use LDFLAGS for: $xc_word]) 120 AC_MSG_NOTICE([$xc_bad_var_msg library directories. Use LDFLAGS for: $xc_word]) 123 AC_MSG_NOTICE([$xc_bad_var_msg libraries. Use LIBS for: $xc_word]) 165 AC_MSG_NOTICE([$xc_bad_var_msg macro definitions. Use CPPFLAGS for: $xc_word]) 168 AC_MSG_NOTICE([$xc_bad_var_msg macro suppressions. Use CPPFLAGS for: $xc_word]) 171 AC_MSG_NOTICE([$xc_bad_var_msg include directories. Use CPPFLAGS for: $xc_word]) [all …]
|
/third_party/icu/docs/ide4c/vscode/ |
D | launch.json | 14 "name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx. 30 "MIMode": "gdb", // Use "lldb" for mac osx. 47 "name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx. 61 "MIMode": "gdb", // Use "lldb" for mac osx. 78 "name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx. 92 "MIMode": "gdb", // Use "lldb" for mac osx.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonOptimizeSZextends.cpp | 79 Instruction* Use = cast<Instruction>(*UI); in runOnFunction() local 80 SExtInst* SI = new SExtInst(&Arg, Use->getType()); in runOnFunction() 82 (EVT::getEVT(Use->getType()))); in runOnFunction() 84 Use->replaceAllUsesWith(SI); in runOnFunction() 87 Use->eraseFromParent(); in runOnFunction() 133 const Use &TheUse = UI.getUse(); in runOnFunction()
|