HomeSort by relevance Sort by last modified time
    Searched refs:Use (Results 1 - 25 of 2213) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/IR/
Use.h 1 //===-- 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
13 /// class keeps the "use list" of the referenced value up to date.
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
    [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 31 /// for use of the User class
51 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
    [all...]
  /external/llvm/lib/IR/
Use.cpp 1 //===-- 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 *Use::initTags(Use *const Start, Use *Stop)
    [all...]
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...]
  /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(const Use *U);
51 /// use U. Return true to stop the traversal or false to continue looking
53 virtual bool captured(const 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 36 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/
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() OVERRIDE {
30 history += base::StringPrintf("B%d use\n", mynum);
68 a3->Use();
69 a4->Use();
70 a5->Use();
71 a6->Use();
72 b0->Use();
    [all...]
  /external/chromium_org/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/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...]
  /ndk/sources/third_party/googletest/googletest/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/chromium_org/third_party/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/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);
  /bionic/libc/kernel/uapi/asm-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.
  /development/ndk/platforms/android-L/arch-mips/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /development/ndk/platforms/android-L/arch-mips64/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /external/chromium_org/third_party/libjingle/source/talk/base/
ratelimiter.cc 5 * Redistribution and use in source and binary forms, with or without
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
37 void RateLimiter::Use(size_t used, double time) {
ratelimiter_unittest.cc 5 * Redistribution and use in source and binary forms, with or without
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
47 limiter.Use(1000, monday);
54 limiter.Use(1000, monday);
65 limiter.Use(1000, tuesday);
70 limiter.Use(1000, thursday);
  /external/chromium_org/third_party/webrtc/base/
ratelimiter.cc 4 * Use of this source code is governed by a BSD-style license
20 void RateLimiter::Use(size_t used, double time) {
ratelimiter_unittest.cc 4 * 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);

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 91011>>