HomeSort by relevance Sort by last modified time
    Searched defs:Mode (Results 51 - 75 of 235) sorted by null

1 23 4 5 6 7 8 910

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
datapart_decode.cpp 28 /* Purpose : Decode a frame of MPEG4 bitstream in datapartitioning mode. */
57 // oscl_memset(Mode, MODE_INTRA, sizeof(uint8)*nTotalMB);
63 // oscl_memset(Mode, MODE_INTER, sizeof(uint8)*nTotalMB);
132 /* Purpose : Decode Data Partitioned Mode Video Packet in I-VOP */
141 uint8 *Mode = video->headerInfo.Mode;
173 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]);
234 MBtype = Mode[mbnum];
235 /* No skipped mode in I-packets 3/1/2001 */
240 /* there is always acdcpred in DataPart mode 04/10/01 *
629 uint8 mode = video->headerInfo.Mode[mbnum]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.cpp 42 -modified threshold based on correlation coeff 0.75 only for mode H.263
54 UChar Mode = video->headerInfo.Mode[mbnum];
59 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q);
271 -modified threshold based on correlation coeff 0.75 only for mode H.263
283 UChar Mode = video->headerInfo.Mode[mbnum];
288 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q)
    [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
Tracer.java 49 public enum Mode {
93 private Mode mCurrentMode = Mode.NONE;
116 * @param mode
118 public void setOutputMode(Mode mode) {
120 mCurrentMode = mode;
122 switch (mode) {
167 if (mCurrentMode == Mode.NONE) {
190 return mCurrentMode != Mode.NONE
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 61 @Param private Mode mode; field in class:CipherBenchmark
63 public enum Mode {
103 cipherAlgorithm = algorithm.toString() + "/" + mode.toString() + "/"
126 if (mode != Mode.ECB) {
  /packages/apps/Camera2/src_pd/com/google/common/logging/
eventprotos.java 38 public class Mode {
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CallLogInteraction.java 117 PorterDuff.Mode.MULTIPLY);
122 PorterDuff.Mode.MULTIPLY);
127 PorterDuff.Mode.MULTIPLY);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 194 incoming.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
198 outgoing.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
203 missed.setColorFilter(r.getColor(R.color.missed_call), PorterDuff.Mode.MULTIPLY);
219 PorterDuff.Mode.MULTIPLY);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEvent.java 125 * Change Mode
135 * The definition class of engine's mode.
137 public static final class Mode {
264 /** Detail mode of the event */
265 public int mode = 0; field in class:OpenWnnEvent
290 * Generate {@link OpenWnnEvent} for changing the mode
293 * @param mode The mode
295 public OpenWnnEvent(int code, int mode) {
297 this.mode = mode
    [all...]
  /art/compiler/dex/
global_value_numbering.h 37 enum Mode {
54 GlobalValueNumbering(CompilationUnit* cu, ScopedArenaAllocator* allocator, Mode mode);
236 // Specifies the mode of operation.
237 Mode mode_;
253 std::ostream& operator<<(std::ostream& os, const GlobalValueNumbering::Mode& rhs);
  /bionic/libc/kernel/uapi/linux/
cciss_defs.h 69 BYTE Mode : 2;
75 BYTE Mode : 2;
82 BYTE Mode : 2;
90 DWORD Mode : 2;
96 DWORD Mode : 2;
  /development/ndk/platforms/android-21/include/linux/
cciss_defs.h 69 BYTE Mode:2;
75 BYTE Mode:2;
82 BYTE Mode:2;
90 DWORD Mode:2;
96 DWORD Mode:2;
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 34 Mode = internal::traits<Derived>::Mode,
47 inline TriangularBase() { eigen_assert(!((Mode&UnitDiag) && (Mode&ZeroDiag))); }
100 const int mode = int(Mode) & ~SelfAdjoint; local
101 EIGEN_ONLY_USED_FOR_DEBUG(mode);
102 eigen_assert((mode==Upper && col>=row)
103 || (mode==Lower && col<=row)
104 || ((mode==StrictlyUpper || mode==UnitUpper) && col>row
    [all...]
  /external/kernel-headers/original/uapi/linux/
cciss_defs.h 60 BYTE Mode:2; /* b00 */
65 BYTE Mode:2; /* b01 */
71 BYTE Mode:2; /* b10 */
78 DWORD Mode:2;
84 DWORD Mode:2;
  /external/libvpx/libvpx/vp8/common/
onyx.h 57 } MODE;
68 static void Scale2Ratio(int mode, int *hr, int *hs)
70 switch (mode)
111 * noise_sensitivity >= 3 means aggressive denoising mode.
125 /* mode ->
126 *(0)=Realtime/Live Encoding. This mode is optimized for realtim
149 int Mode;
248 /* Memory location to store low-resolution encoder's mode info */
  /external/skia/dm/
DMSrcSink.h 94 enum Mode {
103 CodecSrc(Path, Mode, DstColorType);
110 Mode fMode;
  /external/skia/include/core/
SkImageDecoder.h 200 enum Mode {
213 kSuccess = 2 //!< The entire image was decoded, if Mode is
220 and then if the Mode is kDecodePixels_Mode, call allocPixelRef(),
237 Result decode(SkStream*, SkBitmap* bitmap, SkColorType pref, Mode);
238 Result decode(SkStream* stream, SkBitmap* bitmap, Mode mode) {
239 return this->decode(stream, bitmap, kUnknown_SkColorType, mode);
275 static bool DecodeFile(const char file[], SkBitmap* bitmap, SkColorType pref, Mode,
290 Mode, Format* format = NULL);
303 static bool DecodeStream(SkStreamRewindable* stream, SkBitmap* bitmap, SkColorType pref, Mode,
    [all...]
  /external/skia/include/views/
SkWidget.h 135 enum Mode {
142 Mode getMode() const { return (Mode)fMode; }
143 void setMode(Mode);
  /external/skia/include/views/animated/
SkWidgetViews.h 162 enum Mode {
169 Mode getMode() const { return (Mode)fMode; }
170 void setMode(Mode);
  /external/v8/src/arm64/
code-stubs-arm64.h 94 enum Mode {
102 static Mode GetMode(Code* stub) {
103 // Find the mode depending on the first two instructions.
131 static void Patch(Code* stub, Mode mode) {
144 switch (mode) {
162 DCHECK(GetMode(stub) == mode);
216 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
220 if (mode == kSaveFPRegs) {
225 void RestoreCallerSaveRegisters(MacroAssembler*masm, SaveFPRegsMode mode) {
377 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.h 57 Register result, Register index, LookupMode mode)
61 IndexBits::encode(index.code()) | LookupModeBits::encode(mode);
105 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
139 enum Mode {
153 static Mode GetMode(Code* stub) {
172 static void Patch(Code* stub, Mode mode) {
173 switch (mode) {
190 DCHECK(GetMode(stub) == mode);
276 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 147 enum Mode {
169 static Mode GetMode(Code* stub) {
189 static void Patch(Code* stub, Mode mode) {
193 switch (mode) {
209 DCHECK(GetMode(stub) == mode);
246 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
248 if (mode == kSaveFPRegs) {
254 SaveFPRegsMode mode) {
255 if (mode == kSaveFPRegs)
384 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
    [all...]
  /external/v8/src/mips64/
code-stubs-mips64.h 149 enum Mode {
171 static Mode GetMode(Code* stub) {
191 static void Patch(Code* stub, Mode mode) {
195 switch (mode) {
211 DCHECK(GetMode(stub) == mode);
248 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
250 if (mode == kSaveFPRegs) {
256 SaveFPRegsMode mode) {
257 if (mode == kSaveFPRegs)
386 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
    [all...]
  /external/v8/src/x64/
code-stubs-x64.h 52 Register result, Register index, LookupMode mode)
56 IndexBits::encode(index.code()) | LookupModeBits::encode(mode);
100 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
131 enum Mode {
145 static Mode GetMode(Code* stub) {
164 static void Patch(Code* stub, Mode mode) {
165 switch (mode) {
182 DCHECK(GetMode(stub) == mode);
270 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
    [all...]
  /external/v8/src/x87/
code-stubs-x87.h 57 Register result, Register index, LookupMode mode)
61 IndexBits::encode(index.code()) | LookupModeBits::encode(mode);
105 LookupMode mode() const { return LookupModeBits::decode(minor_key_); } function in class:v8::internal::NameDictionaryLookupStub
136 enum Mode {
150 static Mode GetMode(Code* stub) {
169 static void Patch(Code* stub, Mode mode) {
170 switch (mode) {
187 DCHECK(GetMode(stub) == mode);
273 void SaveCallerSaveRegisters(MacroAssembler* masm, SaveFPRegsMode mode) {
    [all...]
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 361 // Sets echo control appropriate for the audio routing |mode| on the device.
363 virtual int set_routing_mode(RoutingMode mode) = 0;
397 // the analog mode, prescribing an analog gain to be applied at the audio HAL.
405 // When an analog mode is set, this must be called prior to |ProcessStream()|
410 // When an analog mode is set, this should be called after |ProcessStream()|
415 enum Mode {
416 // Adaptive mode intended for use if an analog volume control is available
425 // Adaptive mode intended for situations in which an analog volume control
427 // mode, but with scaling instead applied in the digital domain. As with
428 // the analog mode, it additionally uses a digital compression stage
    [all...]

Completed in 510 milliseconds

1 23 4 5 6 7 8 910