HomeSort by relevance Sort by last modified time
    Searched refs:Packed (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 79 /// Packed - Whether the resulting LLVM struct will be packed or not.
80 bool Packed;
119 /// Returns false if the operation failed because the struct is not packed.
152 /// because the current struct is not packed.
196 Packed(false), IsMsStruct(false),
207 Packed = D->hasAttr<PackedAttr>();
219 // We weren't able to layout the struct. Try again with a packed struct
220 Packed = true;
302 // the end of the structure. This can occur with packed structures an
    [all...]
CGExprConstant.cpp 40 bool Packed;
52 : CGM(CGM), CGF(CGF), Packed(false),
80 if (Packed) return CharUnits::One();
131 assert(!Packed && "Alignment is wrong even with a packed struct!");
133 // Convert the struct to a packed struct.
154 if (Packed)
156 "Packed struct not byte-aligned!");
367 Packed = true;
544 // Check if we need to convert the struct to a packed struct
    [all...]
CGBlocks.cpp     [all...]
  /external/llvm/include/llvm/
Constants.h 399 static Constant *getAnon(ArrayRef<Constant*> V, bool Packed = false) {
400 return get(getTypeForElements(V, Packed), V);
403 ArrayRef<Constant*> V, bool Packed = false) {
404 return get(getTypeForElements(Ctx, V, Packed), V);
410 bool Packed = false);
414 bool Packed = false);
531 /// packed data, instead of as Value*'s.
656 /// packed data, instead of as Value*'s.
709 /// packed data, instead of as Value*'s.
    [all...]
  /external/llvm/include/llvm-c/
Core.h 274 LLVMVectorTypeKind, /**< SIMD 'packed' format, or other vector type */
780 * whether these can be packed together.
785 unsigned ElementCount, LLVMBool Packed);
793 LLVMBool Packed);
815 unsigned ElementCount, LLVMBool Packed);
837 * Determine whether a structure is packed.
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 556 /// \brief The alignment if attribute packed is not used.
569 /// Packed - Whether the record is packed or not.
570 unsigned Packed : 1;
649 Packed(false), IsUnion(false), IsMac68kAlign(false), IsMsStruct(false),
    [all...]
  /external/oprofile/events/x86-64/family11h/
unit_masks 63 0x04 Packed SSE & SSE2 instructions
64 0x08 Packed scalar SSE & SSE2 instructions
  /external/llvm/lib/VMCore/
Core.cpp 302 unsigned ElementCount, LLVMBool Packed) {
304 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
308 unsigned ElementCount, LLVMBool Packed) {
310 ElementCount, Packed);
327 unsigned ElementCount, LLVMBool Packed) {
329 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
641 unsigned Count, LLVMBool Packed) {
644 Packed != 0));
658 LLVMBool Packed) {
660 Packed);
    [all...]
Constants.cpp 786 bool Packed) {
792 return StructType::get(Context, EltTypes, Packed);
797 bool Packed) {
800 return getTypeForElements(V[0]->getContext(), V, Packed);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 225 bool ParseAnonStructType(Type *&Result, bool Packed);
LLParser.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 302 value Packed) {
304 Wosize_val(ElementTypes), Bool_val(Packed));
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 812 milliseconds