HomeSort by relevance Sort by last modified time
    Searched refs:Endianness (Results 1 - 25 of 46) sorted by null

1 2

  /external/google-breakpad/src/common/
test_assembler.h 241 enum Endianness {
272 Section(Endianness endianness = kUnsetEndian)
273 : endianness_(endianness) { };
279 // Set the default endianness of this section to ENDIANNESS. This
281 // assembler's default endianness was set, this is the
282 void set_endianness(Endianness endianness) {
283 endianness_ = endianness;
287 Endianness endianness() const { return endianness_; } function in class:google_breakpad::test_assembler::Section
459 Endianness endianness; member in struct:google_breakpad::test_assembler::Section::Reference
    [all...]
test_assembler.cc 205 static inline void InsertEndian(test_assembler::Endianness endianness,
208 if (endianness == kLittleEndian) {
214 assert(endianness == kBigEndian);
221 Section &Section::Append(Endianness endianness, size_t size, uint64_t number) {
222 InsertEndian(endianness, size, number,
227 Section &Section::Append(Endianness endianness, size_t size,
233 return Append(endianness, size, value)
    [all...]
  /external/google-breakpad/src/common/dwarf/
bytereader.h 42 enum Endianness {
53 // eight-byte values according to ENDIANNESS, absolute machine-sized
57 explicit ByteReader(enum Endianness endianness);
65 // number, using this ByteReader's endianness.
69 // number, using this ByteReader's endianness. This function returns
76 // bit number, using this ByteReader's endianness.
136 // integer, respecting this ByteReader's endianness and address size. You
161 // endianness. Set *LEN to the length of the initial length in
178 // integer, respecting the ByteReader's endianness. In 32-bit DWARF, th
    [all...]
cfi_assembler.h 50 using google_breakpad::test_assembler::Endianness;
93 // Create a CFISection whose endianness is ENDIANNESS, and where
98 CFISection(Endianness endianness, size_t address_size,
100 : Section(endianness), address_size_(address_size), eh_frame_(eh_frame),
173 // endianness. Return a reference to this section.
175 Section::Append(endianness(), address_size_, address);
179 Section::Append(endianness(), address_size_, address);
dwarf2reader_die_unittest.cc 47 using google_breakpad::test_assembler::Endianness;
150 DwarfHeaderParams(Endianness endianness, size_t format_size,
152 : endianness(endianness), format_size(format_size),
154 Endianness endianness; member in struct:DwarfHeaderParams
172 info.set_endianness(GetParam().endianness);
197 ByteReader byte_reader(GetParam().endianness == kLittleEndian ?
247 info.set_endianness(params.endianness);
    [all...]
bytereader.cc 37 ByteReader::ByteReader(enum Endianness endian)
  /external/google-breakpad/src/common/linux/
synth_elf.h 56 using test_assembler::Endianness;
66 StringTable(Endianness endianness = kUnsetEndian)
67 : Section(endianness) {
98 Endianness endianness = kLittleEndian);
166 SymbolTable(Endianness endianness, size_t addr_size, StringTable& table);
183 Notes(Endianness endianness)
    [all...]
elf_symbols_to_module_unittest.cc 49 using google_breakpad::test_assembler::Endianness;
60 ELFSymbolsToModuleTestFixture(Endianness endianness,
62 section(endianness),
63 table(endianness),
75 section.endianness() == kBigEndian,
93 public TestWithParam<Endianness> {
250 // Run all the 32-bit tests with both endianness
263 public TestWithParam<Endianness> {
367 // Run all the 64-bit tests with both endianness
    [all...]
synth_elf.cc 16 Endianness endianness)
17 : Section(endianness),
20 program_header_table_(endianness),
22 section_header_table_(endianness),
23 section_header_strings_(endianness) {
41 D8(endianness == kLittleEndian ? ELFDATA2LSB : ELFDATA2MSB);
59 Append(endianness, addr_size_, 0);
61 Append(endianness, addr_size_, program_header_label_);
63 Append(endianness, addr_size_, section_header_label_)
    [all...]
  /frameworks/av/media/img_utils/src/
EndianUtils.cpp 22 EndianOutput::EndianOutput(Output* out, Endianness end)
36 void EndianOutput::setEndianness(Endianness end) {
44 Endianness EndianOutput::getEndianness() const {
TiffWriter.cpp 60 Endianness end) {
132 status_t TiffWriter::write(Output* out, Endianness end) {
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 53 void setValueProfDataEndianness(support::endianness Endianness);
InstrProfReader.h 192 support::endianness getDataEndianness() const {
193 support::endianness HostEndian = getHostEndianness();
238 // Endianness of the input value profile data.
241 support::endianness ValueProfDataEndianness;
278 void setValueProfDataEndianness(support::endianness Endianness) {
279 ValueProfDataEndianness = Endianness;
292 virtual void setValueProfDataEndianness(support::endianness Endianness) = 0;
322 void setValueProfDataEndianness(support::endianness Endianness) override
    [all...]
InstrProfData.inc 220 void swapBytes(support::endianness Old, support::endianness New);
276 support::endianness SrcDataEndianness);
278 * Swap byte order from \c Endianness order to host byte order.
280 void swapBytesToHost(support::endianness Endianness);
282 * Swap byte order from host byte order to \c Endianness order.
284 void swapBytesFromHost(support::endianness Endianness);
664 /* Magic number to detect file format and endianness
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
EndianUtils.h 32 * Endianness types supported.
34 enum ANDROID_API Endianness {
35 UNDEFINED_ENDIAN, // Default endianness will be used.
41 * Convert from the native device endianness to big endian.
47 * Convert from the native device endianness to little endian.
53 * A utility class for writing to an Output with the given endianness.
61 EndianOutput(Output* out, Endianness end=LITTLE);
76 * Set the endianness to use when writing.
78 virtual void setEndianness(Endianness end);
81 * Get the currently configured endianness
    [all...]
TiffEntryImpl.h 38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
47 Endianness getEndianness() const;
58 Endianness mEnd;
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end,
113 Endianness TiffEntryImpl<T>::getEndianness() const {
154 Endianness tmp = UNDEFINED_ENDIAN;
TiffEntry.h 72 * Get the defined endianness for this entry. If this is defined,
75 virtual Endianness getEndianness() const = 0;
TiffWriter.h 47 * - An 8-byte file header containing an endianness indicator, the TIFF
94 Endianness end = LITTLE);
107 virtual status_t write(Output* out, Endianness end = LITTLE);
239 * Returns a TiffEntry with the given tag, type, count, endianness,
244 uint32_t count, Endianness end, const T* data);
315 Endianness end, const T* data) {
  /external/mesa3d/src/gallium/include/pipe/
p_config.h 152 #error Unknown Endianness
  /external/llvm/lib/ProfileData/
InstrProf.cpp 357 // For writing/serializing, Old is the host endianness, and New is
359 // is the on-disk source endianness, and New is the host endianness.
360 void ValueProfRecord::swapBytes(support::endianness Old,
361 support::endianness New) {
397 static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) {
431 support::endianness Endianness) {
437 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness);
444 VPD->swapBytesToHost(Endianness);
    [all...]
InstrProfWriter.cpp 24 static support::endianness ValueProfDataEndianness = support::little;
93 support::endianness Endianness) {
94 ValueProfDataEndianness = Endianness;
  /external/google-breakpad/src/processor/
synth_minidump.h 125 using test_assembler::Endianness;
318 // header uses the given values. ENDIANNESS determines the
319 // endianness of the signature; we set this section's default
320 // endianness by this.
322 Endianness endianness = kLittleEndian,
  /toolchain/binutils/binutils-2.25/gold/
parameters.cc 202 // If output endianness is specified in command line, check that it does
208 General_options::Endianness endianness = this->options().endianness(); local
209 if (endianness != General_options::ENDIANNESS_NOT_SET)
212 if (endianness == General_options::ENDIANNESS_BIG)
216 gold_assert(endianness == General_options::ENDIANNESS_LITTLE);
356 General_options::Endianness endianness = parameters->options().endianness(); local
    [all...]
  /external/llvm/include/llvm/Object/
StackMapParser.h 20 template <support::endianness Endianness>
415 return support::endian::read<T, Endianness, 1>(P);
  /external/compiler-rt/lib/profile/
InstrProfData.inc 220 void swapBytes(support::endianness Old, support::endianness New);
276 support::endianness SrcDataEndianness);
278 * Swap byte order from \c Endianness order to host byte order.
280 void swapBytesToHost(support::endianness Endianness);
282 * Swap byte order from host byte order to \c Endianness order.
284 void swapBytesFromHost(support::endianness Endianness);
664 /* Magic number to detect file format and endianness
    [all...]

Completed in 3610 milliseconds

1 2