/external/llvm/lib/IR/ |
D | Type.cpp | 331 bool isPacked) { in get() argument 333 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 341 ST->setBody(ETypes, isPacked); in get() 350 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument 354 if (isPacked) in setBody() 424 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument 425 return get(Context, None, isPacked); in get() 444 StringRef Name, bool isPacked) { in create() argument 446 ST->setBody(Elements, isPacked); in create() 459 bool isPacked) { in create() argument [all …]
|
D | LLVMContextImpl.h | 83 bool isPacked; member 85 ETypes(E), isPacked(P) {} in KeyTy() 87 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy() 89 if (isPacked != that.isPacked) 108 Key.isPacked); in getHashValue()
|
D | DataLayout.cpp | 50 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty); in StructLayout() 646 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Type.cpp | 379 bool isPacked) { in get() argument 387 if (isPacked) in get() 396 ST->setBody(ETypes, isPacked); in get() 400 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument 404 if (isPacked) in setBody() 464 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument 465 return get(Context, llvm::ArrayRef<Type*>(), isPacked); in get() 482 StringRef Name, bool isPacked) { in create() argument 484 ST->setBody(Elements, isPacked); in create() 498 bool isPacked) { in create() argument [all …]
|
/external/python/cpython2/Modules/_ctypes/ |
D | stgdict.c | 319 PyObject *isPacked; in PyCStructUnionType_update_stgdict() local 344 isPacked = PyObject_GetAttrString(type, "_pack_"); in PyCStructUnionType_update_stgdict() 345 if (isPacked) { in PyCStructUnionType_update_stgdict() 346 pack = _PyInt_AsInt(isPacked); in PyCStructUnionType_update_stgdict() 348 Py_XDECREF(isPacked); in PyCStructUnionType_update_stgdict() 353 Py_DECREF(isPacked); in PyCStructUnionType_update_stgdict() 422 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict() 496 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict() 569 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
|
/external/python/cpython3/Modules/_ctypes/ |
D | stgdict.c | 315 PyObject *isPacked; in PyCStructUnionType_update_stgdict() local 340 isPacked = PyObject_GetAttrString(type, "_pack_"); in PyCStructUnionType_update_stgdict() 341 if (isPacked) { in PyCStructUnionType_update_stgdict() 342 pack = _PyLong_AsInt(isPacked); in PyCStructUnionType_update_stgdict() 344 Py_XDECREF(isPacked); in PyCStructUnionType_update_stgdict() 349 Py_DECREF(isPacked); in PyCStructUnionType_update_stgdict() 418 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict() 490 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict() 560 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | DerivedTypes.h | 218 bool isPacked = false); 223 bool isPacked = false); 230 bool isPacked = false); 234 static StructType *get(LLVMContext &Context, bool isPacked = false); 242 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function 266 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
|
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 221 bool isPacked = false); 224 StringRef Name, bool isPacked = false); 230 bool isPacked = false); 233 static StructType *get(LLVMContext &Context, bool isPacked = false); 240 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function 266 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DerivedTypes.h | 226 bool isPacked = false); 229 StringRef Name, bool isPacked = false); 235 bool isPacked = false); 238 static StructType *get(LLVMContext &Context, bool isPacked = false); 245 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function 271 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | FieldSet.java | 62 boolean isPacked(); in isPacked() method 487 boolean isPacked) { in getWireFormatForFieldType() argument 488 if (isPacked) { in getWireFormatForFieldType() 618 !descriptor.isRepeated() && !descriptor.isPacked()) { in writeMessageSetTo() 719 if (descriptor.isPacked()) { in writeField() 783 && !descriptor.isRepeated() && !descriptor.isPacked()) { in getMessageSetSerializedSize() 889 if (descriptor.isPacked()) { in computeFieldSize()
|
D | GeneratedMessageLite.java | 903 final boolean isPacked, in newRepeatedGeneratedExtension() argument 912 enumTypeMap, number, type, true /* isRepeated */, isPacked), in newRepeatedGeneratedExtension() 924 final boolean isPacked) { in ExtensionDescriptor() argument 929 this.isPacked = isPacked; in ExtensionDescriptor() 936 final boolean isPacked; field in GeneratedMessageLite.ExtensionDescriptor 959 public boolean isPacked() { in isPacked() method in GeneratedMessageLite.ExtensionDescriptor 960 return isPacked; in isPacked()
|
/external/protobuf/objectivec/ |
D | GPBWireFormat.m | 52 GPBWireFormat GPBWireFormatForType(GPBDataType type, BOOL isPacked) { 53 if (isPacked) {
|
D | GPBWireFormat.h | 57 GPBWireFormat GPBWireFormatForType(GPBDataType dataType, BOOL isPacked)
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBSymbolTypeUDT.h | 42 FORWARD_SYMBOL_METHOD(isPacked)
|
D | PDBSymbolTypeTypedef.h | 42 FORWARD_SYMBOL_METHOD(isPacked)
|
D | PDBSymbolTypeEnum.h | 46 FORWARD_SYMBOL_METHOD(isPacked)
|
D | PDBSymbolTypeBaseClass.h | 44 FORWARD_SYMBOL_METHOD(isPacked)
|
D | IPDBRawSymbol.h | 183 virtual bool isPacked() const = 0;
|
/external/llvm/lib/Linker/ |
D | IRMover.cpp | 170 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic() 205 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 214 DTy->setBody(ETypes, STy->isPacked()); in finishType() 307 bool IsPacked = STy->isPacked(); in get() 1263 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
|
/external/swiftshader/third_party/LLVM/lib/Linker/ |
D | LinkModules.cpp | 146 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic() 193 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 272 cast<StructType>(Ty)->isPacked()); in getImpl()
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktSampleVerifierUtil.cpp | 791 const bool isPacked = isPackedType(texFormat.type); in convertNormalizedFormat() local 793 if (isPacked) in convertNormalizedFormat() 841 if (isPacked) in convertNormalizedFormat()
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVType.cpp | 249 SPIRVTypeStruct::isPacked() const { in isPacked() function in SPIRV::SPIRVTypeStruct
|
/external/swiftshader/third_party/LLVM/lib/Target/ |
D | TargetData.cpp | 53 unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty); in StructLayout() 462 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
|
/external/llvm/include/llvm/DebugInfo/PDB/DIA/ |
D | DIARawSymbol.h | 174 bool isPacked() const override;
|
/external/protobuf/js/ |
D | message.js | 118 this.isPacked = opt_isPacked; 556 if (fieldInfo.isRepeated && !fieldInfo.isPacked) {
|