Searched refs:Mode (Results 1 - 25 of 495) sorted by relevance

1234567891011>>

/external/skia/src/gpu/
H A DGrWindowRectsState.h15 enum class Mode : bool { class in class:GrWindowRectsState
20 GrWindowRectsState() : fMode(Mode::kExclusive) {}
21 GrWindowRectsState(const GrWindowRectangles& windows, Mode mode)
26 bool enabled() const { return Mode::kInclusive == fMode || !fWindows.empty(); }
27 Mode mode() const { return fMode; }
32 fMode = Mode::kExclusive;
36 void set(const GrWindowRectangles& windows, Mode mode) {
50 Mode fMode;
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetSubtargetInfo.cpp27 AntiDepBreakMode& Mode,
29 Mode = ANTIDEP_NONE;
25 enablePostRAScheduler( CodeGenOpt::Level OptLevel, AntiDepBreakMode& Mode, RegClassVector& CriticalPathRCs) const argument
/external/skia/src/gpu/effects/
H A DGrSRGBEffect.h15 enum class Mode { class in class:GrSRGBEffect
23 static sk_sp<GrFragmentProcessor> Make(Mode mode);
27 Mode mode() const { return fMode; }
30 GrSRGBEffect(Mode mode);
38 Mode fMode;
H A DGrSRGBEffect.cpp26 case GrSRGBEffect::Mode::kLinearToSRGB:
35 case GrSRGBEffect::Mode::kSRGBToLinear:
71 GrSRGBEffect::GrSRGBEffect(Mode mode)
92 case Mode::kLinearToSRGB:
95 case Mode::kSRGBToLinear:
109 Mode testMode = static_cast<Mode>(d->fRandom->nextRangeU(0, 1));
125 sk_sp<GrFragmentProcessor> GrSRGBEffect::Make(Mode mode) {
H A DGrTextureDomain.h30 enum Mode { enum in class:GrTextureDomain
56 GrTextureDomain(GrTexture*, const SkRect& domain, Mode, int index = -1);
58 GrTextureDomain(GrTextureProxy*, const SkRect& domain, Mode, int index = -1);
61 Mode mode() const { return fMode; }
69 static const SkRect MakeTexelDomainForMode(const SkIRect& texelRect, Mode mode) {
92 SkDEBUGCODE(fMode = (Mode) -1;)
138 SkDEBUGCODE(Mode fMode;)
145 Mode fMode;
161 GrTextureDomain::Mode,
183 GrTextureDomain::Mode,
[all...]
/external/clang/utils/analyzer/
H A DSumTimerInfo.py34 Mode = 1 variable
37 Mode = 1 variable
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
50 if (("The % of reachable basic blocks" in line) and (Mode == 1)) :
53 if (("The # of times we reached the max number of steps" in line) and (Mode == 1)) :
56 if (("The maximum number of basic blocks in a function" in line) and (Mode == 1)) :
60 if (("The # of steps executed" in line) and (Mode == 1)) :
63 if (("The # of times we inlined a call" in line) and (Mode
[all...]
/external/skia/include/gpu/effects/
H A DGrBlurredEdgeFragmentProcessor.h29 enum Mode { enum in class:GrBlurredEdgeFP
37 static sk_sp<GrFragmentProcessor> Make(Mode mode = kGaussian_Mode) {
43 Mode mode() const { return fMode; }
46 GrBlurredEdgeFP(Mode mode)
63 Mode fMode;
/external/eigen/Eigen/src/SparseCore/
H A DSparseTriangularView.h25 template<typename MatrixType, unsigned int Mode> class TriangularViewImpl<MatrixType,Mode,Sparse>
26 : public SparseMatrixBase<TriangularView<MatrixType,Mode> >
28 enum { SkipFirst = ((Mode&Lower) && !(MatrixType::Flags&RowMajorBit))
29 || ((Mode&Upper) && (MatrixType::Flags&RowMajorBit)),
31 SkipDiag = (Mode&ZeroDiag) ? 1 : 0,
32 HasUnitDiag = (Mode&UnitDiag) ? 1 : 0
35 typedef TriangularView<MatrixType,Mode> TriangularViewType;
68 template<typename ArgType, unsigned int Mode>
69 struct unary_evaluator<TriangularView<ArgType,Mode>, IteratorBase
[all...]
H A DTriangularSolver.h17 template<typename Lhs, typename Rhs, int Mode,
18 int UpLo = (Mode & Lower)
20 : (Mode & Upper)
27 template<typename Lhs, typename Rhs, int Mode>
28 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Lower,RowMajor>
51 if (Mode & UnitDiag)
64 template<typename Lhs, typename Rhs, int Mode>
65 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Upper,RowMajor>
82 if(!(Mode & UnitDiag))
95 if (Mode
[all...]
/external/eigen/bench/
H A Dbasicbenchmark.h7 template<int Mode, typename MatrixType>
10 template<int Mode, typename MatrixType>
15 if (Mode==LazyEval)
21 else if (Mode==OmpEval)
37 template<int Mode, typename MatrixType>
40 template<int Mode, typename MatrixType>
56 benchBasic_loop<Mode>(I, m, iterations);
H A Dproduct_threshold.cpp38 template<int Mode, typename Lhs, typename Rhs, typename Res>
41 c.noalias() += typename ProductReturnType<Lhs,Rhs,Mode>::Type(a,b);
44 template<int M, int N, int K, typename Scalar, int Mode>
63 BENCH(t,5,rep,prod<Mode>(a,b,c));
65 print_mode(Mode);
71 template<int M, int N, int K, typename Scalar, int Mode> struct loop_on_n;
113 template<int M, int N, int K, typename Scalar, int Mode>
118 bench_prod<M,N,K,Scalar,Mode==-1? alt_prod<M,N,K>::ret : Mode>();
120 loop_on_n<M,N+1,K,Scalar,Mode>
[all...]
/external/eigen/demos/opengl/
H A Dtrackball.h21 enum Mode {Around, Local}; enum in class:Trackball
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
/external/libchrome/base/profiler/
H A Dscoped_tracker.cc13 ScopedProfile::Mode g_scoped_profile_mode = ScopedProfile::DISABLED;
H A Dscoped_profile.cc14 ScopedProfile::ScopedProfile(const Location& location, Mode mode)
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h19 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder>
22 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder, int OtherStorageOrder>
43 int Mode, // can be Upper/Lower | UnitDiag
49 template<typename Lhs, typename Rhs, int Side, int Mode>
50 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,1>
71 triangular_solve_vector<LhsScalar, RhsScalar, Index, Side, Mode, LhsProductTraits::NeedToConjugate,
81 template<typename Lhs, typename Rhs, int Side, int Mode>
82 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,Dynamic>
100 triangular_solve_matrix<Scalar,Index,Side,Mode,LhsProductTraits::NeedToConjugate,(int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor,
110 template<typename Lhs, typename Rhs, int Mode, in
[all...]
H A DTriangularMatrix.h32 Mode = internal::traits<Derived>::Mode, enumerator in enum:Eigen::TriangularBase::__anon5230
56 inline TriangularBase() { eigen_assert(!((Mode&UnitDiag) && (Mode&ZeroDiag))); }
131 const int mode = int(Mode) & ~SelfAdjoint;
156 * \param Mode the kind of triangular matrix expression to construct. Can be #Upper,
177 Mode = _Mode, enumerator in enum:Eigen::internal::traits::__anon5231
207 Mode = _Mode, enumerator in enum:Eigen::TriangularView::__anon5232
209 TransposeMode = (Mode & Upper ? Lower : 0)
210 | (Mode
353 Mode = _Mode, enumerator in enum:Eigen::TriangularViewImpl::__anon5233
[all...]
/external/eigen/Eigen/src/Geometry/
H A DTransform.h26 Mode = Transform::Mode, enumerator in enum:Eigen::internal::transform_traits::__anon5608
27 IsProjective = (int(Mode)==int(Projective))
40 int Mode,
56 int Mode,
82 template<int Mode> struct transform_make_affine;
206 Mode = _Mode, enumerator in enum:Eigen::Transform::__anon5610
210 Rows = int(Mode)==(AffineCompact) ? Dim : HDim
223 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
225 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)
1302 Mode = enumerator in enum:Eigen::internal::transform_product_result::__anon5613
[all...]
/external/eigen/blas/
H A DPackedTriangularSolverVector.h15 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder>
19 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate>
20 struct packed_triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheLeft, Mode, Conjugate, RowMajor>
23 IsLower = (Mode&Lower)==Lower
39 if (!(Mode & UnitDiag))
47 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate>
48 struct packed_triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheLeft, Mode, Conjugate, ColMajor>
51 IsLower = (Mode&Lower)==Lower
64 if (!(Mode & UnitDiag))
74 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, boo
[all...]
H A DPackedTriangularMatrixVector.h15 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder>
18 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs>
19 struct packed_triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor>
23 IsLower = (Mode & Lower) ==Lower,
24 HasUnitDiag = (Mode & UnitDiag)==UnitDiag,
25 HasZeroDiag = (Mode & ZeroDiag)==ZeroDiag
47 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs>
48 struct packed_triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor>
52 IsLower = (Mode & Lower) ==Lower,
53 HasUnitDiag = (Mode
[all...]
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
H A DPartiallyUncompressingPipeTest.java17 import com.google.archivepatcher.shared.PartiallyUncompressingPipe.Mode;
47 stream.pipe(new ByteArrayInputStream(expectedBytes), Mode.COPY);
55 new ByteArrayInputStream(entry.getCompressedBinaryContent()), Mode.UNCOMPRESS_NOWRAP);
72 stream.pipe(new ByteArrayInputStream(compressBuffer.toByteArray()), Mode.UNCOMPRESS_WRAPPED);
88 stream.pipe(new ByteArrayInputStream(expectedBytes1), Mode.COPY);
91 new ByteArrayInputStream(entryA.getCompressedBinaryContent()), Mode.UNCOMPRESS_NOWRAP);
95 stream.pipe(new ByteArrayInputStream(expectedBytes3), Mode.COPY);
99 new ByteArrayInputStream(entryB.getCompressedBinaryContent()), Mode.UNCOMPRESS_NOWRAP);
103 stream.pipe(new ByteArrayInputStream(expectedBytes5), Mode.COPY);
/external/autotest/frontend/client/src/autotest/moblab/wizard/
H A DWizardCard.java9 import autotest.moblab.wizard.ConfigWizard.Mode;
22 private ConfigWizard.Mode currentMode;
27 currentMode = ConfigWizard.Mode.View;
49 public Widget switchToMode(ConfigWizard.Mode mode) {
60 public ConfigWizard.Mode getMode() {
141 Mode mode = getMode();
/external/eigen/test/
H A Dproduct_trmm.cpp20 template<typename Scalar, int Mode, int TriOrder, int OtherOrder, int ResOrder, int OtherCols>
43 tri = mat.template triangularView<Mode>();
44 triTr = mat.transpose().template triangularView<Mode>();
48 VERIFY_IS_APPROX( ge_xs = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
49 VERIFY_IS_APPROX( ge_sx = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
51 VERIFY_IS_APPROX( ge_xs.noalias() = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
52 VERIFY_IS_APPROX( ge_sx.noalias() = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
54 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.transpose()), s1*triTr.conjugate() * (s2*ge_left.transpose()));
55 VERIFY_IS_APPROX( ge_sx.noalias() = ge_right.transpose() * mat.adjoint().template triangularView<Mode>(), ge_right.transpose() * triTr.conjugate());
57 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s
[all...]
/external/libchrome/base/test/
H A Dtest_io_thread.h23 enum Mode { kAutoStart, kManualStart }; enum in class:base::TestIOThread
24 explicit TestIOThread(Mode mode);
/external/eigen/Eigen/src/Core/products/
H A DTriangularMatrixVector_BLAS.h46 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder>
48 triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,StorageOrder,BuiltIn> {};
51 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
52 struct triangular_matrix_vector_product<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,ColMajor,Specialized> { \
55 triangular_matrix_vector_product_trmv<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,ColMajor>::run( \
59 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
60 struct triangular_matrix_vector_product<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,RowMajor,Specialized> { \
63 triangular_matrix_vector_product_trmv<Index,Mode,Scalar,ConjLhs,Scalar,ConjRhs,RowMajor>::run( \
75 template<typename Index, int Mode, bool ConjLhs, bool ConjRhs> \
76 struct triangular_matrix_vector_product_trmv<Index,Mode,EIGTYP
[all...]
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DPartiallyUncompressingPipe.java43 * Modes available for {@link PartiallyUncompressingPipe#pipe(InputStream, Mode)}.
45 public static enum Mode { enum in class:PartiallyUncompressingPipe
84 public long pipe(InputStream in, Mode mode) throws IOException {
86 if (mode == Mode.COPY) {
92 uncompressor.setNowrap(mode == Mode.UNCOMPRESS_NOWRAP);

Completed in 493 milliseconds

1234567891011>>