OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Byte
(Results
1 - 25
of
146
) sorted by null
1
2
3
4
5
6
/external/llvm/lib/Object/
YAML.cpp
46
uint8_t
Byte
;
47
StringRef((const char *)&Data[I], 2).getAsInteger(16,
Byte
);
48
OS.write(
Byte
);
63
uint8_t
Byte
= *I;
64
OS << hexdigit(
Byte
>> 4);
65
OS << hexdigit(
Byte
& 0xf);
/libcore/luni/src/test/java/libcore/java/lang/
ByteTest.java
21
final
byte
min =
Byte
.MIN_VALUE;
22
final
byte
zero = (
byte
) 0;
23
final
byte
max =
Byte
.MAX_VALUE;
24
assertTrue(
Byte
.compare(max, max) == 0);
25
assertTrue(
Byte
.compare(min, min) == 0);
26
assertTrue(
Byte
.compare(zero, zero) == 0);
27
assertTrue(
Byte
.compare(max, zero) > 0)
[
all
...]
/bionic/libc/kernel/common/linux/
zconf.h
39
typedef unsigned char
Byte
;
/development/ndk/platforms/android-3/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/external/kernel-headers/original/linux/
zconf.h
52
typedef unsigned char
Byte
; /* 8 bits */
/external/llvm/include/llvm/Support/
LEB128.h
26
uint8_t
Byte
= Value & 0x7f;
29
More = !((((Value == 0 ) && ((
Byte
& 0x40) == 0)) ||
30
((Value == -1) && ((
Byte
& 0x40) != 0))));
32
Byte
|= 0x80; // Mark this
byte
to show that more bytes will follow.
33
OS << char(
Byte
);
41
uint8_t
Byte
= Value & 0x7f;
44
Byte
|= 0x80; // Mark this
byte
to show that more bytes will follow.
45
OS << char(
Byte
);
[
all
...]
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
/prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/linux/
zconf.h
33
typedef unsigned char
Byte
;
Completed in 789 milliseconds
1
2
3
4
5
6