Searched refs:_this (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/opus/src/celt/
H A Dentenc.c60 static int ec_write_byte(ec_enc *_this,unsigned _value){ argument
61 if(_this->offs+_this->end_offs>=_this->storage)return -1;
62 _this->buf[_this->offs++]=(unsigned char)_value;
66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ argument
67 if(_this->offs+_this->end_offs>=_this
82 ec_enc_carry_out(ec_enc *_this,int _c) argument
101 ec_enc_normalize(ec_enc *_this) argument
112 ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size) argument
128 ec_encode(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _ft) argument
139 ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits) argument
151 ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp) argument
164 ec_enc_icdf(ec_enc *_this,int _s,const unsigned char *_icdf,unsigned _ftb) argument
175 ec_enc_uint(ec_enc *_this,opus_uint32 _fl,opus_uint32 _ft) argument
193 ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _bits) argument
214 ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits) argument
237 ec_enc_shrink(ec_enc *_this,opus_uint32 _size) argument
244 ec_enc_done(ec_enc *_this) argument
[all...]
H A Dentdec.c91 static int ec_read_byte(ec_dec *_this){ argument
92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0;
95 static int ec_read_byte_from_end(ec_dec *_this){ argument
96 return _this->end_offs<_this->storage?
97 _this->buf[_this
102 ec_dec_normalize(ec_dec *_this) argument
119 ec_dec_init(ec_dec *_this,unsigned char *_buf,opus_uint32 _storage) argument
139 ec_decode(ec_dec *_this,unsigned _ft) argument
146 ec_decode_bin(ec_dec *_this,unsigned _bits) argument
153 ec_dec_update(ec_dec *_this,unsigned _fl,unsigned _fh,unsigned _ft) argument
162 ec_dec_bit_logp(ec_dec *_this,unsigned _logp) argument
177 ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb) argument
198 ec_dec_uint(ec_dec *_this,opus_uint32 _ft) argument
225 ec_dec_bits(ec_dec *_this,unsigned _bits) argument
[all...]
H A Dentdec.h36 void ec_dec_init(ec_dec *_this,unsigned char *_buf,opus_uint32 _storage);
51 unsigned ec_decode(ec_dec *_this,unsigned _ft);
54 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits);
69 void ec_dec_update(ec_dec *_this,unsigned _fl,unsigned _fh,unsigned _ft);
72 int ec_dec_bit_logp(ec_dec *_this,unsigned _logp);
82 int ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb);
90 opus_uint32 ec_dec_uint(ec_dec *_this,opus_uint32 _ft);
98 opus_uint32 ec_dec_bits(ec_dec *_this,unsigned _ftb);
H A Dentcode.h87 static OPUS_INLINE opus_uint32 ec_range_bytes(ec_ctx *_this){ argument
88 return _this->offs;
91 static OPUS_INLINE unsigned char *ec_get_buffer(ec_ctx *_this){ argument
92 return _this->buf;
95 static OPUS_INLINE int ec_get_error(ec_ctx *_this){ argument
96 return _this->error;
105 static OPUS_INLINE int ec_tell(ec_ctx *_this){ argument
106 return _this->nbits_total-EC_ILOG(_this->rng);
115 opus_uint32 ec_tell_frac(ec_ctx *_this);
[all...]
H A Dentenc.h36 void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size);
50 void ec_encode(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _ft);
53 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits);
56 void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp);
65 void ec_enc_icdf(ec_enc *_this,int _s,const unsigned char *_icdf,unsigned _ftb);
71 void ec_enc_uint(ec_enc *_this,opus_uint32 _fl,opus_uint32 _ft);
77 void ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _ftb);
93 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits);
103 void ec_enc_shrink(ec_enc *_this,opus_uint32 _size);
108 void ec_enc_done(ec_enc *_this);
[all...]
H A Dentcode.c65 opus_uint32 ec_tell_frac(ec_ctx *_this){ argument
82 nbits=_this->nbits_total<<BITRES;
83 l=EC_ILOG(_this->rng);
84 r=_this->rng>>(l-16);
/external/libopus/celt/
H A Dentenc.c60 static int ec_write_byte(ec_enc *_this,unsigned _value){ argument
61 if(_this->offs+_this->end_offs>=_this->storage)return -1;
62 _this->buf[_this->offs++]=(unsigned char)_value;
66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ argument
67 if(_this->offs+_this->end_offs>=_this
82 ec_enc_carry_out(ec_enc *_this,int _c) argument
101 ec_enc_normalize(ec_enc *_this) argument
112 ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size) argument
128 ec_encode(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _ft) argument
139 ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits) argument
151 ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp) argument
164 ec_enc_icdf(ec_enc *_this,int _s,const unsigned char *_icdf,unsigned _ftb) argument
175 ec_enc_uint(ec_enc *_this,opus_uint32 _fl,opus_uint32 _ft) argument
193 ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _bits) argument
214 ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits) argument
237 ec_enc_shrink(ec_enc *_this,opus_uint32 _size) argument
244 ec_enc_done(ec_enc *_this) argument
[all...]
H A Dentdec.c91 static int ec_read_byte(ec_dec *_this){ argument
92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0;
95 static int ec_read_byte_from_end(ec_dec *_this){ argument
96 return _this->end_offs<_this->storage?
97 _this->buf[_this
102 ec_dec_normalize(ec_dec *_this) argument
119 ec_dec_init(ec_dec *_this,unsigned char *_buf,opus_uint32 _storage) argument
139 ec_decode(ec_dec *_this,unsigned _ft) argument
146 ec_decode_bin(ec_dec *_this,unsigned _bits) argument
153 ec_dec_update(ec_dec *_this,unsigned _fl,unsigned _fh,unsigned _ft) argument
162 ec_dec_bit_logp(ec_dec *_this,unsigned _logp) argument
177 ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb) argument
198 ec_dec_uint(ec_dec *_this,opus_uint32 _ft) argument
225 ec_dec_bits(ec_dec *_this,unsigned _bits) argument
[all...]
H A Dentdec.h36 void ec_dec_init(ec_dec *_this,unsigned char *_buf,opus_uint32 _storage);
51 unsigned ec_decode(ec_dec *_this,unsigned _ft);
54 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits);
69 void ec_dec_update(ec_dec *_this,unsigned _fl,unsigned _fh,unsigned _ft);
72 int ec_dec_bit_logp(ec_dec *_this,unsigned _logp);
82 int ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb);
90 opus_uint32 ec_dec_uint(ec_dec *_this,opus_uint32 _ft);
98 opus_uint32 ec_dec_bits(ec_dec *_this,unsigned _ftb);
H A Dentcode.h87 static OPUS_INLINE opus_uint32 ec_range_bytes(ec_ctx *_this){ argument
88 return _this->offs;
91 static OPUS_INLINE unsigned char *ec_get_buffer(ec_ctx *_this){ argument
92 return _this->buf;
95 static OPUS_INLINE int ec_get_error(ec_ctx *_this){ argument
96 return _this->error;
105 static OPUS_INLINE int ec_tell(ec_ctx *_this){ argument
106 return _this->nbits_total-EC_ILOG(_this->rng);
115 opus_uint32 ec_tell_frac(ec_ctx *_this);
[all...]
H A Dentenc.h36 void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size);
50 void ec_encode(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _ft);
53 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits);
56 void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp);
65 void ec_enc_icdf(ec_enc *_this,int _s,const unsigned char *_icdf,unsigned _ftb);
71 void ec_enc_uint(ec_enc *_this,opus_uint32 _fl,opus_uint32 _ft);
77 void ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _ftb);
93 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits);
103 void ec_enc_shrink(ec_enc *_this,opus_uint32 _size);
108 void ec_enc_done(ec_enc *_this);
[all...]
H A Dentcode.c65 opus_uint32 ec_tell_frac(ec_ctx *_this){ argument
82 nbits=_this->nbits_total<<BITRES;
83 l=EC_ILOG(_this->rng);
84 r=_this->rng>>(l-16);
/external/qemu/distrib/sdl-1.2.15/src/audio/baudio/
H A DSDL_beaudio.h30 #define _THIS SDL_AudioDevice *_this
37 #define audio_obj (_this->hidden->audio_obj)
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_lowvideo.h32 #define _THIS SDL_VideoDevice *_this
51 #define SDL_Win (_this->hidden->SDL_Win)
52 #define saved_mode (_this->hidden->saved_mode)
53 #define SDL_nummodes (_this->hidden->SDL_nummodes)
54 #define SDL_modelist (_this->hidden->SDL_modelist)
55 #define SDL_BlankCursor (_this->hidden->BlankCursor)
56 #define current_overlay (_this->hidden->overlay)
H A DSDL_sysvideo.cc277 _this->info.current_w = saved_mode.virtual_width;
278 _this->info.current_h = saved_mode.virtual_height;
295 BE_AddMode(_this, ((bpp+7)/8)-1,
310 BE_GL_LoadLibrary(_this, NULL);
314 SDL_BlankCursor = BE_CreateWMCursor(_this, blank_cdata, blank_cmask,
318 _this->info.wm_available = 1;
334 _this->screen->format->BitsPerPixel ) {
437 if(BE_FindClosestFSMode(_this, width, height, bpp, &mode)) {
494 return BE_SetFullScreen(_this, _this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_lowvideo.h31 #define _THIS SDL_VideoDevice *_this
55 #define SDL_Win (_this->hidden->SDL_Win)
56 #define saved_mode (_this->hidden->saved_mode)
57 #define SDL_nummodes (_this->hidden->SDL_nummodes)
58 #define SDL_modelist (_this->hidden->SDL_modelist)
59 #define SDL_BlankCursor (_this->hidden->BlankCursor)
60 #define last_buttons (_this->hidden->last_buttons)
61 #define last_point (_this->hidden->last_point)
62 #define key_flip (_this->hidden->key_flip)
63 #define keyinfo (_this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/
H A DSDL_epocevents_c.h51 #define _THIS SDL_VideoDevice *_this
52 #define Private _this->hidden
/external/qemu/distrib/sdl-1.2.15/src/audio/dart/
H A DSDL_dart.c151 SDL_memset(&(_this->hidden->MixSetupParms), 0, sizeof(MCI_MIXSETUP_PARMS));
152 _this->hidden->MixSetupParms.ulBitsPerSample = iBits;
153 _this->hidden->MixSetupParms.ulFormatTag = MCI_WAVE_FORMAT_PCM;
154 _this->hidden->MixSetupParms.ulSamplesPerSec = iFreq;
155 _this->hidden->MixSetupParms.ulChannels = iChannels;
156 _this->hidden->MixSetupParms.ulFormatMode = MCI_PLAY;
157 _this->hidden->MixSetupParms.ulDeviceType = MCI_DEVTYPE_WAVEFORM_AUDIO;
158 _this->hidden->MixSetupParms.pmixEvent = DARTEventFunc;
161 &(_this->hidden->MixSetupParms), 0);
172 &(_this
[all...]
H A DSDL_dart.h42 #define _THIS SDL_AudioDevice *_this
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.h29 #define _THIS SDL_VideoDevice *_this
30 #define Private _this->hidden
/external/neven/
H A DFaceDetector_jni.cpp96 (JNIEnv *_env, jclass _this)
98 gFaceDetectorOffsets.fd = _env->GetFieldID(_this, "mFD", "J");
99 gFaceDetectorOffsets.sdk = _env->GetFieldID(_this, "mSDK", "J");
100 gFaceDetectorOffsets.dcr = _env->GetFieldID(_this, "mDCR", "J");
101 gFaceDetectorOffsets.width = _env->GetFieldID(_this, "mWidth", "I");
102 gFaceDetectorOffsets.height = _env->GetFieldID(_this, "mHeight", "I");
103 gFaceDetectorOffsets.maxFaces = _env->GetFieldID(_this, "mMaxFaces", "I");
104 gFaceDetectorOffsets.bwbuffer = _env->GetFieldID(_this, "mBWBuffer", "[B");
122 initialize(JNIEnv *_env, jobject _this, argument
176 _env->SetLongField(_this, gFaceDetectorOffset
95 nativeClassInit(JNIEnv *_env, jclass _this) argument
184 destroy(JNIEnv *_env, jobject _this) argument
198 detect(JNIEnv *_env, jobject _this, jobject bitmap) argument
256 get_face(JNIEnv *_env, jobject _this, jobject face, jint index) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuvfuncs.h30 #define _THIS SDL_VideoDevice *_this
/external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
H A DSDL_os2fslib.c1373 hps = WinGetPS(_this->hidden->hwndClient);
1473 _this->hidden->iMouseVisible = 1;
1479 _this->hidden->iMouseVisible = 0;
1497 WinQueryWindowPos(_this->hidden->hwndClient, &swpClient);
1500 WinMapWindowPoints(_this->hidden->hwndFrame, HWND_DESKTOP, &ptlPoints, 1);
1501 lx = ptlPoints.x + (x*swpClient.cx) / _this->hidden->SrcBufferDesc.uiXResolution;
1502 ly = ptlPoints.y + swpClient.cy - ((y*swpClient.cy) / _this->hidden->SrcBufferDesc.uiYResolution) - 1;
1527 os2fslib_UpdateRects(_this, 1, &rect);
1547 (_this->hidden->pSDLSurface) &&
1548 (_this
[all...]
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h353 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) argument
355 _this.m_hess.compute(matrix);
356 _this.m_matT = _this.m_hess.matrixH();
357 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
364 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) argument
369 _this.m_hess.compute(matrix);
370 _this.m_matT = _this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocvideo.cpp290 DisableKeyBlocking(_this); //disable key blocking
342 ConstructWindowL(_this);
445 DrawBackground(_this); // Clear screen
568 _this->UpdateRects = EPOC_DirectUpdate;
639 int w = _this->screen->w;
640 int h = _this->screen->h;
642 w = _this->screen->h;
643 h = _this->screen->w;
647 DrawBackground(_this);
667 fullScreen.w = _this
[all...]

Completed in 1052 milliseconds

12