/freebsd/sys/netinet/libalias/ |
H A D | alias_sctp.c | 1286 int param_size; in GetAsconfVtags() local 1291 param_size = SCTP_SIZE32(ntohs(param->param_length)); in GetAsconfVtags() 1294 while((bytes_left >= param_size) && (bytes_left >= SN_VTAG_PARAM_SIZE)) { in GetAsconfVtags() 1313 bytes_left -= param_size; in GetAsconfVtags() 1318 param_size = SCTP_SIZE32(ntohs(param->param_length)); in GetAsconfVtags() 1348 int param_size; in AddGlobalIPAddresses() local 1375 param_size = SCTP_SIZE32(ntohs(param->param_length)); in AddGlobalIPAddresses() 1377 param_size = bytes_left+1; /* force skip loop */ in AddGlobalIPAddresses() 1397 while((bytes_left >= param_size) && (bytes_left >= sizeof(struct sctp_ipv4addr_param))) { in AddGlobalIPAddresses() 1439 bytes_left -= param_size; in AddGlobalIPAddresses() [all …]
|
/freebsd/sys/sys/ |
H A D | thr.h | 74 int thr_new(struct thr_param *param, int param_size);
|
/freebsd/sys/dev/tws/ |
H A D | tws_cam.c | 82 u_int32_t param_size, void *data); 84 u_int32_t param_size, void *data); 773 u_int32_t param_size, void *data) in tws_set_param() argument 809 param->parameter_size_bytes = (u_int16_t)param_size; in tws_set_param() 810 memcpy(param->data, data, param_size); in tws_set_param() 820 u_int32_t param_size, void *data) in tws_get_param() argument 858 param->parameter_size_bytes = (u_int16_t)param_size; in tws_get_param() 866 memcpy(data, param->data, param_size); in tws_get_param()
|
H A D | tws_hdm.c | 54 u_int32_t param_id, u_int32_t param_size, void *data); 56 u_int32_t param_id, u_int32_t param_size, void *data);
|
/freebsd/sys/kern/ |
H A D | kern_thr.c | 135 if (uap->param_size < 0 || uap->param_size > sizeof(param)) in sys_thr_new() 138 if ((error = copyin(uap->param, ¶m, uap->param_size))) in sys_thr_new()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CallDescription.cpp | 68 return matchesImpl(FD, CE.getNumArgs(), FD->param_size()); in matchesAsWritten()
|
H A D | MemRegion.cpp | 204 assert(Index < FD->param_size()); in getDecl() 207 assert(Index < BD->param_size()); in getDecl() 210 assert(Index < MD->param_size()); in getDecl() 213 assert(Index < CD->param_size()); in getDecl() 1012 if (Index < FD->param_size() && FD->parameters()[Index] == PVD) in getVarRegion() 1016 if (Index < BD->param_size() && BD->parameters()[Index] == PVD) in getVarRegion()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | AnyCall.h | 162 size_t param_size() const { return parameters().size(); } in param_size() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Attr.h | 69 return cast<ObjCMethodDecl>(D)->param_size(); in getFunctionOrMethodNumParams()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ODRDiagsEmitter.cpp | 98 const unsigned FirstNumParameters = FirstMethod->param_size(); in diagnoseSubMismatchMethodParameters() 99 const unsigned SecondNumParameters = SecondMethod->param_size(); in diagnoseSubMismatchMethodParameters() 1156 for (unsigned I = 0, N = FirstMethod->param_size(); I < N; ++I) { in diagnoseMismatch() 1704 assert(FirstFunction->param_size() == SecondFunction->param_size() && in diagnoseMismatch() 1707 size_t ParamSize = FirstFunction->param_size(); in diagnoseMismatch()
|
H A D | ODRHash.cpp | 411 ID.AddInteger(Method->param_size()); in VisitObjCMethodDecl() 716 ID.AddInteger(Function->param_size()); in AddFunctionDecl()
|
H A D | ASTStructuralEquivalence.cpp | 2199 Method1->param_size() == Method2->param_size() && in IsStructurallyEquivalent()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/ |
H A D | InvalidPtrChecker.cpp | 320 if (!FD || FD->param_size() != 3 || !FD->isMain()) in checkBeginFunction()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | CalledOnceCheck.cpp | 659 for (unsigned Index : llvm::seq<unsigned>(0u, Function->param_size())) { in findParamsToTrack() 1104 return Method && ParamIndex < Method->param_size() && in shouldBeCalledOnce()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | CodeCompleteConsumer.cpp | 612 if (N < FD->param_size()) in getParamDecl()
|
H A D | SemaAPINotes.cpp | 477 unsigned NumParams = FD ? FD->getNumParams() : MD->param_size(); in ProcessAPINotes()
|
H A D | SemaCodeComplete.cpp | 3682 if (Method->param_size() == 1) in createCodeCompletionStringForDecl() 3741 if (Method->param_size() == 0) { in createCodeCompletionStringForDecl() 7988 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion() 8174 if (NumSelIdents <= Method->param_size()) { in getPreferredArgumentTypeForMessageSend() 9764 if (Method->param_size() > 0) in CodeCompleteObjCMethodDecl() 9870 NumSelIdents <= MethList->getMethod()->param_size()) { in CodeCompleteObjCMethodDeclSelector()
|
H A D | SemaTemplateDeduction.cpp | 5622 Param1.reserve(FD1->param_size() + ShouldConvert1); in getMoreSpecializedTemplate() 5629 Param2.reserve(FD2->param_size() + ShouldConvert2); in getMoreSpecializedTemplate() 5639 FD1->param_size() && FD1->parameters().back()->isParameterPack(); in getMoreSpecializedTemplate() 5641 FD2->param_size() && FD2->parameters().back()->isParameterPack(); in getMoreSpecializedTemplate()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexSymbol.cpp | 222 if (MD->param_size()) in getSymbolInfo()
|
H A D | IndexDecl.cpp | 163 bool isGetter = !D->param_size(); in handleObjCMethod()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 5232 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node; in AST_MATCHER_P() 5234 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node; in AST_MATCHER_P() 5236 return N < Decl->param_size() && Decl->getParamDecl(N) == &Node; in AST_MATCHER_P()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 764 Record.push_back(D->param_size()); in VisitFunctionDecl() 826 Record.push_back(D->param_size()); in VisitObjCMethodDecl() 1305 Record.push_back(D->param_size()); in VisitBlockDecl()
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32_misc.c | 3287 if (uap->param_size < 0 || in freebsd32_thr_new() 3288 uap->param_size > sizeof(struct thr_param32)) in freebsd32_thr_new() 3292 error = copyin(uap->param, ¶m32, uap->param_size); in freebsd32_thr_new()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountChecker.cpp | 1347 for (unsigned idx = 0, e = C->param_size(); idx != e; ++idx) { in checkBeginFunction()
|
/freebsd/lib/libsys/ |
H A D | _libsys.h | 745 int __sys_thr_new(struct thr_param * param, int param_size);
|