HomeSort by relevance Sort by last modified time
    Searched refs:packed (Results 76 - 100 of 1232) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aepack.py 30 packed = aepack.pack(o)
31 unpacked = aepack.unpack(packed)
36 packed = aepack.pack(o)
37 unpacked = aepack.unpack(packed)
42 packed = aepack.pack(o)
43 unpacked = aepack.unpack(packed)
48 packed = aepack.pack(o)
49 unpacked = aepack.unpack(packed)
54 packed = aepack.pack(o)
55 unpacked = aepack.unpack(packed)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aepack.py 30 packed = aepack.pack(o)
31 unpacked = aepack.unpack(packed)
36 packed = aepack.pack(o)
37 unpacked = aepack.unpack(packed)
42 packed = aepack.pack(o)
43 unpacked = aepack.unpack(packed)
48 packed = aepack.pack(o)
49 unpacked = aepack.unpack(packed)
54 packed = aepack.pack(o)
55 unpacked = aepack.unpack(packed)
    [all...]
  /bionic/libc/kernel/common/linux/usb/
functionfs.h 39 } __attribute__((packed));
46 } __attribute__((packed));
54 } __attribute__((packed));
70 } __attribute__((packed)) u;
74 } __attribute__((packed));
  /external/chromium_org/v8/tools/testrunner/objects/
output.py 58 def Unpack(packed):
60 return Output(packed[0], packed[1], packed[2], packed[3])
  /external/clang/test/CodeGenCXX/
warn-padded-packed.cpp 17 } __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...]
2007-04-05-PackedBitFields-1.cpp 3 #ifdef PACKED
4 #define P __attribute__((packed))
2007-04-05-PackedBitFieldsOverlap-2.cpp 3 #ifdef PACKED
4 #define P __attribute__((packed))
2007-04-05-PackedBitFieldsOverlap.cpp 4 #ifdef PACKED
5 #define P __attribute__((packed))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa;
96 } __attribute__ ((packed)) pci;
100 } __attribute__ ((packed)) ibnd;
103 } __attribute__ ((packed)) xprs;
106 } __attribute__ ((packed)) htpt;
109 } __attribute__ ((packed)) unknown;
118 } __attribute__ ((packed)) ata;
126 } __attribute__ ((packed)) atapi;
132 } __attribute__ ((packed)) scsi;
136 } __attribute__ ((packed)) usb
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa;
96 } __attribute__ ((packed)) pci;
100 } __attribute__ ((packed)) ibnd;
103 } __attribute__ ((packed)) xprs;
106 } __attribute__ ((packed)) htpt;
109 } __attribute__ ((packed)) unknown;
118 } __attribute__ ((packed)) ata;
126 } __attribute__ ((packed)) atapi;
132 } __attribute__ ((packed)) scsi;
136 } __attribute__ ((packed)) usb
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa;
96 } __attribute__ ((packed)) pci;
100 } __attribute__ ((packed)) ibnd;
103 } __attribute__ ((packed)) xprs;
106 } __attribute__ ((packed)) htpt;
109 } __attribute__ ((packed)) unknown;
118 } __attribute__ ((packed)) ata;
126 } __attribute__ ((packed)) atapi;
132 } __attribute__ ((packed)) scsi;
136 } __attribute__ ((packed)) usb
    [all...]
  /external/clang/test/Sema/
struct-packed-align.c 4 // Packed structs.
7 int b __attribute__((packed));
15 struct __attribute__((packed)) packed_s {
17 int b __attribute__((packed));
33 struct __attribute__((packed)) packed_fas {
44 } __attribute__((packed));
74 struct __attribute__((packed)) as3 {
87 void *args[] __attribute__((packed));
90 // Packed union
91 union __attribute__((packed)) au4 {char c; int x;}
    [all...]
enum-packed.c 5 enum __attribute__((packed)) E {
implicit-int.c 27 __extension__ __attribute__((packed)) x : 4; // expected-warning {{type specifier missing, defaults to 'int'}}
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
PackedString.java 23 * A utility class for creating and modifying Strings that are tagged and packed together.
35 * packed-string : [ element ] [ ELEMENT-DELIMITER [ element ] ]*
45 * Create a packed string using an already-packed string (e.g. from database)
46 * @param string packed string
68 * @return a map of the values in the packed string
80 private static HashMap<String, String> explode(String packed) {
81 if (packed == null || packed.length() == 0) {
86 int length = packed.length()
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 15 static int get_unsigned_exp(uint32_t packed)
17 return (packed << 1 >> 24);
20 static unsigned get_unsigned_value(uint32_t packed)
22 return (packed << 9 >> 9) | (1 << 23);
25 static int get_signed_value(int32_t packed)
27 return SkApplySign(get_unsigned_value(packed), SkExtractSign(packed));
32 int SkFloat::GetShift(int32_t packed, int shift)
34 if (packed == 0)
37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift
96 int32_t packed = sign << 31; \/\/ set the sign-bit local
    [all...]
  /external/skia/src/core/
SkFloat.cpp 15 static int get_unsigned_exp(uint32_t packed)
17 return (packed << 1 >> 24);
20 static unsigned get_unsigned_value(uint32_t packed)
22 return (packed << 9 >> 9) | (1 << 23);
25 static int get_signed_value(int32_t packed)
27 return SkApplySign(get_unsigned_value(packed), SkExtractSign(packed));
32 int SkFloat::GetShift(int32_t packed, int shift)
34 if (packed == 0)
37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift
96 int32_t packed = sign << 31; \/\/ set the sign-bit local
    [all...]
  /bionic/libc/kernel/common/linux/
if_pppopns.h 31 } __attribute__((packed));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_tests.h 43 * A (packed, unpacked) color pair.
55 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; member in struct:util_format_test_case
  /external/clang/test/CodeGen/
2007-08-01-LoadStoreAlign.c 6 } __attribute__ ((packed));
  /external/kernel-headers/original/linux/
if_pppopns.h 30 } __attribute__((packed));
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_tests.h 43 * A (packed, unpacked) color pair.
55 uint8_t packed[UTIL_FORMAT_MAX_PACKED_BYTES]; member in struct:util_format_test_case
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
packed_section_start.h 3 * between the members of packed structures, and therefore, there is no
6 * Declaring packed structures is compiler specific. In order to handle all
7 * cases, packed structures should be delared as:
52 #define BWL_POST_PACKED_STRUCT __attribute__ ((packed))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
if_pppopns.h 26 } __attribute__((packed));
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
if_pppopns.h 26 } __attribute__((packed));

Completed in 795 milliseconds

1 2 34 5 6 7 8 91011>>