HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 26 - 50 of 1871) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/fix/
printerconfig_test.go 21 d := &printer.Config{Tabwidth: 8, Mode: 0}
30 b := printer.Config{Mode: 0, Tabwidth: 8}
31 c := &printer.Config{Mode: 0}
32 d := &printer.Config{Tabwidth: 8, Mode: 0}
33 return printer.Config{Mode: 0, Tabwidth: 8}
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 25 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>, IteratorBased
    [all...]
  /external/eigen/bench/
basicbenchmark.h 7 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);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Shutdown.c 119 switch (Snp->Mode.State) {
134 Snp->Mode.State = EfiSimpleNetworkStarted;
135 Snp->Mode.ReceiveFilterSetting = 0;
137 Snp->Mode.MCastFilterCount = 0;
138 Snp->Mode.ReceiveFilterSetting = 0;
139 ZeroMem (Snp->Mode.MCastFilter, sizeof Snp->Mode.MCastFilter);
141 &Snp->Mode.CurrentAddress,
142 &Snp->Mode.PermanentAddress,
  /external/eigen/demos/opengl/
trackball.h 21 enum Mode {Around, Local};
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathSupport.py 38 def OpenLongFilePath(FileName, Mode='r', Buffer= -1):
39 return open(LongFilePath(FileName), Mode, Buffer)
41 def CodecOpenLongFilePath(Filename, Mode='rb', Encoding=None, Errors='strict', Buffering=1):
42 return codecs.open(LongFilePath(Filename), Mode, Encoding, Errors, Buffering)
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
GopScreen.c 40 Returns information for an available graphics mode that the graphics device
44 @param ModeNumber The mode number to return information on.
48 @retval EFI_SUCCESS Mode information returned.
50 @retval EFI_DEVICE_ERROR A hardware error occurred trying to retrieve the video mode.
68 if (Info == NULL || SizeOfInfo == NULL || (UINTN) ModeNumber >= This->Mode->MaxMode) {
91 Set the video device into the specified mode and clears the visible portions of
95 @param ModeNumber Abstraction that defines the current video mode.
97 @retval EFI_SUCCESS The graphics mode specified by ModeNumber was selected.
116 if (ModeNumber >= This->Mode->MaxMode) {
121 This->Mode->Mode = ModeNumber
    [all...]
  /external/libchrome/base/profiler/
scoped_tracker.cc 13 ScopedProfile::Mode g_scoped_profile_mode = ScopedProfile::DISABLED;
  /external/v8/src/tracing/
tracing-category-observer.h 15 enum Mode {
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
d_gain_c.h 58 #include "mode.h"
112 enum Mode mode, /* i : AMR mode */
mode.h 38 * File : mode.h
39 * Purpose : Declaration of mode type
63 enum Mode { MR475 = 0,
lsp.h 66 #include "mode.h"
158 * LP coefficients for mode 12.2. For the other
161 * Matrix/Vector quantization (depending on the mode)
168 enum Mode req_mode, /* i : requested coder mode */
169 enum Mode used_mode,/* i : used coder mode */
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_gain_p.cpp 58 mode -- enumerated type -- AMR mode
125 #include "mode.h"
177 enum Mode mode, /* i : AMR mode */
185 if (mode == MR122)
sp_dec.h 57 #include "mode.h"
69 enum Mode prev_mode;
102 enum Mode mode, /* i : AMR mode */
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.h 62 #include "mode.h"
103 enum Mode mode, /* i : AMR mode */
q_gain_c.h 67 #include "mode.h"
116 enum Mode mode, /* i : AMR mode */
q_gain_p.h 67 #include "mode.h"
108 enum Mode mode, /* i : AMR mode */
sp_enc.h 73 #include "mode.h"
143 enum Mode mode, /* i : speech coder mode */
146 enum Mode *usedMode /* o : used speech coder mode */
  /system/bt/service/common/bluetooth/
advertise_settings.h 30 // Advertising mode describes power consumption mode used for advertising.
31 enum Mode {
32 // Perform Bluetooth LE advertising in low power mode. This is the default
33 // and preferred advertising mode as it consumes the least power.
36 // Perform Bluetooth LE advertising in balanced power mode. This is balanced
40 // Perform Bluetooth LE advertising in low latency, high power mode. This
64 AdvertiseSettings(Mode mode, base::TimeDelta timeout,
68 // mode: MODE_LOW_POWE
75 Mode mode() const { return mode_; } function in class:bluetooth::AdvertiseSettings
    [all...]
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 19 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, int LoopIndex, int Size
    [all...]
  /frameworks/support/compat/java/android/support/v4/widget/
TintableCompoundButton.java 32 * mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
36 * should automatically mutate the drawable and apply the specified tint and tint mode.
51 * Specifies the blending mode which should be used to apply the tint specified by
53 * default mode is {@link PorterDuff.Mode#SRC_IN}.
55 * @param tintMode the blending mode used to apply the tint, may be
60 * PorterDuff.Mode)
62 void setSupportButtonTintMode(@Nullable PorterDuff.Mode tintMode);
65 * Returns the blending mode used to apply the tint to the button drawabl
    [all...]
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
access.c 29 in Mode.
31 The value of Mode is either the bitwise-inclusive OR of the access
38 @param[in] Mode Access permissions to check for.
41 @retval -1 File is not accessible with the given Mode. The error condition
48 int Mode
57 if((Path == NULL) || ((Mode & ~GOOD_MODE) != 0)) {
74 if(Mode == F_OK) { /* Existence test. */
84 if(Mode & R_OK) {
93 if(Mode & W_OK) {
100 if(Mode & X_OK) {
    [all...]
  /developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DrawableTintingFragment.java 43 * a reference to a color and a PorterDuff blend mode. The color and blend mode can be
46 * @see android.graphics.drawable.Drawable#setColorFilter(int, android.graphics.PorterDuff.Mode)
47 * @see android.graphics.drawable.Drawable#setTint(android.content.res.ColorStateList, android.graphics.PorterDuff.Mode)
106 * Selected color tinting mode.
108 private PorterDuff.Mode mMode;
135 private static final PorterDuff.Mode[] MODES = new PorterDuff.Mode[]{
136 PorterDuff.Mode.ADD,
137 PorterDuff.Mode.CLEAR
    [all...]
  /developers/samples/android/ui/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DrawableTintingFragment.java 43 * a reference to a color and a PorterDuff blend mode. The color and blend mode can be
46 * @see android.graphics.drawable.Drawable#setColorFilter(int, android.graphics.PorterDuff.Mode)
47 * @see android.graphics.drawable.Drawable#setTint(android.content.res.ColorStateList, android.graphics.PorterDuff.Mode)
106 * Selected color tinting mode.
108 private PorterDuff.Mode mMode;
135 private static final PorterDuff.Mode[] MODES = new PorterDuff.Mode[]{
136 PorterDuff.Mode.ADD,
137 PorterDuff.Mode.CLEAR
    [all...]
  /development/samples/browseable/DrawableTinting/src/com.example.android.drawabletinting/
DrawableTintingFragment.java 43 * a reference to a color and a PorterDuff blend mode. The color and blend mode can be
46 * @see android.graphics.drawable.Drawable#setColorFilter(int, android.graphics.PorterDuff.Mode)
47 * @see android.graphics.drawable.Drawable#setTint(android.content.res.ColorStateList, android.graphics.PorterDuff.Mode)
106 * Selected color tinting mode.
108 private PorterDuff.Mode mMode;
135 private static final PorterDuff.Mode[] MODES = new PorterDuff.Mode[]{
136 PorterDuff.Mode.ADD,
137 PorterDuff.Mode.CLEAR
    [all...]

Completed in 1767 milliseconds

12 3 4 5 6 7 8 91011>>