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

  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 20 typedef unsigned char ByteType;
24 size_t encode(ByteType *&pBuf, IntType pValue);
27 IntType decode(const ByteType *pBuf, size_t &pSize);
30 IntType decode(const ByteType *&pBuf);
53 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
56 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
62 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
65 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
73 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
80 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/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStreamSource.h 56 ByteType<DataType> data;
57 size_t typeSize = sizeof(ByteType<DataType>);
SVGPathByteStream.h 30 union ByteType {
SVGPathByteStreamBuilder.cpp 47 ByteType<DataType> data;
49 size_t typeSize = sizeof(ByteType<DataType>);
  /frameworks/compile/mclinker/unittests/
LEB128Test.cpp 47 leb128::ByteType buffer[2];
48 leb128::ByteType *result;
93 leb128::ByteType buffer[2];
94 leb128::ByteType *result;
139 leb128::ByteType buffer[2];
140 leb128::ByteType *result;
199 leb128::ByteType buffer[2];
235 leb128::ByteType buffer[2];
280 leb128::ByteType content[2];
281 const leb128::ByteType *p
    [all...]
  /art/runtime/verifier/
reg_type.cc 39 ByteType* ByteType::instance_ = NULL;
109 std::string ByteType::Dump() {
284 ByteType* ByteType::CreateInstance(mirror::Class* klass, const std::string& descriptor,
287 instance_ = new ByteType(klass, descriptor, cache_id);
292 ByteType* ByteType::GetInstance() {
297 void ByteType::Destroy() {
reg_type.h 410 class ByteType : public Cat1Type {
416 static ByteType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
419 static ByteType* GetInstance();
422 ByteType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
426 static ByteType* instance_;
reg_type_cache.cc 51 entries_.push_back(ByteType::GetInstance());
106 return *ByteType::GetInstance();
264 ByteType::Destroy();
300 CreatePrimitiveTypeInstance<ByteType>("B");
reg_type_cache.h 92 return *ByteType::GetInstance();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
jdimodel.jar 

Completed in 596 milliseconds