HomeSort by relevance Sort by last modified time
    Searched refs:ByteType (Results 1 - 11 of 11) sorted by null

  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 19 typedef unsigned char ByteType;
23 size_t encode(ByteType*& pBuf, IntType pValue);
26 IntType decode(const ByteType* pBuf, size_t& pSize);
29 IntType decode(const ByteType*& pBuf);
52 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue);
55 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue);
61 size_t encode<int64_t>(ByteType*& pBuf, int64_t pValue);
64 size_t encode<int32_t>(ByteType*& pBuf, int32_t pValue);
72 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize);
79 uint64_t decode<uint64_t>(const ByteType*& pBuf)
    [all...]
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue) {
20 ByteType byte = pValue & 0x7f;
36 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue) {
38 *pBuf++ = static_cast<ByteType>(pValue);
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
42 *pBuf++ = static_cast<ByteType>((pValue >> 7) & 0x7f);
45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
47 *pBuf++ = static_cast<ByteType>((pValue >> 14) & 0x7f);
50 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80)
    [all...]
  /external/webrtc/webrtc/base/
buffer.h 26 // (Internal; please don't use outside this file.) ByteType<T>::t is int if T
30 // template <typename T, typename ByteType<T>::t = 0>
35 struct ByteType {
61 template <typename T, typename internal::ByteType<T>::t = 0>
64 template <typename T, typename internal::ByteType<T>::t = 0>
71 template <typename T, size_t N, typename internal::ByteType<T>::t = 0>
79 template <typename T = uint8_t, typename internal::ByteType<T>::t = 0>
84 template <typename T = uint8_t, typename internal::ByteType<T>::t = 0>
123 template <typename T, typename internal::ByteType<T>::t = 0>
129 template <typename T, size_t N, typename internal::ByteType<T>::t = 0
    [all...]
  /frameworks/compile/mclinker/unittests/
LEB128Test.cpp 42 leb128::ByteType buffer[2];
43 leb128::ByteType* result;
88 leb128::ByteType buffer[2];
89 leb128::ByteType* result;
134 leb128::ByteType buffer[2];
135 leb128::ByteType* result;
194 leb128::ByteType buffer[2];
229 leb128::ByteType buffer[2];
274 leb128::ByteType content[2];
275 const leb128::ByteType* p
    [all...]
  /art/runtime/verifier/
reg_type-inl.h 176 inline const ByteType* ByteType::GetInstance() {
reg_type_cache-inl.h 49 inline const ByteType& RegTypeCache::Byte() {
50 return *ByteType::GetInstance();
reg_type_cache.h 40 class ByteType;
114 const ByteType& Byte() REQUIRES_SHARED(Locks::mutator_lock_);
reg_type.cc 45 const ByteType* ByteType::instance_ = nullptr;
94 std::string ByteType::Dump() const {
230 const ByteType* ByteType::CreateInstance(mirror::Class* klass, const StringPiece& descriptor,
233 instance_ = new ByteType(klass, descriptor, cache_id);
237 void ByteType::Destroy() {
reg_type.h 507 class ByteType FINAL : public Cat1Type {
511 static const ByteType* CreateInstance(mirror::Class* klass,
515 static const ByteType* GetInstance() PURE;
523 ByteType(mirror::Class* klass, const StringPiece& descriptor,
528 static const ByteType* instance_;
    [all...]
reg_type_cache.cc 57 entries_.push_back(ByteType::GetInstance());
113 return *ByteType::GetInstance();
296 ByteType::Destroy();
333 CreatePrimitiveTypeInstance<ByteType>("B");
655 ByteType::GetInstance()->VisitRoots(visitor, ri);
  /system/tools/aidl/
type_cpp.cpp 155 class ByteType : public Type {
157 ByteType()
165 virtual ~ByteType() = default;
169 DISALLOW_COPY_AND_ASSIGN(ByteType);
414 Add(new ByteType());

Completed in 170 milliseconds