OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:u8
(Results
1 - 25
of
154
) sorted by null
1
2
3
4
5
6
7
/external/chromium_org/net/base/
big_endian_unittest.cc
14
uint8
u8
;
local
26
EXPECT_TRUE(reader.ReadU8(&
u8
));
27
EXPECT_EQ(0x4,
u8
);
41
uint8
u8
;
local
58
EXPECT_FALSE(reader.ReadU8(&
u8
));
80
uint8
u8
= 0;
local
95
EXPECT_FALSE(writer.WriteU8(
u8
));
/external/linux-tools-perf/util/
types.h
16
typedef unsigned char
u8
;
typedef
/external/oprofile/libutil/
op_types.h
20
typedef unsigned char
u8
;
typedef
/art/jdwpspy/
Common.h
16
typedef uint64_t
u8
;
typedef
62
INLINE
u8
get8BE(unsigned char const* pSrc) {
63
u8
result;
65
result = (
u8
) *pSrc++ << 56;
66
result |= (
u8
) *pSrc++ << 48;
67
result |= (
u8
) *pSrc++ << 40;
68
result |= (
u8
) *pSrc++ << 32;
69
result |= (
u8
) *pSrc++ << 24;
70
result |= (
u8
) *pSrc++ << 16;
71
result |= (
u8
) *pSrc++ << 8
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/base/
basictypes_unittest.cc
46
uint8
u8
= 1u;
local
54
EXPECT_EQ(1u, sizeof(
u8
));
62
EXPECT_LT(0u,
u8
);
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_locl.h
71
# define PUTU32(ct, st) { (ct)[0] = (
u8
)((st) >> 24); (ct)[1] = (
u8
)((st) >> 16); (ct)[2] = (
u8
)((st) >> 8); (ct)[3] = (
u8
)(st); }
80
typedef unsigned char
u8
;
typedef
/external/liblzf/
lzfP.h
156
typedef unsigned char
u8
;
typedef
159
# define LZF_HSLOT_BIAS ((const
u8
*)in_data)
163
typedef const
u8
*LZF_HSLOT;
/external/openssh/
rijndael.h
35
typedef unsigned char
u8
;
typedef
/external/openssl/crypto/aes/
aes_locl.h
71
# define PUTU32(ct, st) { (ct)[0] = (
u8
)((st) >> 24); (ct)[1] = (
u8
)((st) >> 16); (ct)[2] = (
u8
)((st) >> 8); (ct)[3] = (
u8
)(st); }
80
typedef unsigned char
u8
;
typedef
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
basetype.h
28
typedef unsigned char
u8
;
typedef
/dalvik/dexgen/src/com/android/dexgen/util/
Hex.java
36
public static String
u8
(long v) {
method in class:Hex
/dalvik/dx/src/com/android/dx/util/
Hex.java
36
public static String
u8
(long v) {
method in class:Hex
/external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java
36
public static String
u8
(long v) {
method in class:Hex
/external/elfutils/libcpu/
memory-access.h
86
uint64_t
u8
;
member in union:unaligned
137
return bswap_64 (up->
u8
);
138
return up->
u8
;
145
return (int64_t) bswap_64 (up->
u8
);
/external/kernel-headers/original/asm-arm/
types.h
39
typedef unsigned char
u8
;
typedef
/external/kernel-headers/original/asm-x86/
types.h
48
typedef unsigned char
u8
;
typedef
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Hex.java
48
public static String
u8
(long v) {
method in class:Hex
/external/valgrind/main/none/tests/amd64/
avx-1.c
14
typedef union { UChar
u8
[32]; UInt u32[8]; } YMM;
member in union:__anon28331
23
printf("%02x", (UInt)vec->
u8
[i]);
[
all
...]
/system/core/libsparse/
sparse_defs.h
34
#define __u8
u8
40
typedef unsigned char
u8
;
typedef
/external/chromium_org/third_party/skia/src/core/
SkBuffer.h
79
uint8_t
u8
;
local
80
if (this->readU8(&
u8
)) {
81
*x = (
u8
!= 0);
/external/elfutils/libdw/
memory-access.h
183
uint64_t
u8
;
member in union:unaligned
234
return bswap_64 (up->
u8
);
235
return up->
u8
;
242
return (int64_t) bswap_64 (up->
u8
);
/external/qemu/
aes.c
39
typedef uint8_t
u8
;
typedef
44
# define PUTU32(ct, st) { (ct)[0] = (
u8
)((st) >> 24); (ct)[1] = (
u8
)((st) >> 16); (ct)[2] = (
u8
)((st) >> 8); (ct)[3] = (
u8
)(st); }
[
all
...]
/external/skia/src/core/
SkBuffer.h
79
uint8_t
u8
;
local
80
if (this->readU8(&
u8
)) {
81
*x = (
u8
!= 0);
/frameworks/av/media/mtp/
MtpProperty.h
29
uint8_t
u8
;
member in union:android::MtpPropertyValue::__anon29982
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
x_tables.h
93
u_int8_t
u8
;
member in struct:_xt_align
Completed in 762 milliseconds
1
2
3
4
5
6
7