Searched defs:FieldSize (Results 1 - 12 of 12) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp176 CharUnits FieldSize = ASTContext.getTypeSizeInChars(FD->getType()); local
180 Offset = FieldOffset + FieldSize;
/external/nanopb-c/generator/google/protobuf/internal/
H A Dencoder.py145 def FieldSize(value): function in function:_SimpleSizer.SpecificSizer
147 return FieldSize
174 def FieldSize(value): function in function:_ModifiedSizer.SpecificSizer
176 return FieldSize
200 def FieldSize(value): function in function:_FixedSizer.SpecificSizer
202 return FieldSize
243 def FieldSize(value): function in function:StringSizer
246 return FieldSize
265 def FieldSize(value): function in function:BytesSizer
268 return FieldSize
284 def FieldSize(value): function in function:GroupSizer
304 def FieldSize(value): function in function:MessageSizer
329 def FieldSize(value): function in function:MessageSetItemSizer
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dencoder.py151 def FieldSize(value): function in function:_SimpleSizer.SpecificSizer
153 return FieldSize
180 def FieldSize(value): function in function:_ModifiedSizer.SpecificSizer
182 return FieldSize
206 def FieldSize(value): function in function:_FixedSizer.SpecificSizer
208 return FieldSize
249 def FieldSize(value): function in function:StringSizer
252 return FieldSize
271 def FieldSize(value): function in function:BytesSizer
274 return FieldSize
290 def FieldSize(value): function in function:GroupSizer
310 def FieldSize(value): function in function:MessageSizer
335 def FieldSize(value): function in function:MessageSetItemSizer
[all...]
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp171 uint64_t FieldSize = Field->getBitWidthValue(Context); local
179 if (FieldSize > FieldValue.getBitWidth())
180 FieldValue = FieldValue.zext(FieldSize);
183 if (FieldSize < FieldValue.getBitWidth())
184 FieldValue = FieldValue.trunc(FieldSize);
200 unsigned NewFieldWidth = FieldSize - BitsInPreviousByte;
H A DCGCall.cpp684 CharUnits FieldSize = Context.getTypeSizeInChars(FD->getType()); local
685 if (UnionSize < FieldSize) {
686 UnionSize = FieldSize;
H A DCGClass.cpp879 CharUnits FieldSize = FieldInfo.first; local
881 SSV[NumFields].Size = D->isBitField() ? 0 : FieldSize.getQuantity();
H A DCGDebugInfo.cpp755 uint64_t FieldSize, FieldOffset; local
789 FieldSize = CGM.getContext().getTypeSize(Ty);
792 FieldSize, FieldAlign, FieldOffset,
795 FieldOffset += FieldSize;
1852 uint64_t FieldSize = 0; local
1858 FieldSize = Field->isBitField()
1910 FieldSize, FieldAlign, FieldOffset, Flags,
2401 uint64_t FieldSize = CGM.getContext().getTypeSize(FType); local
2403 llvm::DIType *Ty = DBuilder.createMemberType(Unit, Name, Unit, 0, FieldSize,
2405 *Offset += FieldSize;
2854 uint64_t FieldSize, FieldOffset; local
[all...]
H A DCGObjCMac.cpp944 CharUnits FieldSize);
2168 CharUnits FieldSize) {
2172 FieldSize));
2175 FieldSize));
2178 FieldSize));
2181 FieldSize));
2185 FieldSize));
2262 CharUnits FieldSize = CGM.getContext().getTypeSizeInChars(Field->getType()); local
2264 CharUnits UnionIvarSize = FieldSize;
2274 FieldSize);
2165 UpdateRunSkipBlockVars(bool IsByref, Qualifiers::ObjCLifetime LifeTime, CharUnits FieldOffset, CharUnits FieldSize) argument
2295 CharUnits FieldSize local
[all...]
/external/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.cc645 int GeneratedMessageReflection::FieldSize(const Message& message, function in class:google::protobuf::internal::GeneratedMessageReflection
647 USAGE_CHECK_MESSAGE_TYPE(FieldSize);
648 USAGE_CHECK_REPEATED(FieldSize);
890 if (FieldSize(message, field) > 0) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1391 uint64_t FieldSize = getBaseTypeSize(DD, DT); local
1394 if (FieldSize && Size != FieldSize) {
1396 addUInt(MemberDie, dwarf::DW_AT_byte_size, None, FieldSize/8);
1421 uint64_t Align = DT->getAlignInBits() ? DT->getAlignInBits() : FieldSize;
H A DAsmPrinter.cpp1977 uint64_t FieldSize = DL.getTypeAllocSize(Field->getType()); local
1979 - Layout->getElementOffset(i)) - FieldSize;
1980 SizeSoFar += FieldSize + PadSize;
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp677 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
1370 void ItaniumRecordLayoutBuilder::LayoutWideBitField(uint64_t FieldSize, argument
1390 if (Size > FieldSize)
1407 uint64_t RoundedFieldSize = roundUpSizeToCharAlignment(FieldSize,
1417 uint64_t NewSizeInBits = FieldOffset + FieldSize;
1439 uint64_t FieldSize = D->getBitWidthValue(Context); local
1511 if (!LastBitfieldTypeSize && !FieldSize)
1521 if (FieldSize > TypeSize) {
1522 LayoutWideBitField(FieldSize, TypeSize, FieldPacked, D);
1533 if (FieldSize
1705 CharUnits FieldSize; local
[all...]

Completed in 541 milliseconds