/freebsd/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_value_prf.c | 521 size_t arg_size; in bhnd_nvram_val_vprintf() local 588 arg_size = sizeof(v.u ## _width); \ in bhnd_nvram_val_vprintf() 590 &v.u ## _width, &arg_size, arg_type); \ in bhnd_nvram_val_vprintf() 700 arg_size = slen; in bhnd_nvram_val_vprintf() 708 arg_size += 1; /* 0 */ in bhnd_nvram_val_vprintf() 710 arg_size += 2; /* 0x/0X */ in bhnd_nvram_val_vprintf() 719 arg_size++; in bhnd_nvram_val_vprintf() 724 for (i = arg_size; i < width; i++) in bhnd_nvram_val_vprintf() 754 if (SIZE_MAX - nbytes < arg_size) in bhnd_nvram_val_vprintf() 757 nbytes += arg_size; in bhnd_nvram_val_vprintf() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AbstractCallSite.cpp | 49 if (CBCalleeIdx < CB.arg_size()) in getCallbackUses() 123 unsigned NumCallOperands = CB->arg_size(); in AbstractCallSite() 151 for (unsigned u = Callee->arg_size(); u < NumCallOperands; u++) in AbstractCallSite()
|
H A D | AutoUpgrade.cpp | 601 } else if (F->arg_size() == 2) in upgradeX86IntrinsicFunction() 818 if (F->arg_size() != 2) in upgradeArmOrAarch64IntrinsicFunction() 1057 if (F->arg_size() == 1) { in upgradeIntrinsicFunction1() 1070 if (F->arg_size() == 2 && Name == "coro.end") { in upgradeIntrinsicFunction1() 1093 if (Name == "addr" || (Name == "value" && F->arg_size() == 4)) { in upgradeIntrinsicFunction1() 1196 if (F->arg_size() == 5) { in upgradeIntrinsicFunction1() 1205 if (Name.starts_with("memset.") && F->arg_size() == 5) { in upgradeIntrinsicFunction1() 1222 if (F->arg_size() == 1) { in upgradeIntrinsicFunction1() 1278 if (F->arg_size() == 2 || F->arg_size() == 3 || in upgradeIntrinsicFunction1() 1290 if (Name.starts_with("ptr.annotation.") && F->arg_size() == 4) { in upgradeIntrinsicFunction1() [all …]
|
H A D | StructuralHash.cpp | 108 hash(F.arg_size());
|
H A D | IntrinsicInst.cpp | 304 unsigned NumOperands = arg_size(); in getRoundingMode() 316 unsigned NumOperands = arg_size(); in getExceptionBehavior() 370 unsigned NumArgs = arg_size() - 1; in getNonMetadataArgCount()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 49 if (Expr->arg_size() < 2) in apply() 65 if (Expr->arg_size() != 2) in apply() 84 if (Expr->arg_size() != 2) in apply() 180 if (Expr->arg_size() > 4) in apply() 183 else if (Expr->arg_size() == 4) { in apply()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | ErlangGCPrinter.cpp | 96 unsigned StackArity = MD.getFunction().arg_size() > RegisteredArgs in finishAssembly() 97 ? MD.getFunction().arg_size() - RegisteredArgs in finishAssembly()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 158 unsigned NumOps = CI->arg_size(); in lowerPrintfForGpu() 179 Sizes << CI->arg_size() - 1; in lowerPrintfForGpu() 182 ArgCount < CI->arg_size() && ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 337 ArgCount < CI->arg_size() && ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 415 if (I + 1 == E && ArgCount + 1 == CI->arg_size()) in lowerPrintfForGpu()
|
H A D | AMDGPUImageIntrinsicOptimizer.cpp | 113 assert(IIList.front()->arg_size() == II->arg_size()); in addInstToMergeableList() 114 for (int I = 1, E = II->arg_size(); AllEqual && I != E; ++I) { in addInstToMergeableList()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 1408 unsigned arg_size() const { return arg_end() - arg_begin(); } 1411 assert(i < arg_size() && "Out of bounds!"); 1416 assert(i < arg_size() && "Out of bounds!"); 1422 assert(i < arg_size() && "Out of bounds!"); 1426 assert(i < arg_size() && "Out of bounds!"); 1595 assert(ArgNo < arg_size() && "Out of bounds"); 1601 assert(ArgNo < arg_size() && "Out of bounds"); 1642 assert(ArgNo < arg_size() && "Out of bounds"); 1648 assert(ArgNo < arg_size() && "Out of bounds"); 1722 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
H A D | AbstractCallSite.h | 156 return CB->arg_size(); in getNumArgOperands()
|
H A D | Statepoint.h | 132 assert(CallArgsBeginPos <= (int)arg_size()); in actual_arg_begin()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_gsupport.cpp | 1227 long arg_size, long arg_align, 1249 arg_size = 0; 1254 arg_size ? arg_size + arg_align - 1 : 0, (kmp_routine_entry_t)func); 1256 if (arg_size > 0) { 1266 KMP_MEMCPY(task->shareds, data, arg_size); 1767 void (*copy_func)(void *, void *), long arg_size, in __GOMP_taskloop() argument 1791 KA_TRACE(20, (buff, gtid, func, data, copy_func, arg_size, arg_align, in __GOMP_taskloop() 1796 KMP_ASSERT((size_t)arg_size >= 2 * sizeof(T)); in __GOMP_taskloop() 1835 arg_size + arg_align - 1, (kmp_routine_entry_t)func); in __GOMP_taskloop() 1847 KMP_MEMCPY(task->shareds, data, arg_size); in __GOMP_taskloop() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILPrepare.cpp | 186 for (size_t Idx = 0, End = F.arg_size(); Idx < End; ++Idx) in runOnModule() 234 for (size_t Idx = 0, End = CB->arg_size(); Idx < End; ++Idx) in runOnModule()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyOptimizeReturned.cpp | 59 for (unsigned I = 0, E = CB.arg_size(); I < E; ++I) in visitCallBase()
|
/freebsd/sbin/nvmecontrol/ |
H A D | comnd.h | 44 arg_size, enumerator
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
H A D | DifferenceEngine.cpp | 350 if (L.arg_size() != R.arg_size()) { in diffCallSites() 354 for (unsigned I = 0, E = L.arg_size(); I != E; ++I) in diffCallSites() 770 if (L->arg_size() != R->arg_size()) in diff()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsOs16.cpp | 59 if (F.arg_size() >=1) { in needsFPFromSig()
|
H A D | Mips16HardFloat.cpp | 108 switch (F.arg_size()) { in whichFPParamVariantNeeded() 158 if (F.arg_size() >=1) { in needsFPStubFromParams()
|
H A D | MipsCCState.cpp | 196 assert(Ins[i].getOrigArgIndex() < MF.getFunction().arg_size()); in PreAnalyzeFormalArgumentsForF128()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVEmitIntrinsics.cpp | 723 for (unsigned i = 0, PtrCnt = 0; i < CI->arg_size() && PtrCnt < 2; in deduceOperandElementType() 734 if (CI->arg_size() < 2) in deduceOperandElementType() 934 for (unsigned OpIdx = 0; OpIdx < Call.arg_size(); OpIdx++) in visitCallInst() 1159 for (unsigned OpIdx = 0; OpIdx < CalledF->arg_size(); ++OpIdx) { in insertPtrCastOrAssignTypeInstr() 1192 for (unsigned OpIdx = 0; OpIdx < CI->arg_size(); OpIdx++) { in insertPtrCastOrAssignTypeInstr() 1564 if (!CI || OpIdx >= CI->arg_size()) in deduceFunParamElementType() 1591 for (unsigned i = 0; i < OuterF->arg_size(); ++i) { in deduceFunParamElementType() 1611 for (unsigned OpIdx = 0; OpIdx < F->arg_size(); ++OpIdx) { in processParamTypesByFunHeader() 1624 for (unsigned OpIdx = 0; OpIdx < F->arg_size(); ++OpIdx) { in processParamTypes()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | InjectTLIMappings.cpp |
|
H A D | CtorUtils.cpp | 102 if (!F || F->arg_size() != 0) in findGlobalCtors()
|
/freebsd/sys/amd64/vmm/io/ |
H A D | ppt.c | 670 size_t res_size, cookie_size, arg_size; in ppt_setup_msix() local 700 arg_size = numvec * sizeof(ppt->msix.arg[0]); in ppt_setup_msix() 705 ppt->msix.arg = malloc(arg_size, M_PPTMSIX, M_WAITOK | M_ZERO); in ppt_setup_msix()
|
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 671 unsigned arg_size() const { return NumArgs; } in arg_size() function 676 return isVariadic() ? getRequiredArgs().getNumRequiredArgs() : arg_size(); in getNumRequiredArgs()
|