Searched refs:packed (Results 1 - 25 of 198) sorted by relevance

12345678

/external/clang/test/CodeGen/
H A D2011-03-08-ZeroFieldUnionInitializer.c4 struct { } __attribute((packed));
H A D2007-03-26-BitfieldAfterZeroWidth.c6 } __attribute__ ((packed)) y;
H A D2008-03-26-PackedBitFields.c6 long int __attribute__((packed)) e:28;
H A D2008-07-22-packed-bitfield-access.c6 unsigned b:32 __attribute__ ((packed));
H A Dpr2394.c2 struct __attribute((packed)) x {int a : 24;};
H A D2007-04-05-PackedBitFields-2.c3 # define pck __attribute__((packed))
H A D2007-04-05-PackedBitFields.c3 # define pck __attribute__((packed))
H A D2007-04-11-PR1321.c12 } __attribute__((packed)) x;
H A D2008-01-04-WideBitfield.c7 } __attribute__((packed)) x;
H A D2008-01-21-PackedStructField.c3 struct X { long double b; unsigned char c; double __attribute__((packed)) d; };
9 __attribute__((packed)) unsigned long long int f;
H A D2007-08-01-LoadStoreAlign.c6 } __attribute__ ((packed));
/external/clang/test/CodeGenCXX/
H A Denum.cpp3 enum A { a } __attribute((packed));
H A Dwarn-padded-packed.cpp17 } __attribute__((packed));
20 int i; // expected-warning {{packed attribute is unnecessary for 'i'}}
22 } __attribute__((packed));
49 struct S9 { // expected-warning {{packed attribute is unnecessary for 'S9'}}
50 int x; // expected-warning {{packed attribute is unnecessary for 'x'}}
51 int y; // expected-warning {{packed attribute is unnecessary for 'y'}}
52 } __attribute__((packed));
54 struct S10 { // expected-warning {{packed attribute is unnecessary for 'S10'}}
55 int x; // expected-warning {{packed attribute is unnecessary for 'x'}}
57 } __attribute__((packed));
[all...]
H A D2007-04-05-PackedBitFields-1.cpp4 #define P __attribute__((packed))
H A D2007-04-05-PackedBitFieldsOverlap-2.cpp4 #define P __attribute__((packed))
H A D2007-04-05-PackedBitFieldsOverlap.cpp5 #define P __attribute__((packed))
/external/skia/src/core/
H A DSkFloatBits.cpp27 static inline int unpack_exp(uint32_t packed) { argument
28 return (packed << 1 >> 24);
33 static inline int unpack_matissa(uint32_t packed) {
35 return (packed & ~0xFF000000) | MATISSA_MAGIC_BIG;
40 static inline int unpack_matissa_dirty(uint32_t packed) { argument
41 return packed & ~0xFF000000;
45 int32_t SkFloatBits_toIntCast(int32_t packed) { argument
46 int exp = unpack_exp(packed) - EXP_BIAS;
47 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG;
62 return SkApplySign(value, SkExtractSign(packed));
66 SkFloatBits_toIntFloor(int32_t packed) argument
96 SkFloatBits_toIntRound(int32_t packed) argument
126 SkFloatBits_toIntCeil(int32_t packed) argument
[all...]
H A DSkFloat.cpp15 static int get_unsigned_exp(uint32_t packed) argument
17 return (packed << 1 >> 24);
20 static unsigned get_unsigned_value(uint32_t packed) argument
22 return (packed << 9 >> 9) | (1 << 23);
25 static int get_signed_value(int32_t packed) argument
27 return SkApplySign(get_unsigned_value(packed), SkExtractSign(packed));
32 int SkFloat::GetShift(int32_t packed, int shift) argument
34 if (packed == 0)
37 int exp = get_unsigned_exp(packed)
96 int32_t packed = sign << 31; // set the sign-bit local
116 Neg(int32_t packed) argument
184 MulInt(int32_t packed, int n) argument
205 DivInt(int32_t packed, int n) argument
210 Invert(int32_t packed) argument
215 Sqrt(int32_t packed) argument
237 CubeRoot(int32_t packed) argument
[all...]
/external/kernel-headers/original/linux/
H A Dhdsmart.h34 } __attribute__ ((packed)) ata_smart_attribute_t;
53 } __attribute__ ((packed)) ata_smart_values_t;
61 } __attribute__ ((packed)) ata_smart_threshold_entry_t;
69 } __attribute__ ((packed)) ata_smart_thresholds_t;
81 } __attribute__ ((packed)) ata_smart_errorlog_command_struct_t;
88 } __attribute__ ((packed)) ata_smart_errorlog_error_struct_t;
93 } __attribute__ ((packed)) ata_smart_errorlog_struct_t;
104 } __attribute__ ((packed)) ata_smart_errorlog_t;
113 } __attribute__ ((packed)) ata_smart_selftestlog_struct_t;
122 } __attribute__ ((packed)) ata_smart_selftestlog_
[all...]
H A Dif_pppolac.h28 struct __attribute__((packed)) {
31 } __attribute__((packed));
H A Dif_pppopns.h30 } __attribute__((packed));
/external/skia/include/gpu/
H A DGrGlyph.h34 void init(GrGlyph::PackedID packed, const GrIRect& bounds) { argument
37 fPackedID = packed;
67 static inline GrFixed UnpackFixedX(PackedID packed) { argument
68 return ((packed >> 18) & 3) << 14;
71 static inline GrFixed UnpackFixedY(PackedID packed) { argument
72 return ((packed >> 16) & 3) << 14;
75 static inline uint16_t UnpackID(PackedID packed) { argument
76 return (uint16_t)packed;
/external/clang/test/Sema/
H A Dstruct-packed-align.c6 int b __attribute__((packed));
14 struct __attribute__((packed)) packed_s {
16 int b __attribute__((packed));
32 struct __attribute__((packed)) packed_fas {
43 } __attribute__((packed));
73 struct __attribute__((packed)) as3 {
86 void *args[] __attribute__((packed));
90 union __attribute__((packed)) au4 {char c; int x;};
99 // Alignment+packed
100 struct as6 {char c; __attribute__((packed, aligne
[all...]
H A Denum-packed.c4 enum __attribute__((packed)) E {
H A Dimplicit-int.c27 __extension__ __attribute__((packed)) x : 4; // expected-warning {{type specifier missing, defaults to 'int'}}

Completed in 420 milliseconds

12345678