Searched refs:Ref (Results 1 - 25 of 137) sorted by relevance

123456

/external/eigen/Eigen/src/Core/
H A DRef.h17 typename StrideType = typename internal::conditional<PlainObjectType::IsVectorAtCompileTime,InnerStride<1>,OuterStride<> >::type > class Ref;
19 /** \class Ref
27 * \tparam StrideType optionally specifies strides. By default, Ref implies a contiguous storage along the inner dimension (inner stride==1),
33 * A Ref<> object can represent either a const expression or a l-value:
36 * void foo1(Ref<VectorXf> x);
39 * void foo2(const Ref<const VectorXf>& x);
42 * In the in-out case, the input argument must satisfies the constraints of the actual Ref<> type, otherwise a compilation issue will be triggered.
43 * By default, a Ref<VectorXf> can reference any dense vector expression of float having a contiguous memory layout.
44 * Likewise, a Ref<MatrixXf> can reference any column major dense matrix expression of float whose column's elements are contiguously stored with
65 * void foo3(Ref<VectorX
187 template<typename PlainObjectType, int Options, typename StrideType> class Ref class in namespace:Eigen
199 inline Ref(PlainObjectBase<Derived>& expr, function in class:Eigen::Ref
205 inline Ref(const DenseBase<Derived>& expr, function in class:Eigen::Ref
221 template<typename TPlainObjectType, int Options, typename StrideType> class Ref<const TPlainObjectType, Options, StrideType> class in namespace:Eigen
231 inline Ref(const DenseBase<Derived>& expr) function in class:Eigen::Ref
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dregexp_test.cc22 CHECK_EQ(re->Ref(), 1);
34 CHECK_EQ(x->Ref(), 1 + v.size()) << x->Ref();
38 CHECK_EQ(x->Ref(), 1) << x->Ref();
/external/regex-re2/re2/testing/
H A Dregexp_test.cc22 CHECK_EQ(re->Ref(), 1);
34 CHECK_EQ(x->Ref(), 1 + v.size()) << x->Ref();
38 CHECK_EQ(x->Ref(), 1) << x->Ref();
/external/eigen/test/
H A Dref.cpp35 // test Ref.h
45 typedef Ref<MatrixType> RefMat;
46 typedef Ref<DynMatrixType> RefDynMat;
47 typedef Ref<const DynMatrixType> ConstRefDynMat;
48 typedef Ref<RealDynMatrixType , 0, Stride<Dynamic,Dynamic> > RefRealMatWithStride;
95 typedef Ref<VectorType> RefMat;
96 typedef Ref<DynMatrixType> RefDynMat;
97 typedef Ref<const DynMatrixType> ConstRefDynMat;
98 typedef Ref<RealDynMatrixType , 0, InnerStride<> > RefRealMatWithStride;
99 typedef Ref<DynMatrixTyp
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java44 public interface InstructionFactory<Ref extends Reference> {
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference);
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference);
58 Instruction makeInstruction22c(@Nonnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference);
64 Instruction makeInstruction31c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference);
69 int registerF, int registerG, @Nonnull Ref reference);
71 @Nonnull Ref reference);
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp92 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Ref) const {
93 const coff_symbol *Addr = reinterpret_cast<const coff_symbol*>(Ref.p);
110 const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const {
111 const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p);
127 void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const {
128 const coff_symbol *Symb = toSymb(Ref);
130 Ref.p = reinterpret_cast<uintptr_t>(Symb);
133 std::error_code COFFObjectFile::getSymbolName(DataRefImpl Ref, argument
135 const coff_symbol *Symb = toSymb(Ref);
139 std::error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref, argument
155 getSymbolType(DataRefImpl Ref, SymbolRef::Type &Result) const argument
206 getSymbolSize(DataRefImpl Ref, uint64_t &Result) const argument
226 getSymbolSection(DataRefImpl Ref, section_iterator &Result) const argument
248 getSectionName(DataRefImpl Ref, StringRef &Result) const argument
254 getSectionAddress(DataRefImpl Ref, uint64_t &Result) const argument
261 getSectionSize(DataRefImpl Ref, uint64_t &Result) const argument
268 getSectionContents(DataRefImpl Ref, StringRef &Result) const argument
277 getSectionAlignment(DataRefImpl Ref, uint64_t &Res) const argument
286 isSectionText(DataRefImpl Ref, bool &Result) const argument
293 isSectionData(DataRefImpl Ref, bool &Result) const argument
300 isSectionBSS(DataRefImpl Ref, bool &Result) const argument
308 isSectionRequiredForExecution(DataRefImpl Ref, bool &Result) const argument
315 isSectionVirtual(DataRefImpl Ref, bool &Result) const argument
322 isSectionZeroInit(DataRefImpl Ref, bool &Result) const argument
329 isSectionReadOnlyData(DataRefImpl Ref, bool &Result) const argument
873 DataRefImpl Ref; local
[all...]
/external/chromium_org/base/mac/
H A Dfoundation_util.h114 BASE_EXPORT std::string TypeNameForCFType(TypeCF##Ref);
195 BASE_EXPORT TypeNS* CFToNSCast(TypeCF##Ref cf_val); \
196 BASE_EXPORT TypeCF##Ref NSToCFCast(TypeNS* ns_val); \
206 BASE_EXPORT NSMutable##name* CFToNSCast(CFMutable##name##Ref cf_val); \
207 BASE_EXPORT CFMutable##name##Ref NSToCFCast(NSMutable##name* ns_val); \
268 template<> BASE_EXPORT TypeCF##Ref \
269 CFCast<TypeCF##Ref>(const CFTypeRef& cf_val);\
271 template<> BASE_EXPORT TypeCF##Ref \
272 CFCastStrict<TypeCF##Ref>(const CFTypeRef& cf_val);
/external/eigen/doc/examples/
H A Dfunction_taking_ref.cpp6 float inv_cond(const Ref<const MatrixXf>& a)
/external/llvm/lib/MC/
H A DMCSymbol.cpp48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value); local
49 S = &Ref->getSymbol();
/external/chromium_org/tools/gn/
H A Dunique_vector.h141 Ref ref(&t);
146 set_.insert(Ref(&vector_, vector_.size() - 1, ref.hash_val()));
154 Ref ref(t);
161 set_.insert(Ref(&vector_, vector_.size() - 1, ref.hash_val()));
174 Ref ref(&t);
182 typedef internal::UniquifyRef<T> Ref; typedef in class:UniqueVector
183 typedef base::hash_set<Ref> HashSet;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dstencil.c163 ctx->Stencil.Ref[0] == ref &&
164 ctx->Stencil.Ref[1] == ref)
169 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[1] = ref;
214 ctx->Stencil.Ref[face] == ref)
218 ctx->Stencil.Ref[face] = ref;
234 ctx->Stencil.Ref[0] == ref &&
235 ctx->Stencil.Ref[1] == ref)
239 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[
[all...]
/external/mesa3d/src/mesa/main/
H A Dstencil.c163 ctx->Stencil.Ref[0] == ref &&
164 ctx->Stencil.Ref[1] == ref)
169 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[1] = ref;
214 ctx->Stencil.Ref[face] == ref)
218 ctx->Stencil.Ref[face] = ref;
234 ctx->Stencil.Ref[0] == ref &&
235 ctx->Stencil.Ref[1] == ref)
239 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[
[all...]
/external/llvm/lib/Support/
H A DRegex.cpp154 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789")); local
155 Repl = Repl.substr(Ref.size());
158 if (!Ref.getAsInteger(10, RefValue) &&
162 *Error = "invalid backreference string '" + Ref.str() + "'";
/external/llvm/bindings/ocaml/transforms/passmgr_builder/
H A Dpassmgr_builder_ocaml.c41 static value alloc_pmbuilder(LLVMPassManagerBuilderRef Ref) { argument
44 PMBuilder_val(Val) = Ref;
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp51 unsigned NoModRef, Mod, Ref, ModRef; member in class:__anon25663::AAEval
66 NoModRef = Mod = Ref = ModRef = 0;
289 case AliasAnalysis::Ref:
290 PrintModRefResults("Just Ref", PrintRef, I, *V, F.getParent());
291 ++Ref; break;
312 case AliasAnalysis::Ref:
313 PrintModRefResults("Just Ref", PrintRef, *C, *D, F.getParent());
314 ++Ref; break;
352 unsigned ModRefSum = NoModRef + Mod + Ref + ModRef;
354 errs() << " Alias Analysis Mod/Ref Evaluato
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dmemtable.h23 // is zero and the caller must call Ref() at least once.
27 void Ref() { ++refs_; } function in class:leveldb::MemTable
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1FormDictionary_autogen.h47 SkPdfDictionary* Ref(SkPdfNativeDoc* doc);
/external/eigen/Eigen/src/SparseLU/
H A DSparseLUImpl.h26 typedef Ref<Matrix<Scalar,Dynamic,1> > BlockScalarVector;
27 typedef Ref<Matrix<Index,Dynamic,1> > BlockIndexVector;
45 Ref<IndexVector> repfnz_col, IndexVector& xprune, Ref<IndexVector> marker, IndexVector& parent,
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1FormDictionary_autogen.h47 SkPdfDictionary* Ref(SkPdfNativeDoc* doc);
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Darray_internal.h41 typedef T& Ref; typedef in struct:mojo::internal::ArrayDataTraits
51 static Ref ToRef(StorageType* storage, size_t offset) {
62 typedef P*& Ref; typedef in struct:mojo::internal::ArrayDataTraits
72 static Ref ToRef(StorageType* storage, size_t offset) {
83 typedef Array_Data<T>*& Ref; typedef in struct:mojo::internal::ArrayDataTraits
93 static Ref ToRef(StorageType* storage, size_t offset) {
128 typedef BitRef Ref; typedef in struct:mojo::internal::ArrayDataTraits
331 typedef typename Traits::Ref Ref; typedef in class:mojo::internal::Array_Data
387 Ref a
[all...]
/external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
H A Dmemenv.cc23 // and the caller must call Ref() at least once.
27 void Ref() { function in class:leveldb::__anon12454::FileState
151 file_->Ref();
186 file_->Ref();
205 file_->Ref();
272 file->Ref();
/external/clang/lib/CodeGen/
H A DCGCXX.cpp144 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl)); local
145 llvm::Constant *Aliasee = Ref;
146 if (Ref->getType() != AliasType)
147 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
167 if (Ref->isDeclaration())
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp140 Reference Ref; local
147 Ref.Use = true;
148 Ref.IndirectUse |= (MOReg != Reg);
151 Ref.Def = true;
152 Ref.IndirectDef |= (MOReg != Reg);
158 return Ref;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_depth.c119 sr.ref_value[0] = ctx->Stencil.Ref[0] & 0xff;
130 sr.ref_value[1] = ctx->Stencil.Ref[back] & 0xff;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_depth.c119 sr.ref_value[0] = ctx->Stencil.Ref[0] & 0xff;
130 sr.ref_value[1] = ctx->Stencil.Ref[back] & 0xff;

Completed in 764 milliseconds

123456