Home
last modified time | relevance | path

Searched refs:LE16 (Results 1 – 25 of 109) sorted by relevance

12345

/dports/archivers/upx/upx-3.96/src/
H A Dp_exe.h78 LE16 ident;
79 LE16 m512;
80 LE16 p512;
81 LE16 relocs;
83 LE16 min;
84 LE16 max;
85 LE16 ss;
86 LE16 sp;
88 LE16 ip;
89 LE16 cs;
[all …]
H A Dpefile.h320 LE16 *rel1;
446 LE16 cpu;
447 LE16 objects;
449 LE16 opthdrsize;
450 LE16 flags;
472 LE16 subsystem;
473 LE16 dllflags;
508 LE16 cpu;
511 LE16 opthdrsize;
534 LE16 subsystem;
[all …]
H A Dbele.h384 __packed_struct(LE16)
387 LE16& operator = (unsigned v) { set_le16(d, v); return *this; }
388 LE16& operator += (unsigned v) { set_le16(d, get_le16(d) + v); return *this; }
389 LE16& operator -= (unsigned v) { set_le16(d, get_le16(d) - v); return *this; }
390 LE16& operator *= (unsigned v) { set_le16(d, get_le16(d) * v); return *this; }
391 LE16& operator /= (unsigned v) { set_le16(d, get_le16(d) / v); return *this; }
392 LE16& operator &= (unsigned v) { set_le16(d, get_le16(d) & v); return *this; }
393 LE16& operator |= (unsigned v) { set_le16(d, get_le16(d) | v); return *this; }
462 inline T* operator + (T* ptr, const LE16& v) { return ptr + (unsigned) v; }
464 inline T* operator + (const LE16& v, T* ptr) { return ptr + (unsigned) v; }
[all …]
H A Dp_djgpp2.h80 LE16 f_magic;
81 LE16 f_nscns;
86 LE16 f_flags;
89 LE16 a_magic;
H A Dlefile.h58 LE16 cpu_type; // 1->286..4->586
59 LE16 target_os; // 1->OS2
117 LE16 device_id;
118 LE16 ddk_version;
H A Dp_ps1.h105 LE16 ih_csum;
110 LE16 hi1, op1, lo1, op2;
111 LE16 hi2, op3, lo2, op4;
/dports/archivers/upx/upx-3.96/src/stub/tools/armpe/
H A Darmpe_tester.c67 typedef unsigned short LE16; typedef
88 LE16 cpu;
89 LE16 objects;
91 LE16 opthdrsize;
92 LE16 flags;
113 LE16 subsystem;
114 LE16 dllflags;
136 LE16 mz;
137 LE16 m512;
138 LE16 p512;
[all …]
/dports/emulators/sameboy/SameBoy-0.14.7/Core/
H A Dsave_state.c629 bess_core.major = LE16(1); in save_state_internal()
630 bess_core.minor = LE16(1); in save_state_internal()
653 bess_core.pc = LE16(gb->pc); in save_state_internal()
654 bess_core.af = LE16(gb->af); in save_state_internal()
655 bess_core.bc = LE16(gb->bc); in save_state_internal()
656 bess_core.de = LE16(gb->de); in save_state_internal()
657 bess_core.hl = LE16(gb->hl); in save_state_internal()
658 bess_core.sp = LE16(gb->sp); in save_state_internal()
742 LE16(gb->huc3_minutes), in save_state_internal()
743 LE16(gb->huc3_days), in save_state_internal()
[all …]
H A Dsgb.c173 …gb->sgb->effective_palettes[0] = LE16(built_in_palettes[palette_assignments[i].palette_index * 4 -… in command_ready()
671 colors[i] = convert_rgb15(gb, LE16(gb->sgb->effective_palettes[i])); in GB_sgb_render()
737 border_colors[i] = convert_rgb15(gb, LE16(gb->sgb->border.palette[i])); in GB_sgb_render()
749 …border_colors[i] = convert_rgb15_with_fade(gb, LE16(gb->sgb->border.palette[i]), gb->sgb->border_a… in GB_sgb_render()
767 uint16_t tile = LE16(gb->sgb->border.map[tile_x + tile_y * 32]); in GB_sgb_render()
808 gb->sgb->border.map[i] = LE16(tilemap[i]); in GB_sgb_load_default_data()
811 gb->sgb->border.palette[i] = LE16(palette[i]); in GB_sgb_load_default_data()
829 gb->sgb->effective_palettes[0] = LE16(built_in_palettes[0]); in GB_sgb_load_default_data()
830 gb->sgb->effective_palettes[1] = LE16(built_in_palettes[1]); in GB_sgb_load_default_data()
831 gb->sgb->effective_palettes[2] = LE16(built_in_palettes[2]); in GB_sgb_load_default_data()
[all …]
/dports/emulators/atari800/atari800-3.1.0/src/
H A Dide.c109 LE16(p, 0, GCBI_FIXED_DRIVE); in ide_identify()
110 LE16(p, 1, s->cylinders); in ide_identify()
111 LE16(p, 3, s->heads); in ide_identify()
133 LE16(p, 49, CAP_LBA_SUPPORTED); in ide_identify()
139 LE16(p, 54, s->cylinders); in ide_identify()
140 LE16(p, 55, s->heads); in ide_identify()
141 LE16(p, 56, s->sectors); in ide_identify()
143 LE16(p, 57, oldsize); in ide_identify()
144 LE16(p, 58, oldsize >> 16); in ide_identify()
155 LE16(p, 51, 2); in ide_identify()
[all …]
/dports/devel/elfutils/elfutils-0.179/libdwfl/
H A Dimage-header.c40 # define LE16(x) (x) macro
42 # define LE16(x) bswap_16 (x) macro
83 if (*(uint16_t *) (header + H_MAGIC1) == LE16 (MAGIC1) in __libdw_image_header()
85 && LE16 (*(uint16_t *) (header + H_VERSION)) >= MIN_VERSION) in __libdw_image_header()
/dports/multimedia/flvtool++/flvtool-pp-c0438e8/
H A Dserialized_buffer.h18 #define LE16(x) OSSwapLittleToHostInt16(x) macro
29 #define LE16(x) htole16(x) macro
42 #define LE16(x) (x) macro
49 #define LE16(x) __bswap_16(x) macro
86 return LE16(*reinterpret_cast<const uint16_t*>(consume(2))); in get_u16_le()
/dports/graphics/gdk-pixbuf2/gdk-pixbuf-2.40.0/gdk-pixbuf/
H A Dio-tga.c63 #define LE16(p) ((p)[0] + ((p)[1] << 8)) macro
357 w = LE16(ctx->hdr->width); in fill_in_context()
358 h = LE16(ctx->hdr->height); in fill_in_context()
598 LE16(ctx->hdr->cmap_start), in tga_load_header()
599 LE16(ctx->hdr->cmap_n_colors), in tga_load_header()
601 LE16(ctx->hdr->x_origin), in tga_load_header()
602 LE16(ctx->hdr->y_origin), in tga_load_header()
603 LE16(ctx->hdr->width), in tga_load_header()
604 LE16(ctx->hdr->height), in tga_load_header()
608 if (LE16(ctx->hdr->width) == 0 || in tga_load_header()
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/net/ipxe/ipxe-2265a65/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c81 .regDmn = { LE16(0), LE16(0x1f) },
121 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
334 LE16(0x000), LE16(0x000), LE16(0x000),
698 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
911 LE16(0x150), LE16(0x150), LE16(0x150),
1276 .antCtrlChain = { LE16(0x150), LE16(0x150), LE16(0x150) },
1489 LE16(0x150), LE16(0x150), LE16(0x150),
1854 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
2067 LE16(0x0), LE16(0x0), LE16(0x0),
2431 .antCtrlChain = { LE16(0x10), LE16(0x10), LE16(0x10) },
[all …]
/dports/lang/micropython/micropython-1.17/ports/stm32/usbhost/Class/MTP/Src/
H A Dusbh_mtp_ptp.c578 stor_info->StorageType=LE16(&data[PTP_si_StorageType]); in PTP_GetStorageInfo()
579 stor_info->FilesystemType=LE16(&data[PTP_si_FilesystemType]); in PTP_GetStorageInfo()
603 object_info->ObjectFormat=LE16(&data[PTP_oi_ObjectFormat]); in PTP_GetObjectInfo()
612 object_info->ThumbFormat=LE16(&data[PTP_oi_ThumbFormat]); in PTP_GetObjectInfo()
641 opd->DataType=LE16(&data[PTP_opd_DataType]); in PTP_GetObjectPropDesc()
663 opd->FORM.Enum.NumberOfValues = LE16(&data[offset]); in PTP_GetObjectPropDesc()
704 value->i16 = LE16(&(data[*offset])); in PTP_GetDevicePropValue()
708 value->u16 = LE16(&(data[*offset])); in PTP_GetDevicePropValue()
784 props[i].property = LE16(data); in PTP_GetObjectPropList()
788 props[i].datatype = LE16(data); in PTP_GetObjectPropList()
[all …]
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/aosdk/
H A Dao.h47 #define LE16(x) (x) macro
52 static unsigned short INLINE LE16(unsigned short x) in LE16() function
/dports/graphics/sdl2_image/SDL2_image-2.0.5/
H A DIMG_tga.c80 #define LE16(p) ((p)[0] + ((p)[1] << 8)) macro
114 ncols = LE16(hdr.cmap_len); in IMG_LoadTGA_RW()
195 w = LE16(hdr.width); in IMG_LoadTGA_RW()
196 h = LE16(hdr.height); in IMG_LoadTGA_RW()
/dports/graphics/sdl_image/SDL_image-1.2.12/
H A DIMG_tga.c84 #define LE16(p) ((p)[0] + ((p)[1] << 8)) macro
118 ncols = LE16(hdr.cmap_len); in IMG_LoadTGA_RW()
197 w = LE16(hdr.width); in IMG_LoadTGA_RW()
198 h = LE16(hdr.height); in IMG_LoadTGA_RW()

12345