Lines Matching defs:VLen
168 BTFTypeEnum::BTFTypeEnum(const DICompositeType *ETy, uint32_t VLen,
171 BTFType.Info = IsSigned << 31 | Kind << 24 | VLen;
207 BTFTypeEnum64::BTFTypeEnum64(const DICompositeType *ETy, uint32_t VLen,
210 BTFType.Info = IsSigned << 31 | Kind << 24 | VLen;
332 const DISubroutineType *STy, uint32_t VLen,
336 BTFType.Info = (Kind << 24) | VLen;
563 uint32_t VLen = Elements.size() - 1;
564 if (VLen > BTF::MAX_VLEN)
571 auto TypeEntry = std::make_unique<BTFTypeFuncProto>(STy, VLen, FuncArgNames);
665 uint32_t VLen = Elements.size();
666 if (VLen > BTF::MAX_VLEN)
680 std::make_unique<BTFTypeStruct>(CTy, IsStruct, HasBitField, VLen);
738 uint32_t VLen = Elements.size();
739 if (VLen > BTF::MAX_VLEN)
754 auto TypeEntry = std::make_unique<BTFTypeEnum>(CTy, VLen, IsSigned);
758 auto TypeEntry = std::make_unique<BTFTypeEnum64>(CTy, VLen, IsSigned);