Home
last modified time | relevance | path

Searched refs:FixedSize (Results 1 – 20 of 20) sorted by relevance

/external/pdfium/core/fxcrt/
Dcfx_fixedbufgrow.h14 template <class DataType, int FixedSize>
18 if (data_size > FixedSize) { in CFX_FixedBufGrow()
22 memset(m_FixedData, 0, sizeof(DataType) * FixedSize); in CFX_FixedBufGrow()
27 DataType m_FixedData[FixedSize];
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp50 if (Optional<size_t> FixedSize = AbbrevDecl->getFixedAttributesByteSize(U)) { in extractFast() local
51 *OffsetPtr += *FixedSize; in extractFast()
58 if (auto FixedSize = AttrSpec.getByteSize(U)) { in extractFast() local
60 *OffsetPtr += *FixedSize; in extractFast()
DDWARFAbbreviationDeclaration.cpp176 if (auto FixedSize = Spec.getByteSize(U)) in getAttributeValue() local
177 Offset += *FixedSize; in getAttributeValue()
DDWARFFormValue.cpp144 if (Optional<uint8_t> FixedSize = in skipValue() local
146 *OffsetPtr += *FixedSize; in skipValue()
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_primitive_field.cc52 int FixedSize(FieldDescriptor::Type type) { in FixedSize() function
89 int fixed_size = FixedSize(descriptor->type()); in SetPrimitiveVariables()
184 int fixed_size = FixedSize(descriptor_->type()); in GenerateByteSize()
425 int fixed_size = FixedSize(descriptor_->type()); in GenerateByteSize()
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_primitive_field.cc126 int FixedSize(FieldDescriptor::Type type) { in FixedSize() function
206 int fixed_size = FixedSize(descriptor->type()); in SetPrimitiveVariables()
583 if (FixedSize(descriptor_->type()) == -1) { in GenerateSerializedSizeCode()
/external/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs389 internal int FixedSize { get; } property in Google.Protobuf.FieldCodec
417 FixedSize = fixedSize; in FieldCodec()
438 FixedSize = 0; in FieldCodec()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DFieldCodecTest.cs92 public void FixedSize(ICodecTestData codec) in FixedSize() method in Google.Protobuf.FieldCodecTest
186 Assert.AreEqual(name.Contains("Fixed"), codec.FixedSize != 0); in TestFixedSize()
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_primitive_field.cc128 int FixedSize(FieldDescriptor::Type type) { in FixedSize() function
226 int fixed_size = FixedSize(descriptor->type()); in SetPrimitiveVariables()
881 || FixedSize(descriptor_->type()) == -1) { in GenerateMergingCodeFromPacked()
926 } else if (FixedSize(descriptor_->type()) == -1) { in GenerateRepeatedDataSizeCode()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_primitive_field_lite.cc127 int fixed_size = FixedSize(GetType(descriptor)); in SetPrimitiveVariables()
781 int fixed_size = FixedSize(GetType(descriptor_)); in GenerateParsingCodeFromPacked()
841 if (FixedSize(GetType(descriptor_)) == -1) { in GenerateSerializedSizeCode()
Djava_primitive_field.cc93 int fixed_size = FixedSize(GetType(descriptor)); in SetPrimitiveVariables()
801 if (FixedSize(GetType(descriptor_)) == -1) { in GenerateSerializedSizeCode()
Djava_helpers.h270 int FixedSize(FieldDescriptor::Type type);
Djava_helpers.cc655 int FixedSize(FieldDescriptor::Type type) { in FixedSize() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIInstrFormats.td85 field bit FixedSize = 0;
165 let TSFlags{40} = FixedSize;
DSIInstructions.td203 let FixedSize = 1;
219 let FixedSize = 1;
342 let FixedSize = 1;
377 let FixedSize = 1;
442 let FixedSize = 1;
DSOPInstructions.td791 let FixedSize = 1;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDIE.cpp435 if (Optional<uint8_t> FixedSize = dwarf::getFixedFormByteSize(Form, Params)) in SizeOf() local
436 return *FixedSize; in SizeOf()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs158 int fixedSize = codec.FixedSize; in CalculatePackedDataSize()
/external/clang/lib/StaticAnalyzer/Checkers/
DBasicObjCFoundationChecks.cpp377 static const unsigned char FixedSize[] = { 8, 16, 32, 64, 32, 64 }; in GetCFNumberSize() local
380 return FixedSize[i-1]; in GetCFNumberSize()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DREADME.md52 dimensions are known by the compiler. FixedSize tensors are not resizable.