Searched refs:packed (Results 251 - 275 of 396) sorted by relevance

<<111213141516

/external/libselinux/src/
H A Dsestatus.c30 } __attribute((packed));
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DAbstractMessage.java329 boolean packed = false;
335 packed = false;
340 packed = true;
349 if (packed) {
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension.cc141 vars["packed"] = descriptor_->options().packed() ? "true" : "false";
177 " $packed$);\n");
/external/protobuf/src/google/protobuf/
H A Dwire_format.h179 // of packed repeated fields.
216 // Computes the byte size of a field, excluding tags. For packed fields, it
264 if (field->options().packed()) {
/external/qemu/distrib/libselinux/src/
H A Dsestatus.c30 } __attribute((packed));
/external/qemu/slirp/
H A Dip.h206 } __attribute__((packed));
/external/qemu/slirp-android/
H A Dip.h208 } __attribute__((packed));
/external/tcpdump/
H A Dtcpdump-stdinc.h152 * 1) they support __attribute__((packed));
173 * at least for compilers where it's implemented as __attribute__((packed)).
178 #define UNALIGNED __attribute__((packed))
/external/valgrind/main/coregrind/m_demangle/
H A Dansidecl.h381 # define ATTRIBUTE_PACKED __attribute__ ((packed))
/external/chromium_org/mojo/public/tools/bindings/generators/
H A Dmojom_js_generator.py64 def JavaScriptPayloadSize(packed):
65 packed_fields = packed.packed_fields
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_libcdep.cc197 // Block layout for packed file format: header, followed by module name (no
244 // If packed = false: <name>.<pid>.<sancov> (name = module name).
245 // If packed = true and name == 0: <pid>.<sancov>.<packed>.
246 // If packed = true and name != 0: <name>.<sancov>.<packed> (name is
248 static int CovOpenFile(bool packed, const char* name) { argument
250 if (!packed) {
258 "%s/%zd.sancov.packed", common_flags()->coverage_dir,
261 internal_snprintf((char *)path.data(), path.size(), "%s/%s.sancov.packed",
[all...]
/external/lldb/examples/summaries/cocoa/
H A DNSNumber.py148 packed = struct.pack('I', data_plain)
149 data_float = struct.unpack('f', packed)[0]
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_enum_field.cc452 if (descriptor_->options().packed()) {
482 if (descriptor_->options().packed()) {
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientShader.cpp203 static SkShader::TileMode unpack_mode(uint32_t packed) { argument
204 return (SkShader::TileMode)(packed & 0xF);
207 static uint32_t unpack_flags(uint32_t packed) { argument
208 return packed >> 4;
234 uint32_t packed = buffer.readUInt(); local
235 fGradFlags = SkToU8(unpack_flags(packed));
236 fTileMode = unpack_mode(packed);
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp134 static SkShader::TileMode unpack_mode(uint32_t packed) { argument
135 return (SkShader::TileMode)(packed & 0xF);
138 static uint32_t unpack_flags(uint32_t packed) { argument
139 return packed >> 4;
163 uint32_t packed = buffer.readUInt(); local
164 fGradFlags = SkToU8(unpack_flags(packed));
165 fTileMode = unpack_mode(packed);
/external/kernel-headers/original/uapi/linux/
H A Dnl80211.h2036 } __attribute__((packed));
3300 } __attribute__((packed));
3524 } __attribute__((packed));
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dnl80211_copy.h2143 } __attribute__((packed));
3478 } __attribute__((packed));
3702 } __attribute__((packed));
/external/wpa_supplicant_8/src/drivers/
H A Dnl80211_copy.h2143 } __attribute__((packed));
3478 } __attribute__((packed));
3702 } __attribute__((packed));
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dnl80211_copy.h2143 } __attribute__((packed));
3478 } __attribute__((packed));
3702 } __attribute__((packed));
/external/oprofile/opjitconv/
H A Ddebug_line.c112 } __attribute__((packed));
125 } __attribute__((packed));
/external/chromium_org/third_party/skia/src/core/
H A DSkPaint.cpp2034 static FlatFlags unpack_paint_flags(SkPaint* paint, uint32_t packed) { argument
2035 paint->setFlags(packed >> 16);
2036 paint->setHinting((SkPaint::Hinting)((packed >> 14) & BPF_Mask(kHint_BPF)));
2037 paint->setTextAlign((SkPaint::Align)((packed >> 12) & BPF_Mask(kAlign_BPF)));
2038 paint->setFilterLevel((SkPaint::FilterLevel)((packed >> 10) & BPF_Mask(kFilter_BPF)));
2039 return (FlatFlags)(packed & kFlatFlagMask);
2043 static FlatFlags unpack_paint_flags_v22(SkPaint* paint, uint32_t packed) { argument
2053 unsigned flags = packed >> 16;
2067 uint32_t hinting = (packed >> 12) & 0xF;
2069 paint->setTextAlign(static_cast<SkPaint::Align>((packed >>
[all...]
/external/skia/src/core/
H A DSkPaint.cpp2090 static FlatFlags unpack_paint_flags(SkPaint* paint, uint32_t packed) { argument
2091 paint->setFlags(packed >> 16);
2092 paint->setHinting((SkPaint::Hinting)((packed >> 14) & BPF_Mask(kHint_BPF)));
2093 paint->setTextAlign((SkPaint::Align)((packed >> 12) & BPF_Mask(kAlign_BPF)));
2094 paint->setFilterLevel((SkPaint::FilterLevel)((packed >> 10) & BPF_Mask(kFilter_BPF)));
2095 return (FlatFlags)(packed & kFlatFlagMask);
2099 static FlatFlags unpack_paint_flags_v22(SkPaint* paint, uint32_t packed) { argument
2109 unsigned flags = packed >> 16;
2123 uint32_t hinting = (packed >> 12) & 0xF;
2125 paint->setTextAlign(static_cast<SkPaint::Align>((packed >>
[all...]
H A DSkPicturePlayback.cpp995 uint32_t packed = reader.readInt();
996 SkRegion::Op regionOp = ClipParams_unpackRegionOp(packed);
997 bool doAA = ClipParams_unpackDoAA(packed);
1012 uint32_t packed = reader.readInt();
1013 SkRegion::Op regionOp = ClipParams_unpackRegionOp(packed);
1027 uint32_t packed = reader.readInt();
1028 SkRegion::Op regionOp = ClipParams_unpackRegionOp(packed);
1029 bool doAA = ClipParams_unpackDoAA(packed);
1044 uint32_t packed = reader.readInt();
1045 SkRegion::Op regionOp = ClipParams_unpackRegionOp(packed);
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DNanoTest.java2865 // are non-packed.
2883 // Now set the packable extension values using PackedExtensions so they're serialized packed.
2899 // And read back using non-packed RepeatedExtensions.
3643 // Check that repeated fields with packable types can accept both packed and unpacked
3647 // of packed fields handles non-packed data correctly. If the code incorrectly thinks it is
3648 // reading from a packed tag, it will read the first value as the byte length of the field,
3671 NanoRepeatedPackables.Packed packed =
3673 assertRepeatedPackablesEqual(nonPacked, packed);
3675 byte[] packedSerialized = MessageNano.toByteArray(packed);
3698 assertRepeatedPackablesEqual( NanoRepeatedPackables.NonPacked nonPacked, NanoRepeatedPackables.Packed packed) argument
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Derr.h133 * The library identifier, function identifier and reason code are packed in a
158 /* ERR_get_error gets the packed error code for the least recent error and
319 /* packed contains the error library, function and reason, as packed by
321 uint32_t packed; member in struct:err_error_st

Completed in 655 milliseconds

<<111213141516