HomeSort by relevance Sort by last modified time
    Searched defs:FieldSize (Results 1 - 10 of 10) sorted by null

  /external/protobuf/python/google/protobuf/internal/
encoder.py 139 def FieldSize(value):
141 return FieldSize
168 def FieldSize(value):
170 return FieldSize
194 def FieldSize(value):
196 return FieldSize
237 def FieldSize(value):
240 return FieldSize
259 def FieldSize(value):
262 return FieldSize
    [all...]
  /external/protobuf/src/google/protobuf/
generated_message_reflection.cc 426 int GeneratedMessageReflection::FieldSize(const Message& message,
428 USAGE_CHECK_MESSAGE_TYPE(FieldSize);
429 USAGE_CHECK_REPEATED(FieldSize);
652 if (FieldSize(message, field) > 0) {
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 374 uint64_t FieldSize = FD->getBitWidthValue(Types.getContext());
376 BitFields[FD] = CGBitFieldInfo::MakeInfo(Types, FD, FieldOffset, FieldSize,
451 uint64_t FieldSize = Field->getBitWidthValue(Types.getContext());
454 if (FieldSize == 0)
458 FieldSize, Types.getContext().getTargetInfo().getCharAlign());
467 BitFields[Field] = CGBitFieldInfo::MakeInfo(Types, Field, 0, FieldSize,
508 CharUnits fieldSize = CharUnits::fromQuantity(
514 if (fieldAlign > unionAlign || fieldSize > unionSize) {
517 unionSize = fieldSize;
855 CharUnits fieldSize
    [all...]
CGCall.cpp 526 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
527 if (UnionSize < FieldSize) {
528 UnionSize = FieldSize;
577 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType());
578 if (UnionSize < FieldSize) {
579 UnionSize = FieldSize;
    [all...]
CGExprConstant.cpp 176 uint64_t FieldSize = Field->getBitWidthValue(Context);
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;
    [all...]
CGDebugInfo.cpp 681 uint64_t FieldSize, FieldOffset;
717 FieldSize = CGM.getContext().getTypeSize(Ty);
720 LineNo, FieldSize, FieldAlign,
724 FieldOffset += FieldSize;
    [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp     [all...]
AsmPrinter.cpp     [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 675 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
    [all...]

Completed in 217 milliseconds