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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/
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 10 // This class defines the interface that one who 'use's a Value must implement.
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()
    [all...]
  /external/llvm/lib/VMCore/
User.cpp 35 // most importantly, removing "this" from the use list of "From".
44 Use *User::allocHungoffUses(unsigned N) const {
47 size_t size = N * sizeof(Use) + sizeof(Use::UserRef);
48 Use *Begin = static_cast<Use*>(::operator new(size));
49 Use *End = Begin + N;
50 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
51 return Use::initTags(Begin, End);
59 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 44 /// shouldExplore - This is the use of a value derived from the pointer.
49 virtual bool shouldExplore(Use *U) = 0;
52 /// use U. Return true to stop the traversal or false to continue looking
54 virtual bool captured(Use *U) = 0;
  /external/valgrind/main/memcheck/tests/
manuel2.stderr.exp 0 Use of uninitialised value of size 4
  /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/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 59 Instruction* Use = cast<Instruction>(*UI);
60 SExtInst* SI = new SExtInst(Arg, Use->getType());
62 (EVT::getEVT(Use->getType())));
64 Use->replaceAllUsesWith(SI);
67 Use->eraseFromParent();
  /device/moto/stingray/ril/
Android.mk 3 # Use BUILD_PREBUILT instead of PRODUCT_COPY_FILES to bring in the NOTICE file.
  /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/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 33 bool shouldExplore(Use *U) { return true; }
35 bool captured(Use *U) {
79 SmallVector<Use*, Threshold> Worklist;
80 SmallSet<Use*, Threshold> Visited;
90 Use *U = &UI.getUse();
97 Use *U = Worklist.pop_back_val();
146 Use *U = &UI.getUse();
  /development/samples/AppNavigation/
Android.mk 16 # Use the following include to make our test apk.
  /device/samsung/crespo4g/
BoardConfig.mk 4 # you may not use this file except in compliance with the License.
20 # Use the non-open-source parts, if they're present
23 # Use the open-source board-info file if none was set by the vendor
27 # Use the parts that are common between all crespos
30 # Use crespo4g-specific variants
  /hardware/ti/wpan/tools/BluetoothSCOApp/
Android.mk 15 # Use the following include to make our test apk.

Completed in 3365 milliseconds

1 2 3 4 5 6 7 8 91011>>