OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Write8
(Results
1 - 15
of
15
) 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
1008
Write8
(tgt_chunks[i].source_start, f);
1009
Write8
(tgt_chunks[i].source_len, f);
1010
Write8
(offset, f);
1018
Write8
(tgt_chunks[i].source_start, f);
1019
Write8
(tgt_chunks[i].source_len, f);
1020
Write8
(offset, f)
[
all
...]
/external/llvm/include/llvm/MC/
MCObjectWriter.h
116
void
Write8
(uint8_t Value) {
121
Write8
(uint8_t(Value >> 0));
122
Write8
(uint8_t(Value >> 8));
136
Write8
(uint8_t(Value >> 8));
137
Write8
(uint8_t(Value >> 0));
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp
157
case 1: OW->
Write8
(0); break;
159
case 3: OW->Write16(0); OW->
Write8
(0); break;
/external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util.h
87
void
Write8
(const MemLoc &ml, bool expect_race = false) {
tsan_mop.cc
76
t1.
Write8
(l);
96
t1.
Write8
(l);
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmBackend.cpp
108
OW->
Write8
(7);
/external/llvm/lib/MC/
ELFObjectWriter.cpp
437
Write8
(0x7f); // e_ident[EI_MAG0]
438
Write8
('E'); // e_ident[EI_MAG1]
439
Write8
('L'); // e_ident[EI_MAG2]
440
Write8
('F'); // e_ident[EI_MAG3]
442
Write8
(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
445
Write8
(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
447
Write8
(ELF::EV_CURRENT); // e_ident[EI_VERSION]
449
Write8
(TargetObjectWriter->getOSABI());
450
Write8
(0); // e_ident[EI_ABIVERSION]
[
all
...]
MachObjectWriter.cpp
392
Write8
(Type);
393
Write8
(SectionIndex);
[
all
...]
WinCOFFObjectWriter.cpp
584
Write8
(S.Data.StorageClass);
585
Write8
(S.Data.NumberOfAuxSymbols);
623
Write8
(i->Aux.SectionDefinition.Selection);
[
all
...]
MCAssembler.cpp
708
case 1: OW->
Write8
(uint8_t (AF.getValue())); break;
741
case 1: OW->
Write8
(uint8_t (FF.getValue())); break;
761
OW->
Write8
(uint8_t(OF.getValue()));
[
all
...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp
288
OW->
Write8
(0);
301
case 1: OW->
Write8
(0); break;
303
case 3: OW->Write16(0); OW->
Write8
(0xa0); break;
[
all
...]
/external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp
328
OW->
Write8
(0x90);
338
OW->
Write8
(0x66);
341
OW->
Write8
(Nops[Rest - 1][i]);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp
250
OW->
Write8
(0);
Completed in 7302 milliseconds