HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 151 - 175 of 1000) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
bits2prm.cpp 52 #include "mode.h"
189 mode = AMR mode of type enum Mode
226 enum Mode mode, // i : AMR mode
233 for (i = 0; i < prmno[mode]; i++)
235 prm[i] = Bin2int (bitno[mode][i], bits);
236 bits += bitno[mode][i]
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.h 61 #include "mode.h"
143 enum Mode mode, /* i : AMR mode */
dec_amr.h 70 #include "mode.h"
178 Word16 Decoder_amr_reset(Decoder_amrState *st, enum Mode mode);
187 enum Mode mode, /* i : AMR mode */
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.h 62 #include "mode.h"
153 enum Mode mode, /* i : coder mode */
pitch_fr.h 65 #include "mode.h"
128 enum Mode mode, /* i : codec mode */
prm2bits.cpp 59 #include "mode.h"
205 mode = AMR mode of type enum Mode
228 DESCRIPTION: depending on the mode, different numbers of parameters
246 enum Mode mode, // i : AMR mode
253 for (i = 0; i < prmno[mode]; i++)
255 Int2bin (prm[i], bitno[mode][i], bits)
    [all...]
cod_amr.h 68 #include "mode.h"
260 enum Mode mode, /* i : AMR mode */
263 enum Mode *usedMode, /* o : used mode */
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 17 // template<typename Scalar, int mr, int StorageOrder, bool Conjugate, int Mode>
45 int Mode, bool LhsIsTriangular,
52 int Mode, bool LhsIsTriangular,
55 struct product_triangular_matrix_matrix<Scalar,Index,Mode,LhsIsTriangular,
67 (Mode&(UnitDiag|ZeroDiag)) | ((Mode&Upper) ? Lower : Upper),
79 template <typename Scalar, typename Index, int Mode,
82 struct product_triangular_matrix_matrix<Scalar,Index,Mode,true,
90 IsLower = (Mode&Lower) == Lower,
91 SetDiag = (Mode&(ZeroDiag|UnitDiag)) ? 0 :
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.h 227 SkXfermode::Mode mode = SkXfermode::kSrcOver_Mode; local
228 if (paint) mode = getXfermode(paint->getXfermode());
229 return saveLayer(left, top, right, bottom, paint ? paint->getAlpha() : 255, mode, flags);
236 int alpha, SkXfermode::Mode mode, int flags);
239 int alpha, SkXfermode::Mode mode, int flags);
302 virtual status_t drawColor(int color, SkXfermode::Mode mode);
    [all...]
SkiaColorFilter.h 112 * and PorterDuff blending mode.
115 ANDROID_API SkiaBlendFilter(SkColorFilter *skFilter, int color, SkXfermode::Mode mode);
121 SkXfermode::Mode mMode;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 147 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
148 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
170 Void DCACPred(VideoEncData *video, UChar Mode, Int *intraDC_decision, Int intraDCVlcQP);
173 static Bool IntraDCSwitch_Decision(Int Mode, Int intra_dc_vlc_threshold, Int intraDCVlcQP);
239 PutMCBPC_Intra(Int cbp, Int mode, BitstreamEncVideo *bitstream)
244 ind = ((mode_MBtype[mode] >> 1) & 3) | ((cbp & 3) << 2);
254 PutMCBPC_Inter(Int cbp, Int mode, BitstreamEncVideo *bitstream)
259 ind = (mode_MBtype[mode] & 7) | ((cbp & 3) << 3);
577 /* The following is for 3-mode VLC */
891 UChar Mode = video->headerInfo.Mode[video->mbnum]
    [all...]
  /external/chromium/base/
message_pump_libevent.h 89 enum Mode {
111 Mode mode,
  /external/chromium/net/base/
transport_security_state.h 33 enum Mode {
34 // Strict mode implies:
38 // Opportunistic mode implies:
61 Mode mode; member in struct:net::TransportSecurityState::DomainState
  /external/chromium_org/chrome/browser/chromeos/
ui_proxy_config.h 40 enum Mode {
48 // Proxy setting for mode = direct or auto-detect or using pac script.
53 // Proxy setting for mode = single-proxy or proxy-per-scheme.
87 Mode mode; member in struct:chromeos::UIProxyConfig
97 // Set if mode is MODE_DIRECT or MODE_AUTO_DETECT or MODE_PAC_SCRIPT.
99 // Set if mode is MODE_SINGLE_PROXY.
101 // Set if mode is MODE_PROXY_PER_SCHEME and has http proxy.
103 // Set if mode is MODE_PROXY_PER_SCHEME and has https proxy.
105 // Set if mode is MODE_PROXY_PER_SCHEME and has ftp proxy
    [all...]
  /external/chromium_org/ipc/
ipc_channel.h 38 // the channel with the mode set to one of the NAMED modes. NAMED modes are
58 enum Mode {
102 // |mode| specifies whether this Channel is to operate in server mode or
103 // client mode. In server mode, the Channel is responsible for setting up the
104 // IPC object, whereas in client mode, the Channel merely connects to the
109 Channel(const IPC::ChannelHandle &channel_handle, Mode mode,
ipc_channel_nacl.h 30 // We don't need to worry about complicated set up and READWRITE mode for
38 Mode mode,
65 Mode mode_;
ipc_channel_win.h 28 ChannelImpl(const IPC::ChannelHandle &channel_handle, Mode mode,
48 bool CreatePipe(const IPC::ChannelHandle &channel_handle, Mode mode);
77 // In server-mode, we have to wait for the client to connect before we
79 // the connect operation in overlapped mode.
  /external/chromium_org/remoting/host/
log_to_server.h 41 ServerLogEntry::Mode mode,
69 ServerLogEntry::Mode mode_;
  /external/chromium_org/sync/engine/
sync_scheduler.h 49 enum Mode {
50 // In this mode, the thread only performs configuration tasks. This is
53 // normal mode.
66 // Start the scheduler with the given mode. If the scheduler is
67 // already started, switch to the given mode, although some
68 // scheduled tasks from the old mode may still run.
69 virtual void Start(Mode mode) = 0;
75 // Note: must already be in CONFIGURATION mode.
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 36 import com.jme3.scene.Mesh.Mode;
99 setMode(Mode.Lines);
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 78 NMode::EEnum Mode;
85 Mode = NMode::kSystem;
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/packet/
Bytestream.java 33 private Mode mode = Mode.tcp; field in class:Bytestream
80 * Set the transport mode. This should be put in the initiation of the interaction.
82 * @param mode the transport mode, either UDP or TCP
83 * @see Mode
85 public void setMode(final Mode mode) {
86 this.mode = mode;
463 Mode mode; local
    [all...]
  /frameworks/native/include/input/
KeyLayoutMap.h 29 enum Mode {
38 // Axis mode.
39 Mode mode; member in struct:android::AxisInfo
54 AxisInfo() : mode(MODE_NORMAL), axis(-1), highAxis(-1), splitValue(0), flatOverride(-1) {
  /external/chromium_org/third_party/skia/src/effects/
SkMergeImageFilter.cpp 29 void SkMergeImageFilter::initModes(const SkXfermode::Mode modes[]) {
42 SkXfermode::Mode mode) : INHERITED(first, second) {
43 if (SkXfermode::kSrcOver_Mode != mode) {
44 SkXfermode::Mode modes[] = { mode, mode };
52 const SkXfermode::Mode modes[]) : INHERITED(count, filters) {
135 paint.setXfermodeMode((SkXfermode::Mode)fModes[i]);
  /external/chromium_org/v8/test/cctest/
test-reloc-info.cc 36 byte* pc, RelocInfo::Mode mode, intptr_t data) {
37 RelocInfo rinfo(pc, mode, data, NULL);
56 RelocInfo::Mode mode = (i % 2 == 0) ? local
58 WriteRinfo(&writer, pc, mode, pos);
71 RelocInfo::Mode mode = (i % 2 == 0) ? local
73 if (mode == RelocInfo::POSITION) {
75 CHECK_EQ(mode, it.rinfo()->rmode())
88 RelocInfo::Mode mode = (i % 2 == 0) ? local
105 RelocInfo::Mode mode = (i % 2 == 0) ? local
    [all...]

Completed in 1215 milliseconds

1 2 3 4 5 67 8 91011>>