Searched defs:Decode (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dscoped_thread_state_change-inl.h89 inline ObjPtr<T> ScopedObjectAccessAlreadyRunnable::Decode(jobject obj) const { function in class:art::ScopedObjectAccessAlreadyRunnable
H A Dstack_map.h772 // Decode the encoding from a pointer, updates the pointer.
773 void Decode(const uint8_t** ptr) { function in class:art::DexRegisterLocation::StackMapEncoding
952 // Decode the encoding from a pointer, updates the pointer.
953 void Decode(const uint8_t** ptr) { function in class:art::DexRegisterLocation::InlineInfoEncoding
1094 void Decode(const uint8_t** ptr) { function in class:art::DexRegisterLocation::BitRegionEncoding
1118 ALWAYS_INLINE void Decode(const uint8_t** ptr) { function in struct:art::DexRegisterLocation::BitEncodingTable
1120 encoding.Decode(ptr);
1158 ALWAYS_INLINE void Decode(const uint8_t** ptr) { function in struct:art::DexRegisterLocation::ByteSizedTable
1210 void Decode(const uint8_t** ptr) { function in class:art::DexRegisterLocation::InvokeInfoEncoding
1285 dex_register_map.Decode(
[all...]
/art/runtime/verifier/
H A Dverifier_deps.cc572 template<typename T> inline T Decode(uint32_t in);
574 template<> inline uint16_t Decode<uint16_t>(uint32_t in) { function in namespace:art::verifier::__anon181
577 template<> inline uint32_t Decode<uint32_t>(uint32_t in) { function in namespace:art::verifier::__anon181
580 template<> inline dex::TypeIndex Decode<dex::TypeIndex>(uint32_t in) { function in namespace:art::verifier::__anon181
583 template<> inline dex::StringIndex Decode<dex::StringIndex>(uint32_t in) { function in namespace:art::verifier::__anon181
594 *t = Decode<dex::TypeIndex>(DecodeUint32WithOverflowCheck(in, end));
605 T1 v1 = Decode<T1>(DecodeUint32WithOverflowCheck(in, end));
606 T2 v2 = Decode<T2>(DecodeUint32WithOverflowCheck(in, end));
619 T1 v1 = Decode<T1>(DecodeUint32WithOverflowCheck(in, end));
620 T2 v2 = Decode<T
[all...]

Completed in 343 milliseconds