OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Write8
(Results
1 - 11
of
11
) sorted by null
/bootable/recovery/applypatch/
utils.h
25
void
Write8
(long long value, FILE* f);
utils.c
30
void
Write8
(long long value, FILE* f) {
imgdiff.c
967
Write8
(tgt_chunks[i].source_start, f);
968
Write8
(tgt_chunks[i].source_len, f);
969
Write8
(offset, f);
977
Write8
(tgt_chunks[i].source_start, f);
978
Write8
(tgt_chunks[i].source_len, f);
979
Write8
(offset, f);
980
Write8
(tgt_chunks[i].source_uncompressed_len, f);
981
Write8
(tgt_chunks[i].len, f);
/external/llvm/include/llvm/MC/
MCObjectWriter.h
114
void
Write8
(uint8_t Value) {
119
Write8
(uint8_t(Value >> 0));
120
Write8
(uint8_t(Value >> 8));
134
Write8
(uint8_t(Value >> 8));
135
Write8
(uint8_t(Value >> 0));
/external/llvm/lib/Target/PowerPC/
PPCAsmBackend.cpp
73
OW->
Write8
(0);
/external/llvm/lib/Target/ARM/
ARMAsmBackend.cpp
133
OW->
Write8
(0);
142
case 1: OW->
Write8
(0); break;
144
case 3: OW->Write16(0); OW->
Write8
(0xa0); break;
/external/llvm/lib/Target/X86/
X86AsmBackend.cpp
289
OW->
Write8
(0x66);
292
OW->
Write8
(Nops[Rest - 1][i]);
296
OW->
Write8
(0x90);
/external/llvm/lib/MC/
ELFObjectWriter.cpp
82
Write8
(0x7f); // e_ident[EI_MAG0]
83
Write8
('E'); // e_ident[EI_MAG1]
84
Write8
('L'); // e_ident[EI_MAG2]
85
Write8
('F'); // e_ident[EI_MAG3]
87
Write8
(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
90
Write8
(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
92
Write8
(ELF::EV_CURRENT); // e_ident[EI_VERSION]
95
case Triple::FreeBSD:
Write8
(ELF::ELFOSABI_FREEBSD); break;
96
case Triple::Linux:
Write8
(ELF::ELFOSABI_LINUX); break;
97
default:
Write8
(ELF::ELFOSABI_NONE); break
[
all
...]
MCAssembler.cpp
426
case 1: OW->
Write8
(uint8_t (AF.getValue())); break;
451
case 1: OW->
Write8
(uint8_t (FF.getValue())); break;
476
OW->
Write8
(uint8_t(OF.getValue()));
MachObjectWriter.cpp
342
Write8
(Type);
343
Write8
(MSD.SectionIndex);
723
Write8
(0);
WinCOFFObjectWriter.cpp
545
Write8
(S->Data.StorageClass);
546
Write8
(S->Data.NumberOfAuxSymbols);
584
Write8
(i->Aux.SectionDefinition.Selection);
Completed in 265 milliseconds