Home
last modified time | relevance | path

Searched refs:be32toh (Results 1 – 15 of 15) sorted by relevance

/third_party/alsa-utils/axfer/
Dcontainer-au.c94 if (be32toh(header.hdr_size) != sizeof(struct container_header)) in au_parser_pre_process()
97 code_id = be32toh(header.code_id); in au_parser_pre_process()
105 *frames_per_second = be32toh(header.frames_per_second); in au_parser_pre_process()
106 *samples_per_frame = be32toh(header.samples_per_frame); in au_parser_pre_process()
112 *byte_count = be32toh(header.data_size); in au_parser_pre_process()
Dcontainer-riff-wave.c140 *byte_count = be32toh(chunk->size); in parse_riff_chunk_header()
191 state->frames_per_second = be32toh(subchunk->frames_per_second); in parse_wave_fmt_subchunk()
193 be32toh(subchunk->average_bytes_per_second); in parse_wave_fmt_subchunk()
219 state->byte_count = be32toh(subchunk->size); in parse_wave_data_subchunk()
253 subchunk_data_size = be32toh(buf.subchunk.size); in parse_wave_subchunk()
/third_party/musl/include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/third_party/musl/ndk_musl_include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/third_party/musl/porting/uniproton/kernel/include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dendian.h38 #define be32toh(x) __bswap32(x) macro
51 #define be32toh(x) (uint32_t)(x) macro
/third_party/eudev/src/shared/
Dsparse-endian.h49 #undef be32toh
85 static inline uint32_t be32toh(be32_t value) { return bswap_32_on_le((uint32_t __force)value); } in be32toh() function
/third_party/musl/porting/liteos_a/kernel/include/
Dendian.h42 #define be32toh(x) __bswap32(x) macro
55 #define be32toh(x) (uint32_t)(x) macro
/third_party/musl/src/locale/
Dcatclose.c7 #define V(p) be32toh(*(uint32_t *)(p))
Dcatgets.c8 #define V(p) be32toh(*(uint32_t *)(p))
Dcatopen.c12 #define V(p) be32toh(*(uint32_t *)(p))
/third_party/musl/arch/mips64/
Dreloc.h36 #define R_SYM(x) (be32toh(be64toh(x)>>32))
/third_party/FreeBSD/sys/dev/usb/controller/
Dehci.h411 return sc->sc_flags & EHCI_SCFLG_BIGEDESC ? be32toh(v) : le32toh(v); in hc32toh()
/third_party/alsa-utils/aplay/
Daplay.c72 #define be32toh(x) __be32_to_cpu(x) macro
1877 val = be32toh(*valp); in compute_max_peak()