/toolchain/binutils/binutils-2.25/libiberty/ |
simple-object-elf.c | 104 #define EI_DATA 5 /* Data encoding */ 316 unsigned char ei_data; member in struct:simple_object_elf_read 340 unsigned char ei_data; member in struct:simple_object_elf_attributes 359 unsigned char ei_data; local 376 ei_data = header[EI_DATA]; 377 if (ei_data != ELFDATA2LSB && ei_data != ELFDATA2MSB) 388 type_functions = (ei_data == ELFDATA2LSB 399 type_functions = (ei_data == ELFDATA2LS [all...] |
/external/elfutils/libdwfl/ |
dwfl_segment_report_module.c | 95 /* Read SZ bytes into *RETP from *PTRP (limited by END) in format EI_DATA. 99 buf_read_ulong (unsigned char ei_data, size_t sz, 117 if (MY_ELFDATA != ei_data) 133 bytes in format EI_CLASS and EI_DATA. */ 137 unsigned char ei_class, unsigned char ei_data, 159 if (! buf_read_ulong (ei_data, sz, &ptr, end, &count)) 161 if (! buf_read_ulong (ei_data, sz, &ptr, end, NULL)) // page_size 176 if (! buf_read_ulong (ei_data, sz, &ptr, fptr, &mstart) 177 || ! buf_read_ulong (ei_data, sz, &ptr, fptr, &mend) 178 || ! buf_read_ulong (ei_data, sz, &ptr, fptr, &moffset) 334 unsigned char ei_data; local [all...] |
/external/elfutils/libelf/ |
elf_compress.c | 51 int ei_data, Elf_Data *cdatap) 55 if (ei_data != MY_ELFDATA) 61 do_deflate_cleanup(result, &z, out_buf, ei_data, &cdata) 72 __libelf_compress (Elf_Scn *scn, size_t hsize, int ei_data, 133 if (ei_data != MY_ELFDATA) 143 if (gelf_xlatetof (scn->elf, &cdata, data, ei_data) == NULL) 194 if (ei_data != MY_ELFDATA) 342 int elfdata = ehdr.e_ident[EI_DATA];
|
libelfP.h | 598 extern void * __libelf_compress (Elf_Scn *scn, size_t hsize, int ei_data,
|
/development/python-packages/gdbrunner/ |
__init__.py | 257 ei_data = ord(binary[0x5]) # Endianness 260 if ei_data != 1:
|
/system/update_engine/common/ |
utils.cc | 887 // 0x05: EI_DATA, endianness, 1 byte. 888 if (size < EI_DATA + 1) 890 uint8_t ei_data = buffer[EI_DATA]; 891 switch (ei_data) { 905 // 0x12: e_machine, 2 byte endianness based on ei_data. The position (0x12) 911 if (ei_data == ELFDATA2LSB) [all...] |