Searched refs:e32 (Results 1 - 9 of 9) sorted by relevance
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | eui64.h | 35 uint32_t e32[2]; /* lower 64-bit IPv6 address */ member in union:__anon120 56 u_int32_t e32[2]; member in union:__anon121 61 #define eui64_iszero(e) (((e).e32[0] | (e).e32[1]) == 0) 62 #define eui64_equals(e, o) (((e).e32[0] == (o).e32[0]) && \ 63 ((e).e32[1] == (o).e32[1])) 64 #define eui64_zero(e) ((e).e32[0] = (e).e32[ [all...] |
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/types/ |
H A D | tst.struct.d | 63 e32 = (struct D`env_vars_32 *) 66 printf("e1 = \"%s\"\n", stringof(copyinstr(e32->e1))); 67 printf("e2 = \"%s\"\n", stringof(copyinstr(e32->e2))); 68 printf("e3 = \"%s\"\n", stringof(copyinstr(e32->e3)));
|
H A D | tst.typedef.d | 64 e32 = (D`env_vars_32_t *) 67 printf("e1 = \"%s\"\n", stringof(copyinstr(e32->e1))); 68 printf("e2 = \"%s\"\n", stringof(copyinstr(e32->e2))); 69 printf("e3 = \"%s\"\n", stringof(copyinstr(e32->e3)));
|
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | endian.c | 82 uint32_t e32, test32; local 87 e32 = 0x44332211UL; 91 e32 = 0x11223344UL; 103 VERIFY3U(test32, ==, e32); 105 VERIFY3U(test32, ==, e32); 120 uint32_t e32, test32; local 125 e32 = 0x11223344UL; 129 e32 = 0x44332211UL; 141 VERIFY3U(test32, ==, e32); 143 VERIFY3U(test32, ==, e32); [all...] |
/illumos-gate/usr/src/lib/libc/port/fp/ |
H A D | __tbl_tens.c | 43 1.0e30, 1.0e31, 1.0e32, 1.0e33, 1.0e34, 1.0e35, 1.0e36, 1.0e37, 1.0e38,
|
/illumos-gate/usr/src/lib/libctf/common/ |
H A D | ctf_lib.c | 203 Elf32_Ehdr e32; member in union:__anon3098 253 bcmp(&hdr.e32.e_ident[EI_MAG0], ELFMAG, SELFMAG) == 0) { 265 if (hdr.e32.e_ident[EI_DATA] != order) 267 if (hdr.e32.e_version != EV_CURRENT) 270 if (hdr.e32.e_ident[EI_CLASS] == ELFCLASS64) { 274 Elf32_Ehdr e32 = hdr.e32; local 275 ehdr_to_gelf(&e32, &hdr.e64); 283 if (hdr.e32.e_ident[EI_CLASS] == ELFCLASS32) { 318 if (hdr.e32 [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | ecvt.c | 95 1e32, 32,
|
/illumos-gate/usr/src/lib/libproc/common/ |
H A D | Pcore.c | 1606 Elf32_Ehdr e32; local 1614 if (pread64(efp->e_fd, &e32, sizeof (e32), 0) != sizeof (e32)) { 1619 if ((is_noelf = memcmp(&e32.e_ident[EI_MAG0], ELFMAG, SELFMAG)) != 0 || 1620 e32.e_type != type || (isa_err = (e32.e_ident[EI_DATA] != order)) || 1621 e32.e_version != EV_CURRENT) { 1636 * 32-bit, so convert e32 to a elf_file_header_t. 1638 if (e32 [all...] |
H A D | Psymtab.c | 3103 uint32_t e32[NARG]; local 3106 (void) memset(e32, 0, sizeof (e32)); 3107 if (Pread(P, e32, sizeof (e32), envpoff) <= 0) { 3112 envp[i] = e32[i];
|
Completed in 66 milliseconds