/external/llvm/include/llvm/IR/ |
Use.h | 1 //===-- llvm/Use.h - Definition of the Use class ----------------*- C++ -*-===// 10 // This defines the Use class. The Use class represents the operand of an 11 // instruction or some other User instance which refers to a Value. The Use 12 // class keeps the "use list" of the referenced value up to date. 15 // to a Use without having to store a User pointer in every Use. A 17 // operands, and the low bits of one of the fields (Prev) of the Use 19 // a pointer to any Use. For details, see [all...] |
OperandTraits.h | 26 /// FixedNumOperandTraits - determine the allocation regime of the Use array 27 /// when it is a prefix to the User object, and the number of Use objects is 32 static Use *op_begin(SubClass* U) { 33 return reinterpret_cast<Use*>(U) - ARITY; 35 static Use *op_end(SubClass* U) { 36 return reinterpret_cast<Use*>(U); 61 /// VariadicOperandTraits - determine the allocation regime of the Use array 62 /// when it is a prefix to the User object, and the number of Use objects is 67 static Use *op_begin(SubClass* U) { 68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands() [all...] |
User.h | 29 /// for use of the User class 45 Use *OperandList; 52 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) 54 Use *allocHungoffUses(unsigned) const; 56 Use::zap(OperandList, OperandList + NumOperands, true); 63 Use::zap(OperandList, OperandList + NumOperands); 65 /// operator delete - free memory allocated for User and Use objects 76 template <int Idx, typename U> static Use &OpFrom(const U *that) { 81 template <int Idx> Use &Op() { 84 template <int Idx> const Use &Op() const [all...] |
/external/llvm/lib/IR/ |
User.cpp | 36 // most importantly, removing "this" from the use list of "From". 45 Use *User::allocHungoffUses(unsigned N) const { 48 size_t size = N * sizeof(Use) + sizeof(Use::UserRef); 49 Use *Begin = static_cast<Use*>(::operator new(size)); 50 Use *End = Begin + N; 51 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); 52 return Use::initTags(Begin, End); 60 void *Storage = ::operator new(s + sizeof(Use) * Us) [all...] |
Use.cpp | 1 //===-- Use.cpp - Implement the Use class ---------------------------------===// 10 // This file implements the algorithm for finding the User of a Use. 20 // Use swap Implementation 23 void Use::swap(Use &RHS) { 49 // Use getImpliedUser Implementation 52 const Use *Use::getImpliedUser() const { 53 const Use *Current = this [all...] |
/external/valgrind/main/none/tests/ |
cmdline3.stderr.exp | 2 valgrind: Use --help for more information.
|
cmdline4.stderr.exp | 2 valgrind: Use --help for more information or consult the user manual.
|
/external/llvm/include/llvm/Analysis/ |
CaptureTracking.h | 20 class Use; 43 /// shouldExplore - This is the use of a value derived from the pointer. 48 virtual bool shouldExplore(Use *U); 51 /// use U. Return true to stop the traversal or false to continue looking 53 virtual bool captured(Use *U) = 0;
|
/external/valgrind/main/memcheck/tests/ |
manuel2.stderr.exp | 0 Use of uninitialised value of size 4
|
/external/llvm/unittests/IR/ |
WaymarkTest.cpp | 35 const Use *U = &A->getOperandUse(0); 36 const Use *Ue = &A->getOperandUse(22); 45 Use* many = (Use*)calloc(sizeof(Use), 8212 + 1); 47 Use::initTags(many, many + 8212); 48 for (Use *U = many, *Ue = many + 8212 - 1; U != Ue; ++U)
|
/external/chromium/base/memory/ |
linked_ptr_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); } 29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); } 66 a3->Use(); 67 a4->Use(); 68 a5->Use(); 69 a6->Use(); 70 b0->Use(); [all...] |
/external/chromium/testing/gtest/test/ |
gtest-linked_ptr_test.cc | 4 // Redistribution and use in source and binary forms, with or without 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 51 virtual void Use() { *history << "A" << mynum << " use\n"; } 61 virtual void Use() { *history << "B" << mynum << " use\n"; } 80 // Use explicit function call notation here to suppress self-assign warning. 110 a3->Use(); 111 a4->Use(); [all...] |
/external/gtest/test/ |
gtest-linked_ptr_test.cc | 4 // Redistribution and use in source and binary forms, with or without 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 51 virtual void Use() { *history << "A" << mynum << " use\n"; } 61 virtual void Use() { *history << "B" << mynum << " use\n"; } 80 // Use explicit function call notation here to suppress self-assign warning. 110 a3->Use(); 111 a4->Use(); [all...] |
/external/libvpx/libvpx/third_party/googletest/src/test/ |
gtest-linked_ptr_test.cc | 4 // Redistribution and use in source and binary forms, with or without 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 51 virtual void Use() { *history << "A" << mynum << " use\n"; } 61 virtual void Use() { *history << "B" << mynum << " use\n"; } 80 // Use explicit function call notation here to suppress self-assign warning. 110 a3->Use(); 111 a4->Use(); [all...] |
/external/protobuf/gtest/test/ |
gtest-linked_ptr_test.cc | 4 // Redistribution and use in source and binary forms, with or without 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 51 virtual void Use() { *history << "A" << mynum << " use\n"; } 61 virtual void Use() { *history << "B" << mynum << " use\n"; } 109 a3->Use(); 110 a4->Use(); 111 a5->Use(); [all...] |
/external/skia/src/svg/ |
SkSVGUse.h | 5 * Use of this source code is governed by a BSD-style license that can be 16 DECLARE_SVG_INFO(Use);
|
/external/llvm/lib/Target/Hexagon/ |
HexagonRemoveSZExtArgs.cpp | 60 Instruction* Use = cast<Instruction>(*UI); 61 SExtInst* SI = new SExtInst(Arg, Use->getType()); 63 (EVT::getEVT(Use->getType()))); 65 Use->replaceAllUsesWith(SI); 68 Use->eraseFromParent();
|
/bionic/libc/kernel/arch-mips/asm/ |
sgidefs.h | 22 #error Use a Linux compiler or give up.
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
sgidefs.h | 22 #error Use a Linux compiler or give up.
|
/external/kernel-headers/original/asm-mips/ |
sgidefs.h | 18 #error Use a Linux compiler or give up.
|
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/ |
sgidefs.h | 22 #error Use a Linux compiler or give up.
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/ |
sgidefs.h | 22 #error Use a Linux compiler or give up.
|
/external/llvm/lib/Analysis/ |
CaptureTracking.cpp | 31 bool CaptureTracker::shouldExplore(Use *U) { return true; } 40 bool captured(Use *U) { 84 SmallVector<Use*, Threshold> Worklist; 85 SmallSet<Use*, Threshold> Visited; 95 Use *U = &UI.getUse(); 102 Use *U = Worklist.pop_back_val(); 151 Use *U = &UI.getUse();
|
/development/samples/AppNavigation/ |
Android.mk | 16 # Use the following include to make our test apk.
|
/packages/apps/CertInstaller/ |
Android.mk | 14 # Use the folloing include to make our test apk.
|