OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteType
(Results
1 - 7
of
7
) sorted by null
/frameworks/compile/mclinker/include/mcld/Support/
LEB128.h
23
typedef unsigned char
ByteType
;
27
size_t encode(
ByteType
*&pBuf, IntType pValue);
30
IntType decode(const
ByteType
*pBuf, size_t &pSize);
33
IntType decode(const
ByteType
*&pBuf);
56
size_t encode<uint64_t>(
ByteType
*&pBuf, uint64_t pValue);
59
size_t encode<uint32_t>(
ByteType
*&pBuf, uint32_t pValue);
65
size_t encode<int64_t>(
ByteType
*&pBuf, int64_t pValue);
68
size_t encode<int32_t>(
ByteType
*&pBuf, int32_t pValue);
76
uint64_t decode<uint64_t>(const
ByteType
*pBuf, size_t &pSize);
83
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/webkit/Source/WebCore/svg/
SVGPathByteStreamBuilder.h
57
template<typename
ByteType
>
58
void writeType(const
ByteType
& type)
60
size_t typeSize = sizeof(
ByteType
);
SVGPathByteStreamSource.h
59
template<typename DataType, typename
ByteType
>
62
ByteType
data;
63
size_t typeSize = sizeof(
ByteType
);
/frameworks/compile/mclinker/unittests/
LEB128Test.cpp
46
leb128::
ByteType
buffer[2];
47
leb128::
ByteType
*result;
92
leb128::
ByteType
buffer[2];
93
leb128::
ByteType
*result;
138
leb128::
ByteType
buffer[2];
139
leb128::
ByteType
*result;
198
leb128::
ByteType
buffer[2];
234
leb128::
ByteType
buffer[2];
279
leb128::
ByteType
content[2];
280
const leb128::
ByteType
*p
[
all
...]
/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 190 milliseconds