Home
last modified time | relevance | path

Searched refs:isPacked (Results 1 – 25 of 125) sorted by relevance

12345

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DExtensionSchemaLite.java81 if (extension.descriptor.isRepeated() && extension.descriptor.isPacked()) { in parseExtension()
309 descriptor.isPacked()); in serializeExtension()
316 descriptor.isPacked()); in serializeExtension()
323 descriptor.isPacked()); in serializeExtension()
330 descriptor.isPacked()); in serializeExtension()
337 descriptor.isPacked()); in serializeExtension()
344 descriptor.isPacked()); in serializeExtension()
351 descriptor.isPacked()); in serializeExtension()
358 descriptor.isPacked()); in serializeExtension()
369 descriptor.isPacked()); in serializeExtension()
[all …]
DExtensionSchemaFull.java98 if (extension.descriptor.isRepeated() && extension.descriptor.isPacked()) { in parseExtension()
323 descriptor.isPacked()); in serializeExtension()
330 descriptor.isPacked()); in serializeExtension()
337 descriptor.isPacked()); in serializeExtension()
344 descriptor.isPacked()); in serializeExtension()
351 descriptor.isPacked()); in serializeExtension()
358 descriptor.isPacked()); in serializeExtension()
365 descriptor.isPacked()); in serializeExtension()
372 descriptor.isPacked()); in serializeExtension()
383 descriptor.isPacked()); in serializeExtension()
[all …]
DDescriptorMessageInfoFactory.java326 if (fd.isPacked()) { in convertProto2()
338 if (fd.isPacked()) { in convertProto2()
428 if (fd.isPacked()) { in convertProto3()
489 return fd.isPacked() ? FieldType.BOOL_LIST_PACKED : FieldType.BOOL_LIST; in getFieldType()
496 return fd.isPacked() ? FieldType.DOUBLE_LIST_PACKED : FieldType.DOUBLE_LIST; in getFieldType()
501 return fd.isPacked() ? FieldType.ENUM_LIST_PACKED : FieldType.ENUM_LIST; in getFieldType()
506 return fd.isPacked() ? FieldType.FIXED32_LIST_PACKED : FieldType.FIXED32_LIST; in getFieldType()
511 return fd.isPacked() ? FieldType.FIXED64_LIST_PACKED : FieldType.FIXED64_LIST; in getFieldType()
516 return fd.isPacked() ? FieldType.FLOAT_LIST_PACKED : FieldType.FLOAT_LIST; in getFieldType()
523 return fd.isPacked() ? FieldType.INT32_LIST_PACKED : FieldType.INT32_LIST; in getFieldType()
[all …]
DFieldSet.java66 boolean isPacked(); in isPacked() method
479 static int getWireFormatForFieldType(final WireFormat.FieldType type, boolean isPacked) { in getWireFormatForFieldType() argument
480 if (isPacked) { in getWireFormatForFieldType()
594 && !descriptor.isPacked()) { in writeMessageSetTo()
720 if (descriptor.isPacked()) { in writeField()
779 && !descriptor.isPacked()) { in getMessageSetSerializedSize()
888 if (descriptor.isPacked()) { in computeFieldSize()
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMTypes.cpp209 ArrayRef<LLVMType> elements, bool isPacked) { in getStructTy() argument
210 return LLVMStructType::getLiteral(context, elements, isPacked); in getStructTy()
231 Optional<StringRef> name, bool isPacked) { in createStructTy() argument
239 if (type.isInitialized() || failed(type.setBody(elements, isPacked))) { in createStructTy()
250 ArrayRef<LLVMType> elements, bool isPacked) { in setStructTyBody() argument
252 structType.cast<LLVMStructType>().setBody(elements, isPacked); in setStructTyBody()
415 bool isPacked) { in getLiteral() argument
416 return Base::get(context, types, isPacked); in getLiteral()
421 bool isPacked) { in getLiteralChecked() argument
422 return Base::getChecked(loc, types, isPacked); in getLiteralChecked()
[all …]
DTypeDetail.h80 bool isPacked() const { in isPacked() function
118 if (isPacked()) in hashValue()
129 return !other.isIdentified() && other.isPacked() == isPacked() &&
176 bool isPacked() const { in isPacked() function
205 llvm::Bitfield::set<KeyFlagPacked>(keySizeAndFlags, key.isPacked()); in LLVMStructTypeStorage()
241 packed == isPacked()); in mutate()
278 return Key(getTypeList(), isPacked()); in getKey()
DLLVMTypeSyntax.cpp60 if (type.isPacked()) in printStructTypeBody()
309 bool isPacked, DialectAsmParser &parser, in trySetStructBody() argument
320 if (succeeded(type.setBody(subtypes, isPacked))) in trySetStructBody()
376 bool isPacked = succeeded(parser.parseOptionalKeyword("packed")); in parseStructType() local
385 return LLVMStructType::getLiteralChecked(loc, {}, isPacked); in parseStructType()
387 return trySetStructBody(type, {}, isPacked, parser, kwLoc, stack); in parseStructType()
410 return LLVMStructType::getLiteralChecked(loc, subtypes, isPacked); in parseStructType()
412 return trySetStructBody(type, subtypes, isPacked, parser, subtypesLoc, stack); in parseStructType()
/external/llvm-project/mlir/include/mlir/Dialect/LLVMIR/
DLLVMTypes.h172 bool isPacked = false);
173 static LLVMType getStructTy(MLIRContext *context, bool isPacked = false) {
174 return getStructTy(context, llvm::None, isPacked);
193 bool isPacked = false);
202 bool isPacked = false) {
206 return createStructTy(ele0.getContext(), elements, name, isPacked);
220 bool isPacked = false);
448 bool isPacked = false);
451 bool isPacked = false);
468 LogicalResult setBody(ArrayRef<LLVMType> types, bool isPacked);
[all …]
/external/llvm-project/llvm/lib/IR/
DType.cpp357 bool isPacked) { in get() argument
359 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
373 ST->setBody(ETypes, isPacked); in get()
383 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
387 if (isPacked) in setBody()
458 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
459 return get(Context, None, isPacked); in get()
463 StringRef Name, bool isPacked) { in create() argument
465 ST->setBody(Elements, isPacked); in create()
478 bool isPacked) { in create() argument
[all …]
/external/llvm/lib/IR/
DType.cpp331 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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DType.cpp347 bool isPacked) { in get() argument
349 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
363 ST->setBody(ETypes, isPacked); in get()
373 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
377 if (isPacked) in setBody()
448 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
449 return get(Context, None, isPacked); in get()
453 StringRef Name, bool isPacked) { in create() argument
455 ST->setBody(Elements, isPacked); in create()
468 bool isPacked) { in create() argument
[all …]
/external/python/cpython2/Modules/_ctypes/
Dstgdict.c327 PyObject *isPacked; in PyCStructUnionType_update_stgdict() local
352 isPacked = PyObject_GetAttrString(type, "_pack_"); in PyCStructUnionType_update_stgdict()
353 if (isPacked) { in PyCStructUnionType_update_stgdict()
354 pack = _PyInt_AsInt(isPacked); in PyCStructUnionType_update_stgdict()
356 Py_XDECREF(isPacked); in PyCStructUnionType_update_stgdict()
361 Py_DECREF(isPacked); in PyCStructUnionType_update_stgdict()
430 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
504 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
577 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DDerivedTypes.h226 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/llvm/include/llvm/IR/
DDerivedTypes.h221 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/angle/src/compiler/translator/
DblocklayoutHLSL.cpp46 if (!isPacked() || gl::IsMatrixType(type) || !arraySizes.empty()) in getBlockLayoutInfo()
65 else if (isPacked()) in getBlockLayoutInfo()
103 else if (isPacked()) in advanceOffset()
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DLayout.cpp109 const bool isPacked = !config.disablePacking && (storage == TLayoutBlockStorage::EbsPacked || in MetalLayoutOf() local
156 if (isPacked) in MetalLayoutOf()
251 const bool isPacked = in CommonGlslStructLayoutOf() local
259 if (!isPacked) // XXX: Correct? in CommonGlslStructLayoutOf()
275 const bool isPacked = in CommonGlslLayoutOf() local
303 if (isPacked) in CommonGlslLayoutOf()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDerivedTypes.h264 bool isPacked = false);
267 StringRef Name, bool isPacked = false);
280 bool isPacked = false);
283 static StructType *get(LLVMContext &Context, bool isPacked = false);
298 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
324 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeUDT.cpp65 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump()
190 bool NativeTypeUDT::isPacked() const { in isPacked() function in NativeTypeUDT
192 return UnmodifiedType->isPacked(); in isPacked()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeUDT.cpp65 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump()
190 bool NativeTypeUDT::isPacked() const { in isPacked() function in NativeTypeUDT
192 return UnmodifiedType->isPacked(); in isPacked()
/external/llvm-project/llvm/include/llvm/IR/
DDerivedTypes.h244 bool isPacked = false);
247 StringRef Name, bool isPacked = false);
259 bool isPacked = false);
262 static StructType *get(LLVMContext &Context, bool isPacked = false);
280 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
306 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/external/llvm-project/mlir/lib/Target/LLVMIR/
DTypeTranslation.cpp121 return llvm::StructType::get(context, subtypes, type.isPacked()); in translate()
133 structType->setBody(subtypes, type.isPacked()); in translate()
271 type->isPacked()); in translate()
281 LogicalResult bodySet = translated.setBody(subtypes, type->isPacked()); in translate()
/external/python/cpython3/Modules/_ctypes/
Dstgdict.c349 int isPacked; in PyCStructUnionType_update_stgdict() local
394 isPacked = 1; in PyCStructUnionType_update_stgdict()
409 isPacked = 0; in PyCStructUnionType_update_stgdict()
487 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
563 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
633 if (isStruct && !isPacked) { in PyCStructUnionType_update_stgdict()
/external/skqp/src/sksl/
DSkSLMetalCodeGenerator.h141 int size(const Type* type, bool isPacked) const;
143 int alignment(const Type* type, bool isPacked) const;
/external/protobuf/objectivec/
DGPBWireFormat.m59 GPBWireFormat GPBWireFormatForType(GPBDataType type, BOOL isPacked) {
60 if (isPacked) {
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolTypeUDT.h42 FORWARD_SYMBOL_METHOD(isPacked)

12345