Home
last modified time | relevance | path

Searched refs:nargs_ (Results 1 – 25 of 200) sorted by relevance

12345678

/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/expression/
H A DexprOp.cpp48 if (nargs_ > 1) in print()
50 for (int i=0; i<nargs_; i++) { in print()
54 if (i < nargs_ - 1) { in print()
62 if (nargs_ > 1) { in print()
80 if (nargs_ < e1.nargs_) return -1; in compare()
81 if (nargs_ > e1.nargs_) return 1; in compare()
190 for (int i = nargs_; i--;) in isInteger()
311 if (i==nargs_) in shrink_arglist()
329 while (i < nargs_) { in shrink_arglist()
334 if (i < nargs_) in shrink_arglist()
[all …]
H A DCouenneExprOp.hpp36 int nargs_; ///< number of arguments (cardinality of arglist) member in Couenne::exprOp
47 nargs_ (nargs) in exprOp()
53 nargs_ (2) in exprOp()
63 nargs_ (e.nArgs ()) {} in exprOp()
75 {return nargs_;} in nArgs()
98 if (nargs_) { in clonearglist()
99 expression **al = new expression * [nargs_]; in clonearglist()
100 for (register int i=0; i<nargs_; i++) in clonearglist()
132 for (int i=nargs_; i--;) in fillDepSet()
/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/expression/operators/
H A DexprSum.cpp26 nargs_ = 1; in exprSum()
30 if (nargs_ > 1) in exprSum()
55 if (nargs_ == 1) { in simplify()
67 for (register int i=0; i<nargs_; i++) { in simplify()
105 for (int i = 0; i < nargs_; i++) in differentiate()
120 expression **all = new expression * [nargs_]; in getBounds()
123 for (int i=0; i<nargs_; i++) in getBounds()
126 lb = new exprSum (all, nargs_); in getBounds()
127 ub = new exprSum (alu, nargs_); in getBounds()
138 for (int i=0; i<nargs_; i++) { in getBounds()
[all …]
H A DexprMul.cpp32 qsort (arglist_, nargs_, sizeof (expression*), compareExpr); in exprMul()
55 if (nargs_ == 1) { in simplify()
69 for (int i=0; i < nargs_ - 1; i++) { in simplify()
84 for (; j < nargs_; ++j) { in simplify()
103 for (register int i=0; i<nargs_; i++) { in simplify()
149 expression **als = new expression * [nargs_]; in differentiate()
152 for (int i = 0; i < nargs_; i++) in differentiate()
156 expression **alm = new expression * [nargs_]; in differentiate()
160 for (int j = 0; j < nargs_; j++) in differentiate()
164 als [nonconst++] = new exprMul (alm, nargs_); in differentiate()
[all …]
H A DexprTrilinear.cpp33 nargs_ = 3; in exprTrilinear()
34 arglist_ = new expression * [nargs_]; in exprTrilinear()
40 qsort (arglist_, nargs_, sizeof (expression*), compareExpr); in exprTrilinear()
/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/convex/operators/
H A Dconv-exprMul-reformulate.cpp61 nargs_ = (int) indCoe.size(); in standardize()
69 if (nargs_ == 1) { in standardize()
102 for (int i=nargs_; i--;) { in standardize()
127 if (nargs_ <= 2) in standardize()
155 for (int i=0; i<nargs_; i++) in standardize()
202 for (int i = 1; i < nargs_;) { in standardize()
211 …if (i == nargs_ - 2) aux = new exprPow (new exprClone (aux), new exprConst (3.)… in standardize()
234 if (i != nargs_ - 2) in standardize()
277 for (int i = 1; i < nargs_ - 1; i++) in standardize()
282 if (areSameVariables (aux, arglist_ [nargs_ - 1])) in standardize()
[all …]
H A Dconv-exprSum.cpp31 CouNumber *coeff = new CouNumber [nargs_ + 1]; in generateCuts()
32 int *index = new int [nargs_ + 1]; in generateCuts()
63 for (int i=0; i<nargs_; i++) { in generateCuts()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/src/gpu/compute/
H A Dkernel_arg_list.hpp185 kernel_arg_list_t() { nargs_ = 0; } in kernel_arg_list_t()
188 nargs_ = nstl::max(nargs_, index + 1); in set()
194 nargs_ = nstl::max(nargs_, index + 1); in set()
201 nargs_ = nstl::max(nargs_, index + 1); in set()
210 nargs_ = nstl::max(nargs_, index + 1); in set()
214 int nargs() const { return nargs_; } in nargs()
231 int nargs_ = 0; member in dnnl::impl::gpu::compute::kernel_arg_list_t
/dports/math/onednn/oneDNN-2.5.1/src/gpu/compute/
H A Dkernel_arg_list.hpp185 kernel_arg_list_t() { nargs_ = 0; } in kernel_arg_list_t()
188 nargs_ = nstl::max(nargs_, index + 1); in set()
194 nargs_ = nstl::max(nargs_, index + 1); in set()
201 nargs_ = nstl::max(nargs_, index + 1); in set()
210 nargs_ = nstl::max(nargs_, index + 1); in set()
214 int nargs() const { return nargs_; } in nargs()
231 int nargs_ = 0; member in dnnl::impl::gpu::compute::kernel_arg_list_t
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit/
H A DCompileInfo.h91 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
101 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
145 nargs_ = 0; in CompileInfo()
169 unsigned nargs() const { return nargs_; } in nargs()
196 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
206 uint32_t firstLocalSlot() const { return nimplicit_ + nargs_; } in firstLocalSlot()
335 unsigned nargs_; variable
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jit/
H A DCompileInfo.h91 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
101 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
145 nargs_ = 0; in CompileInfo()
169 unsigned nargs() const { return nargs_; } in nargs()
196 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
206 uint32_t firstLocalSlot() const { return nimplicit_ + nargs_; } in firstLocalSlot()
335 unsigned nargs_; variable
/dports/www/firefox/firefox-99.0/js/src/jit/
H A DCompileInfo.h99 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
109 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
153 nargs_ = 0; in CompileInfo()
180 unsigned nargs() const { return nargs_; } in nargs()
207 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
217 uint32_t firstLocalSlot() const { return nimplicit_ + nargs_; } in firstLocalSlot()
346 unsigned nargs_; variable
/dports/science/plumed/plumed2-2.7.2/src/ves/
H A DVesLinearExpansion.cpp285 unsigned int nargs_; member in PLMD::ves::VesLinearExpansion
338 nargs_(getNumberOfArguments()), in VesLinearExpansion()
347 parseMultipleValues("BASIS_FUNCTIONS",basisf_labels,nargs_); in VesLinearExpansion()
419 std::vector<double> cv_values(nargs_); in calculate()
420 std::vector<double> forces(nargs_); in calculate()
422 for(unsigned int k=0; k<nargs_; k++) { in calculate()
433 for(unsigned int k=0; k<nargs_; k++) { in calculate()
H A DLinearBasisSetExpansion.cpp60 nargs_(args_pntrs_.size()), in LinearBasisSetExpansion()
66 grid_min_(nargs_), in LinearBasisSetExpansion()
67 grid_max_(nargs_), in LinearBasisSetExpansion()
68 grid_bins_(nargs_,100), in LinearBasisSetExpansion()
100 for(unsigned int k=0; k<nargs_; k++) { in LinearBasisSetExpansion()
152 std::vector<unsigned int> grid_bins_in(nargs_,nbins); in setGridBins()
195 std::vector<double> forces(nargs_); in updateBiasGrid()
230 std::vector<double> forces(nargs_); in updateBiasWithoutCutoffGrid()
263 std::vector<double> zeros(nargs_,0.0); in updateBiasWithoutCutoffGrid()
501 for(unsigned int k=0; k<nargs_; k++) { in setupUniformTargetDistribution()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit/
H A DCompileInfo.h187 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
197 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
237 nargs_ = 0; in CompileInfo()
290 unsigned nargs() const { return nargs_; } in nargs()
317 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
327 uint32_t firstLocalSlot() const { return nimplicit_ + nargs_; } in firstLocalSlot()
473 unsigned nargs_; variable
/dports/math/curv/curv-0.5/libcurv/
H A Dfunction.cc115 if (nargs_ == 1) { in call()
121 ASSERT_SIZE(fl,missing,list,nargs_,cx); in call()
134 if (nargs_ == 1) in sc_call_expr()
137 if (list->size() != nargs_) in sc_call_expr()
140 ", expected ",nargs_,")")); in sc_call_expr()
149 if (scarg.type.count() != nargs_) in sc_call_expr()
152 ", expected ",nargs_,")")); in sc_call_expr()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/jit/
H A DCompileInfo.h222 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
230 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
256 nargs_ = 0; in CompileInfo()
342 return nargs_; in nargs()
376 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
387 return nimplicit_ + nargs_; in firstLocalSlot()
533 unsigned nargs_; variable
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/
H A DCompileInfo.h195 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
205 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
238 nargs_ = 0; in CompileInfo()
297 unsigned nargs() const { return nargs_; } in nargs()
324 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
334 uint32_t firstLocalSlot() const { return nimplicit_ + nargs_; } in firstLocalSlot()
469 unsigned nargs_; variable
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/jit/
H A DCompileInfo.h221 nargs_ = fun ? fun->nargs() : 0; in CompileInfo()
226 nslots_ = nimplicit_ + nargs_ + nlocals_ + nstack_; in CompileInfo()
235 nargs_ = 0; in CompileInfo()
329 return nargs_; in nargs()
372 MOZ_ASSERT(i < nargs_); in argSlotUnchecked()
383 return nimplicit_ + nargs_; in firstLocalSlot()
558 unsigned nargs_; variable
/dports/math/form/form-4.2.1/check/forcer/
H A Dforcer.frm51 + thetap_(nargs_(?a2,?a3)) * zip(f1(?a1,p2,p3),f2(?a2),f3(?a3))
52 + delta_(nargs_(?a2,?a3)) * f1(?a1,p2,p3)
60 + thetap_(nargs_(?a2,?a3)) * emul(f1(?a1,p2*x3),f2(?a2),f3(?a3))
61 + delta_(nargs_(?a2,?a3)) * f1(?a1,p2*x3)
178 + thetap_(nargs_(?a2,?a3)) * zip(f1(?a1,p2,p3),f2(?a2),f3(?a3))
179 + delta_(nargs_(?a2,?a3)) * f1(?a1,p2,p3)
187 + thetap_(nargs_(?a2,?a3)) * emul(f1(?a1,p2*x3),f2(?a2),f3(?a3))
188 + delta_(nargs_(?a2,?a3)) * f1(?a1,p2*x3)
/dports/devel/boost-docs/boost_1_72_0/libs/spirit/example/qi/compiler_tutorial/mini_c/
H A Dcompiler.hpp28 : code(code), address(code.size()), size_(0), nargs_(nargs) {} in function()
39 int nargs() const { return nargs_; } in nargs()
54 std::size_t nargs_; member
/dports/devel/boost-python-libs/boost_1_72_0/libs/spirit/example/qi/compiler_tutorial/mini_c/
H A Dcompiler.hpp28 : code(code), address(code.size()), size_(0), nargs_(nargs) {} in function()
39 int nargs() const { return nargs_; } in nargs()
54 std::size_t nargs_; member
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/spirit/example/qi/compiler_tutorial/mini_c/
H A Dcompiler.hpp28 : code(code), address(code.size()), size_(0), nargs_(nargs) {} in function()
39 int nargs() const { return nargs_; } in nargs()
54 std::size_t nargs_; member
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/spirit/example/qi/compiler_tutorial/mini_c/
H A Dcompiler.hpp28 : code(code), address(code.size()), size_(0), nargs_(nargs) {} in function()
39 int nargs() const { return nargs_; } in nargs()
54 std::size_t nargs_; member
/dports/databases/percona57-server/boost_1_59_0/libs/spirit/example/qi/compiler_tutorial/mini_c/
H A Dcompiler.hpp28 : code(code), address(code.size()), size_(0), nargs_(nargs) {} in function()
39 int nargs() const { return nargs_; } in nargs()
54 std::size_t nargs_; member

12345678