Home
last modified time | relevance | path

Searched refs:packed (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/parse/
H A Dattr1.C7 union __attribute__ ((packed))
12 union __attribute__ ((packed)) __attribute__ ((unused))
19 union __attribute__ ((packed)) bar
25 struct __attribute__ ((packed)) baz
37 } __attribute__ ((packed));
44 } __attribute__ ((packed));
50 } __attribute__ ((packed));
/openbsd-src/sys/dev/pci/
H A Dif_bnxtreg.h134 } __attribute__((packed));
226 } __attribute__((packed));
318 } __attribute__((packed));
480 } __attribute__((packed));
498 } __attribute__((packed));
569 } __attribute__((packed));
605 } __attribute__((packed));
655 } __attribute__((packed));
732 } __attribute__((packed));
819 } __attribute__((packed));
[all...]
/openbsd-src/regress/lib/libc/asr/bin/
H A Dcommon.h70 struct packed { struct
133 void packed_init(struct packed*, char*, size_t);
134 int pack_header(struct packed*, const struct header*);
135 int pack_query(struct packed*, uint16_t, uint16_t, const char*);
136 int unpack_header(struct packed*, struct header*);
137 int unpack_query(struct packed*, struct query*);
138 int unpack_rr(struct packed*, struct rr*);
H A Dcommon.c416 packed_init(struct packed *pack, char *data, size_t len) in packed_init()
477 unpack_data(struct packed *p, void *data, size_t len) in unpack_data()
494 unpack_u16(struct packed *p, uint16_t *u16) in unpack_u16()
505 unpack_u32(struct packed *p, uint32_t *u32) in unpack_u32()
516 unpack_inaddr(struct packed *p, struct in_addr *a) in unpack_inaddr()
522 unpack_in6addr(struct packed *p, struct in6_addr *a6) in unpack_in6addr()
528 unpack_dname(struct packed *p, char *dst, size_t max) in unpack_dname()
549 unpack_header(struct packed *p, struct header *h) in unpack_header()
564 unpack_query(struct packed *p, struct query *q) in unpack_query()
574 unpack_rr(struct packed *p, struct rr *rr) in unpack_rr()
/openbsd-src/sys/dev/pci/drm/include/drm/
H A Ddrm_edid.h49 } __attribute__((packed));
62 } __attribute__((packed));
88 } __attribute__((packed));
93 } __attribute__((packed));
123 } __attribute__((packed)) gtf2;
132 } __attribute__((packed)) cvt;
133 } __attribute__((packed)) formula;
134 } __attribute__((packed));
141 } __attribute__((packed));
148 } __attribute__((packed));
[all …]
/openbsd-src/sys/dev/usb/
H A Dusbpcap.h43 } __attribute__((packed));
54 } __attribute__((packed));
60 } __attribute__((packed));
71 } __attribute__((packed));
85 } __attribute__((packed));
/openbsd-src/regress/sys/kern/sosplice/error/
H A Dargs-idle-EINVAL.pl30 my $packed;
32 $packed = pack('ixxxxqql!', $ss->fileno(),-1,-1-1);
36 $packed = pack($packstr, $ss->fileno(),0,0,-1,-1,-1);
38 $s->setsockopt(SOL_SOCKET, SO_SPLICE, $packed)
H A Dargs-max-EINVAL.pl30 my $packed;
32 $packed = pack('ixxxxqql!', $ss->fileno(),-1,0,0);
36 $packed = pack($packstr, $ss->fileno(),-1,-1,0,0,0);
38 $s->setsockopt(SOL_SOCKET, SO_SPLICE, $packed)
/openbsd-src/gnu/usr.bin/perl/cpan/Socket/t/
H A Dipv6_mreq.t13 my $packed;
15 $packed = pack_ipv6_mreq "ANADDRESSIN16CHR", 123;
17 if( !defined $packed ) {
24 my @unpacked = unpack_ipv6_mreq $packed;
H A Dip_mreq.t15 my $packed;
17 $packed = pack_ip_mreq "\xe0\0\0\1", INADDR_ANY;
19 if( !defined $packed ) {
26 my @unpacked = unpack_ip_mreq $packed;
/openbsd-src/usr.sbin/config/
H A Dpack.c168 packed = ereallocarray(NULL, ndevi + 1, sizeof *packed); in packdevi()
186 p = packed[j]; in packdevi()
198 packed[n++] = l; in packdevi()
204 packed[n] = NULL; in packdevi()
206 addparents(i, packed[i->i_cfindex]); in packdevi()
325 qsort(packed, npacked, sizeof *packed, loclencmp); in packlocs()
326 for (p = packed; (i = *p) != NULL; p++) { in packlocs()
345 qsort(packed, npacked, sizeof *packed, pvlencmp); in packpvec()
346 for (p = packed; (i = *p) != NULL; p++) { in packpvec()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Denum5.C9 enum numbers { one, two, three } __attribute__ ((packed)) nums;
10 enum colours { red = 1000, green, blue } __attribute__ ((packed)) cols;
11 enum __attribute__ ((packed)) conditions { fine, rain, cloudy } forecast;
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20010202-1.c4 typedef enum { false, true } __attribute__ ((packed)) boolean;
8 } __attribute__((packed)) A:3;
11 } __attribute__((packed)) B:3;
H A Dbf-spl1.c28 fractype fraction:52 __attribute__ ((packed));
29 unsigned int exp:11 __attribute__ ((packed));
30 unsigned int sign:1 __attribute__ ((packed));
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D960117-1.c8 TEXT *id __attribute__ ((aligned (2), packed)) ;
14 COUNT pos __attribute__ ((aligned (2), packed)) ;
15 VALS vals __attribute__ ((aligned (2), packed)) ;
H A Dstrct-pack-2.c3 short a __attribute__ ((aligned (2),packed));
4 short *ap[2] __attribute__ ((aligned (2),packed));
H A Dstruct-ret-2.c3 unsigned char a __attribute__ ((packed));
4 unsigned short b __attribute__ ((packed));
H A Dstrct-pack-4.c3 unsigned char a __attribute__((packed));
4 unsigned short b __attribute__((packed));
H A Dstrct-pack-1.c3 short s __attribute__ ((aligned(2), packed));
4 double d __attribute__ ((aligned(2), packed));
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dgo32-nat.c1260 unsigned short limit0 __attribute__((packed));
1261 unsigned short base0 __attribute__((packed));
1262 unsigned char base1 __attribute__((packed));
1263 unsigned stype:5 __attribute__((packed));
1264 unsigned dpl:2 __attribute__((packed));
1265 unsigned present:1 __attribute__((packed));
1266 unsigned limit1:4 __attribute__((packed));
1267 unsigned available:1 __attribute__((packed));
1268 unsigned dummy:1 __attribute__((packed));
1269 unsigned bit32:1 __attribute__((packed));
[all …]
/openbsd-src/gnu/gcc/gcc/config/
H A Dfp-bit.h391 fractype fraction:FRACBITS __attribute__ ((packed));
392 unsigned int exp:EXPBITS __attribute__ ((packed));
393 unsigned int sign:1 __attribute__ ((packed));
401 unsigned int sign:1 __attribute__ ((packed));
402 unsigned int exp:EXPBITS __attribute__ ((packed));
403 fractype fraction:FRACBITS __attribute__ ((packed));
409 fractype fraction:FRACBITS __attribute__ ((packed));
410 unsigned int exp:EXPBITS __attribute__ ((packed));
411 unsigned int sign:1 __attribute__ ((packed));
/openbsd-src/gnu/usr.bin/gcc/gcc/config/
H A Dfp-bit.h387 fractype fraction:FRACBITS __attribute__ ((packed));
388 unsigned int exp:EXPBITS __attribute__ ((packed));
389 unsigned int sign:1 __attribute__ ((packed));
397 unsigned int sign:1 __attribute__ ((packed));
398 unsigned int exp:EXPBITS __attribute__ ((packed));
399 fractype fraction:FRACBITS __attribute__ ((packed));
405 fractype fraction:FRACBITS __attribute__ ((packed));
406 unsigned int exp:EXPBITS __attribute__ ((packed));
407 unsigned int sign:1 __attribute__ ((packed));
/openbsd-src/gnu/llvm/compiler-rt/include/xray/
H A Dxray_records.h63 } __attribute__((packed));
102 } __attribute__((packed));
128 } __attribute__((packed));
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp318 u8 *packed = in Pack() local
320 PackedHeader *header = reinterpret_cast<PackedHeader *>(packed); in Pack()
321 u8 *alloc_end = packed + kBlockSizeBytes; in Pack()
339 header->size = packed_end - packed; in Pack()
347 store->Unmap(packed, kBlockSizeBytes); in Pack()
353 store->Unmap(packed + packed_size_aligned, in Pack()
355 MprotectReadOnly(reinterpret_cast<uptr>(packed), packed_size_aligned); in Pack()
357 atomic_store(&data_, reinterpret_cast<uptr>(packed), memory_order_release); in Pack()
/openbsd-src/sys/dev/pci/drm/apple/
H A Dafk.h92 } __attribute__((packed));
103 } __attribute__((packed));
113 } __attribute__((packed));
123 } __attribute__((packed));

12345678910>>...12