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

1234567891011>>

/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;
/external/chromium_org/tools/relocation_packer/src/
H A Dpacker_unittest.cc28 std::vector<uint8_t> packed; local
42 packed.clear();
43 packer.PackRelativeRelocations(relocations, &packed);
45 EXPECT_EQ(16u, packed.size());
47 EXPECT_EQ('A', packed[0]);
48 EXPECT_EQ('P', packed[1]);
49 EXPECT_EQ('R', packed[2]);
50 EXPECT_EQ('1', packed[3]);
52 EXPECT_EQ(2u, packed[4]);
54 EXPECT_EQ(128u, packed[
71 std::vector<uint8_t> packed; local
[all...]
H A Drun_length_encoder_unittest.cc28 std::vector<Elf32_Word> packed; local
32 packed.clear();
33 codec.Encode(relocations, &packed);
35 EXPECT_EQ(0u, packed.size());
40 packed.clear();
41 codec.Encode(relocations, &packed);
43 EXPECT_EQ(0u, packed.size());
48 packed.clear();
49 codec.Encode(relocations, &packed);
51 EXPECT_EQ(4u, packed
85 std::vector<Elf32_Word> packed; local
[all...]
H A Drun_length_encoder.cc39 std::vector<Elf32_Word>* packed) {
51 packed->push_back(count);
52 packed->push_back(current);
59 packed->push_back(count);
60 packed->push_back(current);
65 // condensed slot in packed, and the count of pairs are provided.
67 const std::vector<Elf32_Word>& packed,
78 size_t count = packed[i];
79 const Elf32_Addr delta = packed[i + 1];
94 // Encode R_ARM_RELATIVE relocations into a run-length encoded (packed)
38 Condense(const std::vector<Elf32_Addr>& deltas, std::vector<Elf32_Word>* packed) argument
66 Uncondense(Elf32_Addr addr, const std::vector<Elf32_Word>& packed, size_t start_index, size_t end_index, std::vector<Elf32_Rel>* relocations) argument
96 Encode(const std::vector<Elf32_Rel>& relocations, std::vector<Elf32_Word>* packed) argument
120 Decode(const std::vector<Elf32_Word>& packed, std::vector<Elf32_Rel>* relocations) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dtoshiba.h6 * on making sure the structure is aligned and packed.
29 unsigned int ebx __attribute__ ((packed));
30 unsigned int ecx __attribute__ ((packed));
31 unsigned int edx __attribute__ ((packed));
32 unsigned int esi __attribute__ ((packed));
33 unsigned int edi __attribute__ ((packed));
/external/wpa_supplicant_8/hostapd/src/common/
H A Dqca-vendor-attr.h21 } __attribute__ ((packed));
26 } __attribute__ ((packed));
/external/wpa_supplicant_8/src/common/
H A Dqca-vendor-attr.h21 } __attribute__ ((packed));
26 } __attribute__ ((packed));
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dqca-vendor-attr.h21 } __attribute__ ((packed));
26 } __attribute__ ((packed));
/external/clang/test/CodeGenCXX/
H A Denum.cpp4 enum A { a } __attribute((packed));
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dstatfs.h9 #define ARCH_PACK_STATFS64 __attribute__((packed,aligned(4)))
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dstatfs.h19 #define ARCH_PACK_COMPAT_STATFS64 __attribute__((packed,aligned(4)))
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dstatfs.h5 * We need compat_statfs64 to be packed, because the i386 ABI won't
9 #define ARCH_PACK_COMPAT_STATFS64 __attribute__((packed,aligned(4)))
/external/chromium_org/v8/tools/testrunner/objects/
H A Dcontext.py52 def Unpack(packed):
54 return Context(packed[0], packed[1], None, packed[2], False,
55 packed[3], packed[4], packed[5], packed[6], packed[7],
56 packed[
[all...]
/external/chromium_org/third_party/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 DSkImageInfo.cpp24 uint32_t packed = buffer.read32(); local
25 SkASSERT(0 == (packed >> 16));
26 fAlphaType = (SkAlphaType)((packed >> 8) & 0xFF);
27 fColorType = (SkColorType)((packed >> 0) & 0xFF);
38 uint32_t packed = (fAlphaType << 8) | fColorType; local
39 buffer.write32(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 DSkImageInfo.cpp24 uint32_t packed = buffer.read32(); local
25 SkASSERT(0 == (packed >> 16));
26 fAlphaType = (SkAlphaType)((packed >> 8) & 0xFF);
27 fColorType = (SkColorType)((packed >> 0) & 0xFF);
38 uint32_t packed = (fAlphaType << 8) | fColorType; local
39 buffer.write32(packed);
/external/kernel-headers/original/uapi/linux/nfsd/
H A Dcld.h42 } __attribute__((packed));
53 } __attribute__((packed)) cm_u;
54 } __attribute__((packed));

Completed in 402 milliseconds

1234567891011>>