HomeSort by relevance Sort by last modified time
    Searched defs:Packed (Results 1 - 25 of 27) sorted by null

1 2

  /external/libvorbis/doc/
03-codebook.tex 11 the third header, the codec setup header. This packed configuration
27 \subsection{Packed codebook format}
  /external/compiler-rt/test/msan/
dtor-bit-fields.cc 14 struct Packed {
15 // Packed into 4 bytes
25 ~Packed() {}
49 Packed *p = new Packed();
50 p->~Packed();
  /external/clang/test/CodeGenCXX/
sanitize-dtor-bit-field.cpp 6 struct Packed {
7 // Packed into 4 bytes
18 ~Packed() {}
20 Packed p;
microsoft-abi-sret-and-byval.cpp 29 struct Packed {
134 void packed_arg(Packed s) {}
135 // LINUX-LABEL: define void @_Z10packed_arg6Packed(%struct.Packed* byval align 4 %s)
136 // WIN32: define void @"\01?packed_arg@@YAXUPacked@@@Z"(%struct.Packed* byval align 4 %s)
137 // WIN64: define void @"\01?packed_arg@@YAXUPacked@@@Z"(%struct.Packed* %s)
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitBuilder.h 106 bool Packed = false;
159 Finished(other.Finished), Frozen(other.Frozen), Packed(other.Packed),
456 if (structTy) this->Packed = structTy->isPacked();
460 void setPacked(bool packed) {
461 this->Packed = packed;
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 96 CGRecordLowering(CodeGenTypes &Types, const RecordDecl *D, bool Packed);
187 /// \brief Determines if we need a packed llvm struct.
210 bool Packed : 1;
217 CGRecordLowering::CGRecordLowering(CodeGenTypes &Types, const RecordDecl *D, bool Packed)
222 IsZeroInitializableAsBase(true), Packed(Packed) {}
255 // 5) Insert padding everywhere it is needed. This phase requires 'Packed' to
339 // case of packed bitfields on Itanium) then just use an I8 array.
344 // Set packed if we need it.
346 Packed = true
    [all...]
CGExprConstant.cpp 41 bool Packed;
57 : CGM(CGM), CGF(CGF), Packed(false),
83 if (Packed) return CharUnits::One();
128 assert(!Packed && "Alignment is wrong even with a packed struct!");
130 // Convert the struct to a packed struct.
149 if (Packed)
151 "Packed struct not byte-aligned!");
362 Packed = true;
525 // Check if we need to convert the struct to a packed struct
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Type.cs 65 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Field), global::Google.Protobuf.WellKnownTypes.Field.Parser, new[]{ "Kind", "Cardinality", "Number", "Name", "TypeUrl", "OneofIndex", "Packed", "Options", "JsonName", "DefaultValue" }, null, new[]{ typeof(global::Google.Protobuf.WellKnownTypes.Field.Types.Kind), typeof(global::Google.Protobuf.WellKnownTypes.Field.Types.Cardinality) }, null),
452 /// <summary>Field number for the "packed" field.</summary>
456 /// Whether to use alternative packed wire representation.
458 public bool Packed {
520 if (Packed != other.Packed) return false;
535 if (Packed != false) hash ^= Packed.GetHashCode();
571 if (Packed != false) {
573 output.WriteBool(Packed);
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 156 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.FieldOptions), global::Google.Protobuf.Reflection.FieldOptions.Parser, new[]{ "Ctype", "Packed", "Jstype", "Lazy", "Deprecated", "Weak", "UninterpretedOption" }, null, new[]{ typeof(global::Google.Protobuf.Reflection.FieldOptions.Types.CType), typeof(global::Google.Protobuf.Reflection.FieldOptions.Types.JSType) }, null),
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstX86Base.h 203 enum SseSuffix { None, Packed, Unpack, Scalar, Integral, Pack };
885 case InstX86Base::SseSuffix::Packed:
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 194 Packed = 0x0001,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 192 Packed = 0x0001,

Completed in 2034 milliseconds

1 2