HomeSort by relevance Sort by last modified time
    Searched refs:Use (Results 1 - 25 of 451) 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.
28 /// for use of the User class
43 Use *OperandList;
50 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps)
52 Use *allocHungoffUses(unsigned) const;
54 Use::zap(OperandList, OperandList + NumOperands, true);
61 Use::zap(OperandList, OperandList + NumOperands);
63 /// operator delete - free memory allocated for User and Use objects
74 template <int Idx, typename U> static Use &OpFrom(const U *that) {
79 template <int Idx> Use &Op()
    [all...]
Constant.h 46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
101 /// constant. Any constants on our Use list must also be destroy'd. The
121 /// of the users of 'this' are replaced to use the new constant, and then
123 /// use Value::replaceAllUsesWith, which automatically dispatches to this
126 virtual void replaceUsesOfWithOnConstant(Value *, Value *, Use *) {
128 // cannot use any other values. This cannot be called at runtime, but needs
  /external/llvm/lib/VMCore/
User.cpp 33 // most importantly, removing "this" from the use list of "From".
42 Use *User::allocHungoffUses(unsigned N) const {
45 size_t size = N * sizeof(Use) + sizeof(Use::UserRef);
46 Use *Begin = static_cast<Use*>(::operator new(size));
47 Use *End = Begin + N;
48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
49 return Use::initTags(Begin, End);
57 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.
19 // Use swap Implementation
22 void Use::swap(Use &RHS) {
48 // Use getImpliedUser Implementation
51 const Use *Use::getImpliedUser() const {
52 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/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"; }
109 a3->Use();
110 a4->Use();
111 a5->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 6 ** you may not use this file except in compliance with the License.
24 DECLARE_SVG_INFO(Use);
SkSVGUse.cpp 6 ** you may not use this file except in compliance with the License.
29 DEFINE_SVG_INFO(Use)
36 parser._addAttributeLen("use", start, strlen(start) - 1);
  /device/moto/stingray/ril/
Android.mk 3 # Use BUILD_PREBUILT instead of PRODUCT_COPY_FILES to bring in the NOTICE file.
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 49 SmallVector<Use*, Threshold> Worklist;
50 SmallSet<Use*, Threshold> Visited;
60 Use *U = &UI.getUse();
66 Use *U = Worklist.pop_back_val();
123 Use *U = &UI.getUse();
  /packages/apps/CertInstaller/
Android.mk 14 # Use the folloing include to make our test apk.
  /packages/apps/Gallery/
Android.mk 13 # Use the following include to make our test apk.
  /packages/apps/VoiceDialer/
Android.mk 13 # Use the following include to make our test apk.
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdater.h 20 class Use;
36 /// AvailableVals - This keeps track of which value to use on a per-block
78 /// 'use' in BB. Consider code like this:
82 /// use(X)
88 /// their respective blocks. However, the use of X happens in the *middle* of
94 /// RewriteUse - Rewrite a use of the symbolic value. This handles PHI nodes,
95 /// which use their value in the corresponding predecessor. Note that this
96 /// will not work if the use is supposed to be rewritten to a value defined in
97 /// the same block as the use, but above it. Any 'AddAvailableValue's added
98 /// for the use's block will be considered to be below it
    [all...]
  /external/icu4c/
runConfigureICU 32 AIX Use the IBM Visual Age xlc_r/xlC_r compilers on AIX
33 AIX/GCC Use the GNU gcc/g++ compilers on AIX
34 Cygwin Use the GNU gcc/g++ compilers on Cygwin
35 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
36 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin
37 Cygwin/ICL Use the Intel C++ compiler on Cygwin
38 FreeBSD Use the GNU gcc/g++ compilers on Free BSD
39 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
40 IBMi Use the iCC compilers on IBM i, i5/OS, OS/400
41 Linux Use the GNU gcc/g++ compilers on Linu
    [all...]
  /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 parts that are common between all crespos
26 # Use crespo4g-specific variants
  /device/samsung/toro/
BoardConfig.mk 4 # you may not use this file except in compliance with the License.
15 # Use the non-open-source part, if present
18 # Use the part that is common between all tunas
23 # Use/add toro-specific variants
  /development/apps/BuildWidget/
Android.mk 15 # Use the following include to make our test apk.

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 91011>>