Searched refs:Use (Results 1 - 25 of 660) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/IR/
H A DUse.h1 //===-- llvm/Use.h - Definition of the Use class ----------------*- C++ -*-===//
11 /// This defines the Use class. The Use class represents the operand of an
12 /// instruction or some other User instance which refers to a Value. The Use
15 /// Pointer tagging is used to efficiently find the User corresponding to a Use
16 /// without having to store a User pointer in every Use. A User is preceded in
18 /// one of the fields (Prev) of the Use class are used to encode offsets to be
19 /// able to find that User given a pointer to any Use. For details, see:
39 class Use;
69 class Use { class in namespace:llvm
91 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); } function in class:llvm::Use
[all...]
H A DOperandTraits.h26 /// 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*>(
[all...]
H A DUser.h51 Use *OperandList;
54 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps)
56 Use *allocHungoffUses(unsigned) const;
58 Use::zap(OperandList, OperandList + NumOperands, true);
65 Use::zap(OperandList, OperandList + NumOperands);
67 /// operator delete - free memory allocated for User and Use objects
78 template <int Idx, typename U> static Use &OpFrom(const U *that) {
83 template <int Idx> Use &Op() {
86 template <int Idx> const Use &Op() const {
101 const Use
[all...]
/external/llvm/lib/IR/
H A DUse.cpp1 //===-- Use.cpp - Implement the Use class ---------------------------------===//
10 #include "llvm/IR/Use.h"
17 void Use::swap(Use &RHS) {
41 User *Use::getUser() const {
42 const Use *End = getImpliedUser();
45 : reinterpret_cast<User *>(const_cast<Use *>(End));
48 unsigned Use::getOperandNo() const {
57 Use *Us
[all...]
H A DUser.cpp45 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);
61 Use *Star
[all...]
/external/valgrind/main/none/tests/
H A Dcmdline3.stderr.exp2 valgrind: Use --help for more information.
H A Dcmdline4.stderr.exp2 valgrind: Use --help for more information or consult the user manual.
/external/llvm/include/llvm/Analysis/
H A DCaptureTracking.h20 class Use;
48 virtual bool shouldExplore(const Use *U);
53 virtual bool captured(const Use *U) = 0;
/external/valgrind/main/memcheck/tests/
H A Dmanuel2.stderr.exp0 Use of uninitialised value of size 4
/external/llvm/unittests/IR/
H A DWaymarkTest.cpp36 const Use *U = &A->getOperandUse(0);
37 const Use *Ue = &A->getOperandUse(22);
46 Use* many = (Use*)calloc(sizeof(Use), 8212 + 1);
48 Use::initTags(many, many + 8212);
49 for (Use *U = many, *Ue = many + 8212 - 1; U != Ue; ++U)
/external/chromium_org/base/memory/
H A Dlinked_ptr_unittest.cc2 // 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); } function in struct:__anon2336::A
29 virtual void Use() OVERRIDE {
68 a3->Use();
69 a4->Use();
70 a5->Use();
71 a6->Use();
72 b0->Use();
73 (*b0).Use();
74 b0.get()->Use();
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon10871::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon10871::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon21603::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon21603::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon28907::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon28907::B
109 a3->Use();
110 a4->Use();
111 a5->Use();
112 a6->Use();
113 b0->Use();
114 (*b0).Use();
115 b0.get()->Use();
118 a0->Use();
[all...]
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGUse.h5 * Use of this source code is governed by a BSD-style license that can be
16 DECLARE_SVG_INFO(Use);
H A DSkSVGUse.cpp5 * Use of this source code is governed by a BSD-style license that can be
21 DEFINE_SVG_INFO(Use)
/external/chromium_org/third_party/webrtc/base/
H A Dratelimiter.cc4 * Use of this source code is governed by a BSD-style license
20 void RateLimiter::Use(size_t used, double time) { function in class:rtc::RateLimiter
H A Dratelimiter_unittest.cc4 * Use of this source code is governed by a BSD-style license
30 limiter.Use(1000, monday);
37 limiter.Use(1000, monday);
48 limiter.Use(1000, tuesday);
53 limiter.Use(1000, thursday);
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dsgidefs.h18 #error Use a Linux compiler or give up.
/external/skia/src/svg/
H A DSkSVGUse.h5 * Use of this source code is governed by a BSD-style license that can be
16 DECLARE_SVG_INFO(Use);
/external/llvm/lib/Analysis/
H A DCaptureTracking.cpp31 bool CaptureTracker::shouldExplore(const Use *U) { return true; }
40 bool captured(const Use *U) override {
84 SmallVector<const Use *, Threshold> Worklist;
85 SmallSet<const Use *, Threshold> Visited;
88 for (const Use &U : V->uses()) {
100 const Use *U = Worklist.pop_back_val();
149 for (Use &UU : I->uses()) {
H A DPtrUseVisitor.cpp19 for (Use &U : I.uses()) {
/external/chromium_org/third_party/icu/source/
H A DrunConfigureICU37 AIX Use the IBM Visual Age xlc_r/xlC_r compilers on AIX
38 AIX/GCC Use the GNU gcc/g++ compilers on AIX
39 Cygwin Use the GNU gcc/g++ compilers on Cygwin
40 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
41 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin
42 Cygwin/ICL Use the Intel C++ compiler on Cygwin
43 FreeBSD Use the GNU gcc/g++ compilers on Free BSD
44 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
45 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400
46 Linux Use th
[all...]
/external/icu/icu4c/source/
H A DrunConfigureICU37 AIX Use the IBM Visual Age xlc_r/xlC_r compilers on AIX
38 AIX/GCC Use the GNU gcc/g++ compilers on AIX
39 Cygwin Use the GNU gcc/g++ compilers on Cygwin
40 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
41 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin
42 Cygwin/ICL Use the Intel C++ compiler on Cygwin
43 FreeBSD Use the GNU gcc/g++ compilers on Free BSD
44 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
45 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400
46 Linux Use th
[all...]
/external/doclava/res/assets/templates/
H A Dcomponents.cs2 <?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?>

Completed in 353 milliseconds

1234567891011>>