Searched refs:endian (Results 1 - 25 of 35) sorted by relevance

12

/openwrt/tools/include/
H A Dbyteswap.h4 #include <endian.h>
H A Dendian.h6 #include_next <endian.h>
8 #include <machine/endian.h>
14 #include <sys/endian.h>
24 #include <machine/endian.h>
/openwrt/target/linux/malta/be/
H A Dtarget.mk8 big-endian mode
/openwrt/target/linux/malta/le/
H A Dtarget.mk8 little-endian mode
/openwrt/target/linux/adm5120/router_be/
H A Dtarget.mk8 running in big-endian mode (e.g : ZyXEL Prestige 335WT ...)
/openwrt/target/linux/adm5120/router_le/
H A Dtarget.mk8 running in little-endian mode (e.g: RouterBoard RB1xx, Compex WP54x ...)
/openwrt/target/linux/malta/be64/
H A Dtarget.mk8 big-endian and 64-bits mode
/openwrt/target/linux/malta/le64/
H A Dtarget.mk8 little-endian and 64-bits mode
/openwrt/tools/patch-image/
H A DMakefile14 $(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/patch-cmdline src/patch-cmdline.c
15 $(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/patch-dtb src/patch-dtb.c
/openwrt/tools/sstrip/
H A DMakefile14 $(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
/openwrt/package/libs/libiconv/src/
H A Diconv.c128 static inline wchar_t get_16(const unsigned char *s, int endian) argument
130 endian &= 1;
131 return s[endian]<<8 | s[endian^1];
134 static inline void put_16(unsigned char *s, wchar_t c, int endian) argument
136 endian &= 1;
137 s[endian] = c>>8;
138 s[endian^1] = c;
/openwrt/tools/firmware-utils/src/
H A Dmkheader_gemtek.c41 * The header is in little-endian format. In case
50 # include <endian.h>
55 # include <sys/endian.h> /* BSD's should have this */
H A Dmkedimaximg.c18 #include <endian.h> /* for __BYTE_ORDER */
H A Doseama.c13 #include <endian.h>
/openwrt/package/firmware/ixp4xx-microcode/src/
H A DIxNpeMicrocode.h70 #include <endian.h>
/openwrt/package/system/mtd/src/
H A Dlinksys_bootcount.c28 #include <endian.h>
H A Dtrx.c29 #include <endian.h>
H A Djffs2.c28 #include <endian.h>
/openwrt/tools/mtd-utils/
H A DMakefile27 CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h -I$(CURDIR)/include -include fls.h
/openwrt/package/kernel/lantiq/ltq-ptm/src/
H A Difxmips_ptm_fw_regs_vdsl.h272 #error structures are defined in big endian
/openwrt/tools/firmware-utils/
H A DMakefile15 $(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_LDFLAGS) -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
/openwrt/package/kernel/lantiq/ltq-atm/src/
H A Difxmips_atm_ppe_common.h328 unsigned int endian : 1; member in struct:__anon30
353 unsigned int endian : 1; member in struct:__anon33
/openwrt/target/linux/ar71xx/image/
H A Dgeneric.mk324 # 2 bytes: checksum of the data partition (big endian)
325 # 4 bytes: length of the contained image file (big endian)
328 # 2 bytes: checksum over the header partition (big endian)
/openwrt/include/
H A Dimage.mk31 JFFS2OPTS := --big-endian --squash-uids -v
33 JFFS2OPTS := --little-endian --squash-uids -v
369 $(if $(CONFIG_BIG_ENDIAN),--big-endian,--little-endian) \
/openwrt/package/utils/oseama/src/
H A Doseama.c13 #include <endian.h>

Completed in 115 milliseconds

12