Home
last modified time | relevance | path

Searched refs:argCount (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/sys/contrib/zstd/programs/
H A Dzstdcli.c660 if (argNb >= argCount) { \
695 int main(int const argCount, const char* argv[]) in main() argument
728 FileNamesTable* filenames = UTIL_allocateFileNamesTable((size_t)argCount); /* argCount >= 1 */ in main()
729 …FileNamesTable* file_of_names = UTIL_allocateFileNamesTable((size_t)argCount); /* argCount >= 1 */ in main()
758 assert(argCount >= 1); in main()
785 for (argNb=1; argNb<argCount; argNb++) { in main()
/freebsd-13.1/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c858 int main(int argCount, char** argv) in main() argument
868 FileNamesTable* filenames = UTIL_allocateFileNamesTable((size_t)argCount); in main()
884 for(argNb=1; argNb<argCount; argNb++) { in main()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp115 unsigned argCount = call->getNumArgs(); in checkArgCount() local
116 if (argCount == desiredArgCount) return false; in checkArgCount()
118 if (argCount < desiredArgCount) in checkArgCount()
120 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()
125 call->getArg(argCount - 1)->getEndLoc()); in checkArgCount()
128 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()