HomeSort by relevance Sort by last modified time
    Searched refs:isPacked (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/lib/VMCore/
LLVMContextImpl.h 101 bool isPacked;
103 ETypes(E), isPacked(P) {}
105 ETypes(that.ETypes), isPacked(that.isPacked) {}
108 isPacked(ST->isPacked()) {}
110 if (isPacked != that.isPacked)
129 Key.isPacked);
Type.cpp 429 bool isPacked) {
431 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
440 ST->setBody(ETypes, isPacked);
449 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) {
453 if (isPacked)
514 StructType *StructType::get(LLVMContext &Context, bool isPacked) {
515 return get(Context, llvm::ArrayRef<Type*>(), isPacked);
532 StringRef Name, bool isPacked) {
534 ST->setBody(Elements, isPacked);
548 bool isPacked) {
    [all...]
AsmWriter.cpp 271 if (STy->isPacked())
287 if (STy->isPacked())
880 if (CS->getType()->isPacked())
904 if (CS->getType()->isPacked())
    [all...]
ConstantFold.cpp 342 if (!STy->isPacked()) {
405 if (STy->isPacked())
468 if (!STy->isPacked()) {
625 if (!STy->isPacked()) {
    [all...]
  /external/llvm/include/llvm/
DerivedTypes.h 219 bool isPacked = false);
224 bool isPacked = false);
231 bool isPacked = false);
235 static StructType *get(LLVMContext &Context, bool isPacked = false);
243 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; }
270 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
  /external/protobuf/java/src/main/java/com/google/protobuf/
GeneratedMessageLite.java 321 false /* isPacked */)) {
327 true /* isPacked */)) {
435 final boolean isPacked) {
440 this.isPacked = isPacked;
447 private final boolean isPacked;
465 public boolean isPacked() {
466 return isPacked;
523 false /* isRepeated */, false /* isPacked */));
533 final boolean isPacked) {
    [all...]
FieldSet.java 61 boolean isPacked();
370 boolean isPacked) {
371 if (isPacked) {
486 !descriptor.isRepeated() && !descriptor.isPacked()) {
568 if (descriptor.isPacked()) {
612 !descriptor.isRepeated() && !descriptor.isPacked()) {
693 if (descriptor.isPacked()) {
Descriptors.java 698 public boolean isPacked() {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 43 virtual bool isPacked() const { return m_isPacked; }
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 63 virtual bool isPacked() const { return false; }
TextureMapperNode.cpp 37 if (!texture || !texture->isValid() || texture->isPacked())
82 if (entry.texture->isLocked() || !entry.texture->isValid() || entry.texture->isPacked())
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 156 public boolean isPacked() {
RopTranslator.java 639 Dop opcode = dataInsn.isPacked() ?
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 157 public boolean isPacked() {
RopTranslator.java 646 Dop opcode = dataInsn.isPacked() ?
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 157 public boolean isPacked() {
RopTranslator.java 646 Dop opcode = dataInsn.isPacked() ?
  /external/llvm/lib/Target/
TargetData.cpp 53 unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty);
527 if (cast<StructType>(Ty)->isPacked() && abi_or_pref)
  /external/llvm/lib/Linker/
LinkModules.cpp 175 DSTy->isPacked() != SSTy->isPacked())
222 DstSTy->setBody(Elements, SrcSTy->isPacked());
302 cast<StructType>(Ty)->isPacked());
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.h 518 bool IsPacked,
522 mIsPacked(IsPacked),
542 inline bool isPacked() const { return mIsPacked; }
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 247 if (STy1->isPacked() != STy2->isPacked())
DeadArgumentElimination.cpp 703 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 764 bool isPacked, const FieldDecl *D);
    [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java     [all...]

Completed in 525 milliseconds

1 2