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.
147 /// because the current struct is not packed.
191 Packed(false), IsMsStruct(false),
202 Packed = D->hasAttr<PackedAttr>();
214 // We weren't able to layout the struct. Try again with a packed struct
215 Packed = true;
297 // the end of the structure. This can occur with packed structures an
    [all...]
CGExprConstant.cpp 40 bool Packed;
50 : CGM(CGM), CGF(CGF), Packed(false),
69 if (Packed) return CharUnits::One();
98 assert(!Packed && "Alignment is wrong even with a packed struct!");
100 // Convert the struct to a packed struct.
122 if (Packed)
124 "Packed struct not byte-aligned!");
337 Packed = true;
409 // Check if we need to convert the struct to a packed struct
    [all...]
CGBlocks.cpp     [all...]
  /external/llvm/include/llvm/
Constants.h 412 static Constant *getAnon(ArrayRef<Constant*> V, bool Packed = false) {
413 return get(getTypeForElements(V, Packed), V);
416 ArrayRef<Constant*> V, bool Packed = false) {
417 return get(getTypeForElements(Ctx, V, Packed), V);
423 bool Packed = false);
427 bool Packed = false);
    [all...]
  /external/llvm/include/llvm-c/
Core.h 217 LLVMVectorTypeKind, /**< SIMD 'packed' format, or other vector type */
408 unsigned ElementCount, LLVMBool Packed);
410 LLVMBool Packed);
414 unsigned ElementCount, LLVMBool Packed);
593 unsigned Count, LLVMBool Packed);
600 LLVMBool Packed);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 556 /// \brief The alignment if attribute packed is not used.
561 /// Packed - Whether the record is packed or not.
562 unsigned Packed : 1;
622 Packed(false), IsUnion(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 294 unsigned ElementCount, LLVMBool Packed) {
296 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
300 unsigned ElementCount, LLVMBool Packed) {
302 ElementCount, Packed);
319 unsigned ElementCount, LLVMBool Packed) {
321 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
622 unsigned Count, LLVMBool Packed) {
625 Packed != 0));
639 LLVMBool Packed) {
641 Packed);
    [all...]
Constants.cpp 649 bool Packed) {
654 return StructType::get(Context, EltTypes, Packed);
659 bool Packed) {
662 return getTypeForElements(V[0]->getContext(), V, Packed);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 224 bool ParseAnonStructType(Type *&Result, bool Packed);
LLParser.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 303 value Packed) {
305 Wosize_val(ElementTypes), Bool_val(Packed));
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 1111 milliseconds