Home
last modified time | relevance | path

Searched refs:LE32 (Results 1 – 12 of 12) sorted by relevance

/external/llvm/test/Object/
Dyaml2obj-elf-bits-endian.test3 RUN: yaml2obj %p/Inputs/ELF/LE32.yaml | llvm-readobj -file-headers - | FileCheck %s --check-prefix
12 LE32: Class: 32-bit (0x1)
13 LE32-NEXT: DataEncoding: LittleEndian (0x1)
/external/elfutils/libdwfl/
Dimage-header.c80 && *(uint32_t *) (header + H_MAGIC2) == LE32 (MAGIC2) in __libdw_image_header()
86 uint32_t offset = LE32 (*(uint32_t *) (header + H_PAYLOAD_OFFSET)); in __libdw_image_header()
87 uint32_t length = LE32 (*(uint32_t *) (header + H_PAYLOAD_LENGTH)); in __libdw_image_header()
Dlink_map.c89 if (type == LE32 (PROBE_TYPE) in do_check32()
90 && val == LE32 (PROBE_VAL32)) in do_check32()
295 addrs[i] = LE32 (read_4ubyte_unaligned_noncvt (&(*a32)[i])); in report_r_debug()
648 ? BE32 (u->a32) : LE32 (u->a32)); in consider_executable()
DChangeLog1129 * link_map.c (BE32, BE64, LE32, LE64): Delete the definitions, move
1307 * image-header.c (LE32): Macro removed (now in lib/system.h).
/external/llvm/test/CodeGen/Mips/
Delf_eflags.ll19 …unknown-linux -mcpu=mips32 -relocation-model=static %s -o - | FileCheck -check-prefix=CHECK-LE32 %s
37 ; CHECK-LE32: .abicalls
38 ; CHECK-LE32: .option pic0
39 ; CHECK-LE32: .set noreorder
Dinlineasm-operand-code.ll4 ; RUN: FileCheck -check-prefixes=ALL,LE32,GAS %s
10 ; RUN: FileCheck -check-prefixes=ALL,LE32,IAS %s
157 ; LE32: or ${{[0-9]+}}, $[[SECOND]], ${{[0-9]+}}
175 ; LE32: or ${{[0-9]+}}, $[[FIRST]], ${{[0-9]+}}
193 ; LE32: or ${{[0-9]+}}, $[[SECOND]], ${{[0-9]+}}
/external/elfutils/lib/
Dsystem.h40 # define LE32(n) (n) macro
47 # define LE32(n) bswap_32 (n) macro
DChangeLog70 * system.h (LE32, BE32): New macros, using <endian.h> and <byteswap.h>.
71 * md5.c (SWAP): Use LE32.
Dmd5.c42 #define SWAP(n) LE32 (n)
/external/speex/libspeex/
Djitter.c74 #define LE32(a,b) (((spx_int32_t)((a)-(b)))<=0) macro
380 …if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp + jitter->packets[i].span, jitter… in jitter_buffer_put()
535 …if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp, jitter->pointer_timestamp) && GE… in jitter_buffer_get()
545 …if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp, jitter->pointer_timestamp) && GT… in jitter_buffer_get()
798 … if (jitter->packets[i].data && LE32(jitter->pointer_timestamp, jitter->packets[i].timestamp)) in jitter_buffer_ctl()
/external/webrtc/webrtc/base/
Dtestutils.h551 #define LE32(x) \ macro
585 #define TE32 LE32
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp565 typedef ELFType<support::little, false> LE32; in yaml2elf() typedef
574 return ELFState<LE32>::writeELF(Out, Doc); in yaml2elf()