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

/external/chromium_org/third_party/protobuf/python/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.py139 def FieldSize(value): function in function:_SimpleSizer.SpecificSizer
141 return FieldSize
168 def FieldSize(value): function in function:_ModifiedSizer.SpecificSizer
170 return FieldSize
194 def FieldSize(value): function in function:_FixedSizer.SpecificSizer
196 return FieldSize
237 def FieldSize(value): function in function:StringSizer
240 return FieldSize
259 def FieldSize(value): function in function:BytesSizer
262 return FieldSize
278 def FieldSize(value): function in function:GroupSizer
298 def FieldSize(value): function in function:MessageSizer
323 def FieldSize(value): function in function:MessageSetItemSizer
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.cc414 int GeneratedMessageReflection::FieldSize(const Message& message, function in class:google::protobuf::internal::GeneratedMessageReflection
416 USAGE_CHECK_MESSAGE_TYPE(FieldSize);
417 USAGE_CHECK_REPEATED(FieldSize);
654 if (FieldSize(message, field) > 0) {
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp368 uint64_t FieldSize = FD->getBitWidthValue(Types.getContext()); local
370 BitFields[FD] = CGBitFieldInfo::MakeInfo(Types, FD, FieldOffset, FieldSize,
445 uint64_t FieldSize = Field->getBitWidthValue(Types.getContext()); local
448 if (FieldSize == 0)
452 FieldSize, Types.getTarget().getCharAlign());
461 BitFields[Field] = CGBitFieldInfo::MakeInfo(Types, Field, 0, FieldSize,
H A DCGExprConstant.cpp176 uint64_t FieldSize = Field->getBitWidthValue(Context); local
184 if (FieldSize > FieldValue.getBitWidth())
185 FieldValue = FieldValue.zext(FieldSize);
188 if (FieldSize < FieldValue.getBitWidth())
189 FieldValue = FieldValue.trunc(FieldSize);
205 unsigned NewFieldWidth = FieldSize - BitsInPreviousByte;
H A DCGCall.cpp528 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); local
529 if (UnionSize < FieldSize) {
530 UnionSize = FieldSize;
579 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); local
580 if (UnionSize < FieldSize) {
581 UnionSize = FieldSize;
2223 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType()); local
2224 if (UnionSize < FieldSize) {
2225 UnionSize = FieldSize;
H A DCGDebugInfo.cpp702 uint64_t FieldSize, FieldOffset; local
738 FieldSize = CGM.getContext().getTypeSize(Ty);
741 LineNo, FieldSize, FieldAlign,
745 FieldOffset += FieldSize;
1624 uint64_t FieldSize = 0; local
1630 FieldSize = Field->isBitField()
1681 FieldLine, FieldSize, FieldAlign,
2280 uint64_t FieldSize = CGM.getContext().getTypeSize(FType); local
2283 FieldSize, FieldAlign,
2285 *Offset += FieldSize;
2582 uint64_t FieldSize, FieldOffset; local
[all...]
H A DCGObjCMac.cpp953 CharUnits FieldSize);
2046 CharUnits FieldSize) {
2050 FieldSize));
2053 FieldSize));
2056 FieldSize));
2059 FieldSize));
2063 FieldSize));
2143 CharUnits FieldSize = CGM.getContext().getTypeSizeInChars(Field->getType()); local
2145 CharUnits UnionIvarSize = FieldSize;
2155 FieldSize);
2043 UpdateRunSkipBlockVars(bool IsByref, Qualifiers::ObjCLifetime LifeTime, CharUnits FieldOffset, CharUnits FieldSize) argument
2176 CharUnits FieldSize local
4622 unsigned FieldSize = CGM.getContext().getTypeSize(Field->getType()); local
4669 unsigned FieldSize local
[all...]
/external/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.cc426 int GeneratedMessageReflection::FieldSize(const Message& message, function in class:google::protobuf::internal::GeneratedMessageReflection
428 USAGE_CHECK_MESSAGE_TYPE(FieldSize);
429 USAGE_CHECK_REPEATED(FieldSize);
652 if (FieldSize(message, field) > 0) {
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp677 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
1739 void RecordLayoutBuilder::LayoutWideBitField(uint64_t FieldSize, argument
1760 if (Size > FieldSize)
1777 setDataSize(std::max(getDataSizeInBits(), FieldSize));
1785 uint64_t NewSizeInBits = FieldOffset + FieldSize;
1807 uint64_t FieldSize = D->getBitWidthValue(Context); local
1817 if (!FieldSize && !LastBitfieldTypeSize)
1833 FieldSize == 0) {
1844 if (FieldSize > TypeSize) {
1845 LayoutWideBitField(FieldSize, TypeSiz
1958 CharUnits FieldSize; local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1748 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType()); local
1750 - Layout->getElementOffset(i)) - FieldSize;
1751 SizeSoFar += FieldSize + PadSize;
H A DDwarfCompileUnit.cpp1648 uint64_t FieldSize = DT.getOriginalTypeSize(); local
1650 if (Size != FieldSize) {
1657 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1658 uint64_t FieldOffset = (HiMark - FieldSize);
1663 Offset = FieldSize - (Offset + Size);

Completed in 359 milliseconds