HomeSort by: relevance | last modified time | path
    Searched defs:ArgType (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/namespace/
nsarguments.c 73 UINT8 ArgType;
97 ArgType = METHOD_GET_NEXT_TYPE (ArgTypeList);
102 if ((UserArgType != ArgType) && (ArgType != ACPI_TYPE_ANY))
108 AcpiUtGetTypeName (ArgType)));
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
UncountedCallArgsChecker.cpp 84 const auto *ArgType = (*P)->getType().getTypePtrOrNull();
85 if (!ArgType)
89 Optional<bool> IsUncounted = isUncountedPtr(ArgType);
UncountedLocalVarsChecker.cpp 168 const auto *ArgType = V->getType().getTypePtr();
169 if (!ArgType)
172 Optional<bool> IsUncountedPtr = isUncountedPtr(ArgType);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ReplaceWithVeclib.cpp 110 auto *ArgType = Arg.value()->getType();
114 ScalarTypes.push_back(ArgType);
118 auto *VectorArgTy = dyn_cast<VectorType>(ArgType);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyFunctionDumper.cpp 188 auto ArgType = Arg->getType();
189 ArgType->dump(*this);
  /src/sys/external/bsd/acpica/dist/compiler/
aslwalks.c 190 UINT32 ArgType;
380 while ((ArgType = GET_CURRENT_ARG_TYPE (RuntimeArgTypes)))
383 RuntimeArgTypes2 |= ArgType;
389 while ((ArgType = GET_CURRENT_ARG_TYPE (RuntimeArgTypes2)))
393 RequiredBtypes = AnMapArgTypeToBtype (ArgType);
412 switch (ArgType)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURewriteOutArguments.cpp 434 PointerType *ArgType = cast<PointerType>(Arg.getType());
436 auto *EltTy = ArgType->getElementType();
441 Type *PtrTy = Val->getType()->getPointerTo(ArgType->getAddressSpace());
AMDGPUPrintfRuntimeBinding.cpp 210 Type *ArgType = Arg->getType();
211 unsigned ArgSize = TD->getTypeAllocSizeInBits(ArgType);
219 auto *LLVMVecType = llvm::dyn_cast<llvm::FixedVectorType>(ArgType);
232 ArgType = Arg->getType();
233 ArgSize = TD->getTypeAllocSizeInBits(ArgType);
248 if (shouldPrintAsStr(OpConvSpecifiers[ArgCount - 1], ArgType)) {
277 << " for type: " << *ArgType << '\n');
402 Type *ArgType = Arg->getType();
404 if (ArgType->isFPOrFPVectorTy() && !isa<VectorType>(ArgType)) {
    [all...]
AMDGPULibFunc.h 292 unsigned char ArgType;
299 ArgType = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixFunctionBitcasts.cpp 143 Type *ArgType = AI->getType();
146 if (ArgType == ParamType) {
149 if (CastInst::isBitOrNoopPointerCastable(ArgType, ParamType, DL)) {
154 } else if (ArgType->isStructTy() || ParamType->isStructTy()) {
162 << *ParamType << " Got: " << *ArgType << "\n");
  /src/sys/external/bsd/acpica/dist/debugger/
dbtest.c 1110 UINT8 ArgType;
1160 ArgType = METHOD_GET_NEXT_TYPE (ArgTypeList);
1161 ThisParam->Type = ArgType;
1163 switch (ArgType)
1193 Pathname, ArgType);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 158 Type *ArgType = F.getFunctionType()->getParamType(0);
159 switch (ArgType->getTypeID()) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 305 const QualType ArgType = Arg->getType();
307 if (ArgType->isDependentType() && !ArgType->isPointerType())
310 return ArgType->castAs<PointerType>()->getPointeeType();
ASTDiagnostic.cpp 557 QualType ArgType;
627 FlatTree[CurrentNode].FromArgInfo.ArgType = FromType;
628 FlatTree[CurrentNode].ToArgInfo.ArgType = ToType;
661 FlatTree[CurrentNode].FromArgInfo.ArgType = FromIntType;
662 FlatTree[CurrentNode].ToArgInfo.ArgType = ToIntType;
697 FlatTree[CurrentNode].ToArgInfo.ArgType = ToIntType;
710 FlatTree[CurrentNode].FromArgInfo.ArgType = FromIntType;
790 FromType = FlatTree[ReadNode].FromArgInfo.ArgType;
791 ToType = FlatTree[ReadNode].ToArgInfo.ArgType;
815 FromIntType = FlatTree[ReadNode].FromArgInfo.ArgType;
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 796 const Type *ArgType;
928 unsigned ArgTypeBits = IA.ArgType->sizeInBits();
942 tmp = utostr(IA.ArgType->sizeInBits());
1043 Result::Ptr getCodeForArg(unsigned ArgNum, const Type *ArgType, bool Promote,
1304 Result::Ptr EmitterBase::getCodeForArg(unsigned ArgNum, const Type *ArgType,
1307 ArgNum, isa<PointerType>(ArgType), Immediate);
1310 if (const auto *ST = dyn_cast<ScalarType>(ArgType)) {
1313 } else if (const auto *PT = dyn_cast<PredicateType>(ArgType)) {
1382 const Type *ArgType = ME.getType(TypeInit, Param);
1383 ArgTypes.push_back(ArgType);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 956 auto *ArgType = cast<PointerType>(LHS->getType());
961 ConstantExpr::getSizeOf(ArgType->getElementType()),
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
FormatString.h 249 class ArgType {
282 ArgType(Kind K = UnknownTy, const char *N = nullptr) : K(K), Name(N) {}
283 ArgType(QualType T, const char *N = nullptr) : K(SpecificTy), T(T), Name(N) {}
284 ArgType(CanQualType T) : K(SpecificTy), T(T) {}
286 static ArgType Invalid() { return ArgType(InvalidTy); }
293 /// Create an ArgType which corresponds to the type pointer to A.
294 static ArgType PtrTo(const ArgType& A) {
295 assert(A.K >= InvalidTy && "ArgType cannot be pointer to invalid/unknown")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 1140 RecTy *ArgType = nullptr;
1147 ArgType = DagRecTy::get();
1159 ArgType = IntRecTy::get();
1168 // ArgType for the comparison operators is not yet known.
1172 ArgType = ItemType;
1179 ArgType = StringRecTy::get();
1204 InitList.push_back(ParseValue(CurRec, ArgType));
1215 if (!ArgType) {
1217 ArgType = ListType;
1221 if (!isa<ListRecTy>(ArgType)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstCombineIntrinsic.cpp 1760 auto ArgType = cast<FixedVectorType>(Arg->getType());
1761 ArgWidth = ArgType->getNumElements();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 429 static const char *PropertyMemoryAttribute(ASTContext &Context, QualType ArgType) {
430 Qualifiers::ObjCLifetime propertyLifetime = ArgType.getObjCLifetime();
431 bool RetainableObject = ArgType->isObjCRetainableType();
436 ArgType->getAs<ObjCObjectPointerType>()) {
444 else if (ArgType->isBlockPointerType())
451 return ArgType->isBlockPointerType() ? "copy" : "strong";
502 QualType ArgType = Context.getCanonicalType(argDecl->getType());
503 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ArgType))
1219 QualType ArgType = argDecl->getType();
1220 if (!Ctx.hasSameUnqualifiedType(ArgType, GRT)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 1402 QualType ArgType;
1475 DeleteArgs.add(Traits::get(CGF, Arg.ArgValue), Arg.ArgType);
CGStmtOpenMP.cpp 454 QualType ArgType = FD->getType();
464 ((I->capturesVariableByCopy() && !ArgType->isAnyPointerType()) ||
466 ArgType = Ctx.getUIntPtrType();
477 if (ArgType->isVariablyModifiedType())
478 ArgType = getCanonicalParamType(Ctx, ArgType);
484 CapVar ? CapVar->getLocation() : FD->getLocation(), II, ArgType,
488 II, ArgType, ImplicitParamDecl::Other);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 4749 QualType ArgType;
4753 ArgType = Context.getObjCIdType();
4756 ArgType = GetTypeFromParser(ArgInfo[i].Type, &DI);
4780 ArgType, DI, SC_None);
4803 QualType ArgType = Param->getType();
4804 if (ArgType.isNull())
4805 ArgType = Context.getObjCIdType();
4808 ArgType = Context.getAdjustedParameterType(ArgType);
SemaTemplateDeduction.cpp 1126 /// its qualifiers matching those of the ArgType.
1128 QualType ArgType) {
1130 Qualifiers ArgQs = ArgType.getQualifiers();
3805 QualType ArgType = GetTypeOfFunction(S, R, Fn);
3806 if (ArgType.isNull()) continue;
3810 ArgType->isFunctionType())
3811 ArgType = S.Context.getPointerType(ArgType);
3830 ArgType, Info, Deduced, TDF);
3834 Match = ArgType;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 2394 QualType ArgType = proto->getParamType(i);
2395 RewriteBlockPointerType(FdStr, ArgType);

Completed in 87 milliseconds

1 2