Home
last modified time | relevance | path

Searched refs:param_size (Results 1 – 25 of 52) sorted by relevance

123

/src/sys/netinet/libalias/
H A Dalias_sctp.c1286 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 …]
/src/sys/sys/
H A Dthr.h75 int thr_new(struct thr_param *param, int param_size);
/src/sys/dev/tws/
H A Dtws_cam.c82 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 Dtws_hdm.c54 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);
/src/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp350 if (D->param_size() < 2) in create_call_once()
510 if (D->param_size() != 2) in create_dispatch_once()
594 if (D->param_size() != 2) in create_dispatch_sync()
621 if (D->param_size() != 3) in create_OSAtomicCompareAndSwap()
891 if (D->param_size() != 0) in getBody()
H A DCalledOnceCheck.cpp659 for (unsigned Index : llvm::seq<unsigned>(0u, Function->param_size())) { in findParamsToTrack()
1104 return Method && ParamIndex < Method->param_size() && in shouldBeCalledOnce()
H A DRetainSummaryManager.cpp757 if (isOSObjectDynamicCast(FName) && FD->param_size() >= 1) { in canEval()
759 } else if (isOSObjectRequiredCast(FName) && FD->param_size() >= 1) { in canEval()
/src/sys/kern/
H A Dkern_thr.c142 if (uap->param_size < 0 || uap->param_size > sizeof(param)) in sys_thr_new()
145 if ((error = copyin(uap->param, &param, uap->param_size))) in sys_thr_new()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp68 return matchesImpl(FD, CE.getNumArgs(), FD->param_size()); in matchesAsWritten()
H A DMemRegion.cpp204 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()
/src/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h162 size_t param_size() const { return parameters().size(); } in param_size() function
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DAttr.h69 return cast<ObjCMethodDecl>(D)->param_size(); in getFunctionOrMethodNumParams()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp106 return getNonNullAttrsImpl(Call, Call.param_size()); in getNonNullAttrs()
H A DDynamicTypePropagation.cpp855 for (unsigned i = 0; i < Method->param_size(); i++) { in checkPreObjCMessage()
/src/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp98 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 DODRHash.cpp411 ID.AddInteger(Method->param_size()); in VisitObjCMethodDecl()
716 ID.AddInteger(Function->param_size()); in AddFunctionDecl()
H A DASTStructuralEquivalence.cpp2199 Method1->param_size() == Method2->param_size() && in IsStructurallyEquivalent()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/
H A DInvalidPtrChecker.cpp320 if (!FD || FD->param_size() != 3 || !FD->isMain()) in checkBeginFunction()
/src/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp222 if (MD->param_size()) in getSymbolInfo()
H A DIndexDecl.cpp163 bool isGetter = !D->param_size(); in handleObjCMethod()
/src/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp612 if (N < FD->param_size()) in getParamDecl()
H A DSemaAPINotes.cpp477 unsigned NumParams = FD ? FD->getNumParams() : MD->param_size(); in ProcessAPINotes()
H A DSemaCodeComplete.cpp3682 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()
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5232 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()
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp764 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()

123