HomeSort by relevance Sort by last modified time
    Searched defs:Ref (Results 26 - 50 of 154) sorted by null

12 3 4 5 6 7

  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
TrackingMDRef.h 103 /// \brief Typed tracking ref.
108 TrackingMDRef Ref;
112 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
114 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
115 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
118 Ref = std::move(X.Ref);
123 Ref = X.Ref
    [all...]
  /frameworks/base/tools/aapt2/
StringPool.cpp 34 StringPool::Ref::Ref() : entry_(nullptr) {}
36 StringPool::Ref::Ref(const StringPool::Ref& rhs) : entry_(rhs.entry_) {
42 StringPool::Ref::Ref(StringPool::Entry* entry) : entry_(entry) {
48 StringPool::Ref::~Ref() {
54 StringPool::Ref& StringPool::Ref::operator=(const StringPool::Ref& rhs)
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 152 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
153 llvm::Constant *Aliasee = Ref;
154 if (Ref->getType() != AliasType)
155 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
185 if (Ref->isDeclaration())
  /external/eigen/Eigen/src/Core/
Ref.h 18 struct traits<Ref<_PlainObjectType, _Options, _StrideType> >
121 /** \class Ref
129 * \tparam StrideType optionally specifies strides. By default, Ref implies a contiguous storage along the inner dimension (inner stride==1),
135 * A Ref<> object can represent either a const expression or a l-value:
138 * void foo1(Ref<VectorXf> x);
141 * void foo2(const Ref<const VectorXf>& x);
144 * In the in-out case, the input argument must satisfy the constraints of the actual Ref<> type, otherwise a compilation issue will be triggered.
145 * By default, a Ref<VectorXf> can reference any dense vector expression of float having a contiguous memory layout.
146 * Likewise, a Ref<MatrixXf> can reference any column-major dense matrix expression of float whose column's elements are contiguously stored with
168 * void foo3(Ref<VectorXf,0,InnerStride<> > x)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisEvaluator.cpp 44 static cl::opt<bool> PrintRef("print-ref", cl::ReallyHidden);
50 unsigned NoModRef, Mod, Ref, ModRef;
65 NoModRef = Mod = Ref = ModRef = 0;
202 // Mod/ref alias analysis: compare all pairs of calls and values
220 case AliasAnalysis::Ref:
221 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
222 ++Ref; break;
232 // Mod/ref alias analysis: compare all pairs of calls
245 case AliasAnalysis::Ref:
246 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCObjectStreamer.cpp 238 const MCExpr *Ref =
241 MCBinaryExpr::Create(MCBinaryExpr::Sub, Offset, Ref, getContext());
  /external/webrtc/webrtc/base/
bind_unittest.cc 224 const int* Ref(const int& a) { return &a; }
232 EXPECT_EQ(&x, Ref(x));
234 auto functor = Bind(&Ref, x);
  /prebuilts/go/darwin-x86/src/cmd/cgo/
main.go 53 Ref []*Ref // all references to C.xxx in AST
74 // A Ref refers to an expression of the form C.xxx in the AST.
75 type Ref struct {
81 func (r *Ref) Pos() token.Pos {
298 for _, cref := range f.Ref {
  /prebuilts/go/linux-x86/src/cmd/cgo/
main.go 53 Ref []*Ref // all references to C.xxx in AST
74 // A Ref refers to an expression of the form C.xxx in the AST.
75 type Ref struct {
81 func (r *Ref) Pos() token.Pos {
298 for _, cref := range f.Ref {
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 256 StringRef Ref = String.toStringRef(Data);
260 char *Mem = (char *)Allocate(Ref.size() + 1, 1);
261 std::copy(Ref.begin(), Ref.end(), Mem);
262 Mem[Ref.size()] = 0;
  /external/eigen/test/
nomalloc.cpp 180 typedef Eigen::Ref<const MatrixX > Ref;
181 typedef Eigen::Ref<const MatrixXT > RefT;
183 Ref r1(m);
184 Ref r2(m.block(rows/3, cols/4, rows/2, cols/2));
189 VERIFY_RAISES_ASSERT(Ref r6(m.transpose()));
190 VERIFY_RAISES_ASSERT(Ref r7(Scalar(2) * m));
193 Ref r8 = r1;
196 // Initializing from a compatible Ref shall also never malloc
197 Eigen::Ref<const MatrixX, Unaligned, Stride<Dynamic, Dynamic> > r10=r8, r11=m
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 396 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
397 if (!Ref)
399 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
736 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
737 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
    [all...]
  /external/llvm/lib/Target/Hexagon/
BitTracker.h 102 // possible bit values. One extension here is the "Ref" type, which
110 Ref // Bit value same as the one described in RefI.
112 // bottom will be expressed as a "ref to itself", which, in the context
117 // Self <= x, where "Self" is "ref to itself".
120 // for one register will be a simple "ref" for another register.
128 // Such cases are identical to the usual Ref type, but the register
131 // What is worthy of notice is that in value V (that is a "ref"), as long
134 // tion of V, then V is assumed to be "bottom" (as a "ref to itself"),
138 // not possible. Any value V that is a "ref", and whose RefI.Reg is 0
146 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {
220 BitTracker::BitValue::ref(const BitValue &V) { function in class:llvm::BitTracker::BitValue
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 131 Reference Ref;
138 Ref.Use = true;
140 Ref.Def = true;
145 return Ref;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 12 // implemented by all alias analysis implementations. Mod/Ref information is
212 /// Simple mod/ref information...
215 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
218 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 };
242 OnlyReadsArgumentPointees = ArgumentPointees | Ref,
257 OnlyReadsMemory = Anywhere | Ref,
466 /// Higher level methods for querying mod/ref information.
  /frameworks/native/opengl/libs/EGL/
egl_object.h 64 egl_object_t* ref; member in class:android::egl_object_t::LocalRef
70 explicit LocalRef(egl_display_t const* display, T o) : ref(0) {
73 ref = native;
77 return static_cast<N*>(ref);
88 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) {
89 if (ref) {
90 ref->incRef();
96 if (ref) {
97 ref->destroy();
103 if (ref) {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
encode_test.go 152 // Ref has Marshaler and Unmarshaler methods with pointer receiver.
153 type Ref int
155 func (*Ref) MarshalJSON() ([]byte, error) {
156 return []byte(`"ref"`), nil
159 func (r *Ref) UnmarshalJSON([]byte) error {
175 return []byte(`"ref"`), nil
192 R0 Ref
193 R1 *Ref
202 R1: new(Ref),
210 const want = `{"R0":"ref","R1":"ref","R2":"\"ref\"","R3":"\"ref\"","V0":"val","V1":"val","V2":"\"val\"","V3":"\"val\""}
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode_test.go 152 // Ref has Marshaler and Unmarshaler methods with pointer receiver.
153 type Ref int
155 func (*Ref) MarshalJSON() ([]byte, error) {
156 return []byte(`"ref"`), nil
159 func (r *Ref) UnmarshalJSON([]byte) error {
175 return []byte(`"ref"`), nil
192 R0 Ref
193 R1 *Ref
202 R1: new(Ref),
210 const want = `{"R0":"ref","R1":"ref","R2":"\"ref\"","R3":"\"ref\"","V0":"val","V1":"val","V2":"\"val\"","V3":"\"val\""}
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 121 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) {
122 assert(Ref && "Expected live reference");
123 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) &&
126 R->addRef(Ref, Owner);
132 PH->Use = static_cast<Metadata **>(Ref);
138 void MetadataTracking::untrack(void *Ref, Metadata &MD) {
139 assert(Ref && "Expected live reference");
141 R->dropRef(Ref);
146 bool MetadataTracking::retrack(void *Ref, Metadata &MD, void *New) {
147 assert(Ref && "Expected live reference")
    [all...]

Completed in 903 milliseconds

12 3 4 5 6 7