/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 | 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.h | 93 static OPUS_INLINE opus_uint32 ec_range_bytes(ec_ctx *_this){ in ec_range_bytes() argument 94 return _this->offs; in ec_range_bytes() 97 static OPUS_INLINE unsigned char *ec_get_buffer(ec_ctx *_this){ in ec_get_buffer() argument 98 return _this->buf; in ec_get_buffer() 101 static OPUS_INLINE int ec_get_error(ec_ctx *_this){ in ec_get_error() argument 102 return _this->error; in ec_get_error() 111 static OPUS_INLINE int ec_tell(ec_ctx *_this){ in ec_tell() argument 112 return _this->nbits_total-EC_ILOG(_this->rng); in ec_tell() 121 opus_uint32 ec_tell_frac(ec_ctx *_this);
|
D | entcode.c | 69 opus_uint32 ec_tell_frac(ec_ctx *_this){ in ec_tell_frac() argument 77 nbits=_this->nbits_total<<BITRES; in ec_tell_frac() 78 l=EC_ILOG(_this->rng); in ec_tell_frac() 79 r=_this->rng>>(l-16); in ec_tell_frac() 86 opus_uint32 ec_tell_frac(ec_ctx *_this){ in ec_tell_frac() argument 103 nbits=_this->nbits_total<<BITRES; in ec_tell_frac() 104 l=EC_ILOG(_this->rng); in ec_tell_frac() 105 r=_this->rng>>(l-16); in ec_tell_frac()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperBuilder.java | 102 return _this(); in enable() 107 return _this(); in disable() 112 return _this(); in configure() 119 return _this(); in enable() 126 return _this(); in disable() 131 return _this(); in configure() 138 return _this(); in enable() 145 return _this(); in disable() 150 return _this(); in configure() 161 return _this(); in enable() [all …]
|
/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/jackson-core/src/main/java/com/fasterxml/jackson/core/ |
D | TSFBuilder.java | 121 return _this(); in enable() 126 return _this(); in disable() 137 return _this(); in enable() 145 return _this(); in enable() 150 return _this(); in disable() 158 return _this(); in disable() 169 return _this(); in enable() 177 return _this(); in enable() 182 return _this(); in disable() 190 return _this(); in disable() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | Frame.java | 40 protected static UninitializedObjectType _this; field in Frame 132 return _this; in getThis() 139 public static void setThis(final UninitializedObjectType _this) { in setThis() argument 140 Frame._this = _this; in setThis()
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | ComplexSchur.h | 356 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) 358 _this.m_hess.compute(matrix); 359 _this.m_matT = _this.m_hess.matrixH(); 360 if(computeU) _this.m_matU = _this.m_hess.matrixQ(); 367 static void run(ComplexSchur<MatrixType>& _this, const MatrixType& matrix, bool computeU) 372 _this.m_hess.compute(matrix); 373 _this.m_matT = _this.m_hess.matrixH().template cast<ComplexScalar>(); 377 MatrixType Q = _this.m_hess.matrixQ(); 378 _this.m_matU = Q.template cast<ComplexScalar>();
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 920 static void run(DenseBase<Derived>& _this, Index rows, Index cols) 922 if (_this.rows() == rows && _this.cols() == cols) return; 925 …if ( ( Derived::IsRowMajor && _this.cols() == cols) || // row-major and we change only the number … 926 …(!Derived::IsRowMajor && _this.rows() == rows) ) // column-major and we change only the number of… 929 _this.derived().m_storage.conservativeResize(rows*cols,rows,cols); 935 const Index common_rows = numext::mini(rows, _this.rows()); 936 const Index common_cols = numext::mini(cols, _this.cols()); 937 tmp.block(0,0,common_rows,common_cols) = _this.block(0,0,common_rows,common_cols); 938 _this.derived().swap(tmp); 942 static void run(DenseBase<Derived>& _this, const DenseBase<OtherDerived>& other) [all …]
|
/external/arm-trusted-firmware/include/lib/cpus/aarch32/ |
D | cpu_macros.S | 94 .macro fill_constants _count:req, _this, _rest:vararg 97 .ifb \_this 100 .word \_this 106 fill_constants \_count-1, \_this
|
/external/icu/icu4c/source/common/ |
D | ucnv_lmb.cpp | 586 static void U_CALLCONV _LMBCSClose(UConverter * _this); 624 _LMBCSOpen##n(UConverter* _this, UConverterLoadArgs* pArgs, UErrorCode* err) \ 625 { _LMBCSOpenWorker(_this, pArgs, err, n); } 631 _LMBCSOpenWorker(UConverter* _this, in _LMBCSOpenWorker() argument 637 _this->extraInfo = extraInfo; in _LMBCSOpenWorker() 656 _LMBCSClose(_this); in _LMBCSOpenWorker() 670 _LMBCSClose(UConverter * _this) in _LMBCSClose() argument 672 if (_this->extraInfo != NULL) in _LMBCSClose() 675 UConverterDataLMBCS * extraInfo = (UConverterDataLMBCS *) _this->extraInfo; in _LMBCSClose() 682 if (!_this->isExtraLocal) { in _LMBCSClose() [all …]
|
D | ucnv2022.cpp | 832 changeState_2022(UConverter* _this, in changeState_2022() argument 838 UConverterDataISO2022* myData2022 = ((UConverterDataISO2022*)_this->extraInfo); in changeState_2022() 841 int8_t initialToULength = _this->toULength; in changeState_2022() 847 _this->toUBytes[_this->toULength++]=(uint8_t)c; in changeState_2022() 868 _this->toULength = 0; in changeState_2022() 903 _this->toUCallbackReason = UCNV_UNASSIGNED; in changeState_2022() 907 _this->mode = UCNV_SI; in changeState_2022() 912 _this->mode = UCNV_SO; in changeState_2022() 1026 _this->toULength = 0; in changeState_2022() 1028 if(_this->toULength>1) { in changeState_2022() [all …]
|
/external/arm-trusted-firmware/include/lib/cpus/aarch64/ |
D | cpu_macros.S | 105 .macro fill_constants _count:req, _this, _rest:vararg 108 .ifb \_this 111 .quad \_this 117 fill_constants \_count-1, \_this
|
/external/deqp/framework/platform/lnx/wayland/ |
D | tcuLnxWayland.cpp | 56 Display* _this = static_cast<Display*>(data); in handleGlobal() local 60 …_this->m_compositor = static_cast<struct wl_compositor*>(wl_registry_bind(registry, id, &wl_compos… in handleGlobal() 63 …_this->m_shell = static_cast<struct wl_shell*>(wl_registry_bind(registry, id, &wl_shell_interface,… in handleGlobal()
|
/external/llvm-project/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/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/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | JsonNode.java | 698 return _this(); in require() 715 return _this(); in requireNonNull() 1151 protected <T extends JsonNode> T _this() { in _this() method in JsonNode
|
/external/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 348 DoubleValue* _this = reinterpret_cast< DoubleValue* >(object); in ArenaDtor() local 349 (void)_this; in ArenaDtor() 610 FloatValue* _this = reinterpret_cast< FloatValue* >(object); in ArenaDtor() local 611 (void)_this; in ArenaDtor() 872 Int64Value* _this = reinterpret_cast< Int64Value* >(object); in ArenaDtor() local 873 (void)_this; in ArenaDtor() 1136 UInt64Value* _this = reinterpret_cast< UInt64Value* >(object); in ArenaDtor() local 1137 (void)_this; in ArenaDtor() 1400 Int32Value* _this = reinterpret_cast< Int32Value* >(object); in ArenaDtor() local 1401 (void)_this; in ArenaDtor() [all …]
|
D | empty.pb.cc | 122 Empty* _this = reinterpret_cast< Empty* >(object); in ArenaDtor() local 123 (void)_this; in ArenaDtor()
|
D | duration.pb.cc | 131 Duration* _this = reinterpret_cast< Duration* >(object); in ArenaDtor() local 132 (void)_this; in ArenaDtor()
|
D | timestamp.pb.cc | 131 Timestamp* _this = reinterpret_cast< Timestamp* >(object); in ArenaDtor() local 132 (void)_this; in ArenaDtor()
|
/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()
|