/external/libopus/celt/ |
D | entenc.c | 60 static int ec_write_byte(ec_enc *_this,unsigned _value){ in ec_write_byte() argument 61 if(_this->offs+_this->end_offs>=_this->storage)return -1; in ec_write_byte() 62 _this->buf[_this->offs++]=(unsigned char)_value; in ec_write_byte() 66 static int ec_write_byte_at_end(ec_enc *_this,unsigned _value){ in ec_write_byte_at_end() argument 67 if(_this->offs+_this->end_offs>=_this->storage)return -1; in ec_write_byte_at_end() 68 _this->buf[_this->storage-++(_this->end_offs)]=(unsigned char)_value; in ec_write_byte_at_end() 82 static void ec_enc_carry_out(ec_enc *_this,int _c){ in ec_enc_carry_out() argument 89 if(_this->rem>=0)_this->error|=ec_write_byte(_this,_this->rem+carry); in ec_enc_carry_out() 90 if(_this->ext>0){ in ec_enc_carry_out() 93 do _this->error|=ec_write_byte(_this,sym); in ec_enc_carry_out() [all …]
|
D | entdec.c | 91 static int ec_read_byte(ec_dec *_this){ in ec_read_byte() argument 92 return _this->offs<_this->storage?_this->buf[_this->offs++]:0; in ec_read_byte() 95 static int ec_read_byte_from_end(ec_dec *_this){ in ec_read_byte_from_end() argument 96 return _this->end_offs<_this->storage? in ec_read_byte_from_end() 97 _this->buf[_this->storage-++(_this->end_offs)]:0; in ec_read_byte_from_end() 102 static void ec_dec_normalize(ec_dec *_this){ in ec_dec_normalize() argument 104 while(_this->rng<=EC_CODE_BOT){ in ec_dec_normalize() 106 _this->nbits_total+=EC_SYM_BITS; in ec_dec_normalize() 107 _this->rng<<=EC_SYM_BITS; in ec_dec_normalize() 109 sym=_this->rem; in ec_dec_normalize() [all …]
|
D | entenc.h | 36 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);
|
D | entcode.h | 87 static OPUS_INLINE opus_uint32 ec_range_bytes(ec_ctx *_this){ in ec_range_bytes() argument 88 return _this->offs; in ec_range_bytes() 91 static OPUS_INLINE unsigned char *ec_get_buffer(ec_ctx *_this){ in ec_get_buffer() argument 92 return _this->buf; in ec_get_buffer() 95 static OPUS_INLINE int ec_get_error(ec_ctx *_this){ in ec_get_error() argument 96 return _this->error; in ec_get_error() 105 static OPUS_INLINE int ec_tell(ec_ctx *_this){ in ec_tell() argument 106 return _this->nbits_total-EC_ILOG(_this->rng); in ec_tell() 115 opus_uint32 ec_tell_frac(ec_ctx *_this);
|
D | entdec.h | 36 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);
|
D | entcode.c | 65 opus_uint32 ec_tell_frac(ec_ctx *_this){ in ec_tell_frac() argument 82 nbits=_this->nbits_total<<BITRES; in ec_tell_frac() 83 l=EC_ILOG(_this->rng); in ec_tell_frac() 84 r=_this->rng>>(l-16); in ec_tell_frac()
|
/external/neven/ |
D | FaceDetector_jni.cpp | 94 (JNIEnv *_env, jclass _this) in nativeClassInit() argument 96 gFaceDetectorOffsets.fd = _env->GetFieldID(_this, "mFD", "J"); in nativeClassInit() 97 gFaceDetectorOffsets.sdk = _env->GetFieldID(_this, "mSDK", "J"); in nativeClassInit() 98 gFaceDetectorOffsets.dcr = _env->GetFieldID(_this, "mDCR", "J"); in nativeClassInit() 99 gFaceDetectorOffsets.width = _env->GetFieldID(_this, "mWidth", "I"); in nativeClassInit() 100 gFaceDetectorOffsets.height = _env->GetFieldID(_this, "mHeight", "I"); in nativeClassInit() 101 gFaceDetectorOffsets.maxFaces = _env->GetFieldID(_this, "mMaxFaces", "I"); in nativeClassInit() 102 gFaceDetectorOffsets.bwbuffer = _env->GetFieldID(_this, "mBWBuffer", "[B"); in nativeClassInit() 117 initialize(JNIEnv *_env, jobject _this, in initialize() argument 171 _env->SetLongField(_this, gFaceDetectorOffsets.fd, (jlong)fd); in initialize() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 682 static void run(DenseBase<Derived>& _this, Index rows, Index cols) 684 if (_this.rows() == rows && _this.cols() == cols) return; 687 …if ( ( Derived::IsRowMajor && _this.cols() == cols) || // row-major and we change only the number … 688 …(!Derived::IsRowMajor && _this.rows() == rows) ) // column-major and we change only the number of… 691 _this.derived().m_storage.conservativeResize(rows*cols,rows,cols); 697 const Index common_rows = (std::min)(rows, _this.rows()); 698 const Index common_cols = (std::min)(cols, _this.cols()); 699 tmp.block(0,0,common_rows,common_cols) = _this.block(0,0,common_rows,common_cols); 700 _this.derived().swap(tmp); 704 static void run(DenseBase<Derived>& _this, const DenseBase<OtherDerived>& other) [all …]
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | ComplexSchur.h | 353 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) 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) 369 _this.m_hess.compute(matrix); 370 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>(); 374 MatrixType Q = _this.m_hess.matrixQ(); 375 _this.m_matU = Q.template cast<ComplexScalar>();
|
/external/icu/icu4c/source/common/ |
D | ucnv_lmb.c | 583 static void _LMBCSClose(UConverter * _this); 618 _LMBCSOpen##n(UConverter* _this, UConverterLoadArgs* pArgs, UErrorCode* err) \ 619 { _LMBCSOpenWorker(_this, pArgs, err, n); } 625 _LMBCSOpenWorker(UConverter* _this, in _LMBCSOpenWorker() argument 630 UConverterDataLMBCS * extraInfo = _this->extraInfo = in _LMBCSOpenWorker() 650 _LMBCSClose(_this); in _LMBCSOpenWorker() 663 _LMBCSClose(UConverter * _this) in _LMBCSClose() argument 665 if (_this->extraInfo != NULL) in _LMBCSClose() 668 UConverterDataLMBCS * extraInfo = (UConverterDataLMBCS *) _this->extraInfo; in _LMBCSClose() 675 if (!_this->isExtraLocal) { in _LMBCSClose() [all …]
|
D | ucnv2022.cpp | 843 changeState_2022(UConverter* _this, in changeState_2022() argument 849 UConverterDataISO2022* myData2022 = ((UConverterDataISO2022*)_this->extraInfo); in changeState_2022() 852 int8_t initialToULength = _this->toULength; in changeState_2022() 858 _this->toUBytes[_this->toULength++]=(uint8_t)c; in changeState_2022() 879 _this->toULength = 0; in changeState_2022() 914 _this->toUCallbackReason = UCNV_UNASSIGNED; in changeState_2022() 918 _this->mode = UCNV_SI; in changeState_2022() 923 _this->mode = UCNV_SO; in changeState_2022() 1037 _this->toULength = 0; in changeState_2022() 1039 if(_this->toULength>1) { in changeState_2022() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2010-09-01-RemoveCopyByCommutingDef.ll | 7 define void @f(i32* %w, i32* %h, i8* %_this, i8* %image) nounwind ssp { 8 %x1 = tail call i64 @g(i8* %_this, i8* %image) nounwind ; <i64> [#uses=3]
|
/external/emma/tools/java/com/vladium/tools/ |
D | ClassDep.java | 75 final ClassDep _this = new ClassDep (rootSet, classPath); in main() local 76 final String [] deps = _this.getDependencies (true); in main()
|
/external/opencv3/samples/winrt/ImageManipulations/common/ |
D | LayoutAwarePage.cpp | 280 _this = this; 322 _this = nullptr;
|
D | LayoutAwarePage.h | 85 LayoutAwarePage^ _this; // Strong reference to self, cleaned up in OnUnload
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/ |
D | README.rst | 206 .. _this: http://docs.pythonboto.org/en/latest/boto_config_tut.html
|
/external/llvm/docs/ |
D | CommandLine.rst | 811 .. _this section for more information:
|