Home
last modified time | relevance | path

Searched refs:ninits (Results 1 – 25 of 33) sorted by relevance

12

/dports/sysutils/conky-awesome/conky-1.12.2/src/
H A Dpulseaudio.h81 int ninits; variable
88 ninits(0), in pulseaudio_c()
H A Dpulseaudio.cc199 pulseaudio->ninits++; in init_pulseaudio()
205 pulseaudio->ninits++; in init_pulseaudio()
281 if (--puau_int->ninits > 0) { in free_pulseaudio()
/dports/sysutils/conky/conky-1.12.2/src/
H A Dpulseaudio.h81 int ninits; variable
88 ninits(0), in pulseaudio_c()
H A Dpulseaudio.cc199 pulseaudio->ninits++; in init_pulseaudio()
205 pulseaudio->ninits++; in init_pulseaudio()
281 if (--puau_int->ninits > 0) { in free_pulseaudio()
/dports/lang/guile2/guile-2.2.7/module/ice-9/
H A Deval.scm414 (define (compile-opt-lambda body nreq rest? nopt ninits unbound make-alt)
427 (let* ((nvals (+ nreq (if rest? 1 0) ninits))
452 (define (compile-kw-lambda body nreq rest? nopt kw ninits unbound make-alt)
474 (let* ((nvals (+ nreq (if rest? 1 0) ninits))
560 (define (compile-general-lambda body nreq rest? nopt kw ninits unbound alt)
572 (compile-kw-lambda body nreq rest? nopt kw ninits unbound make-alt)
573 (compile-opt-lambda body nreq rest? nopt ninits unbound make-alt)))
598 ((nopt kw ninits unbound alt)
600 ninits unbound alt))))))))
/dports/lang/guile/guile-3.0.7/module/ice-9/
H A Deval.scm414 (define (compile-opt-lambda body nreq rest? nopt ninits unbound make-alt)
427 (let* ((nvals (+ nreq (if rest? 1 0) ninits))
452 (define (compile-kw-lambda body nreq rest? nopt kw ninits unbound make-alt)
474 (let* ((nvals (+ nreq (if rest? 1 0) ninits))
560 (define (compile-general-lambda body nreq rest? nopt kw ninits unbound alt)
572 (compile-kw-lambda body nreq rest? nopt kw ninits unbound make-alt)
573 (compile-opt-lambda body nreq rest? nopt ninits unbound make-alt)))
598 ((nopt kw ninits unbound alt)
600 ninits unbound alt))))))))
/dports/lang/guile2/guile-2.2.7/libguile/
H A Dmemoize.c142 #define FULL_ARITY(nreq, rest, nopt, kw, ninits, unbound, alt) \ argument
144 SCM_I_MAKINUM (ninits), unbound, alt, SCM_UNDEFINED)
552 int nreq, nopt, ninits; in memoize() local
565 ninits = scm_ilength (inits); in memoize()
569 unbound = ninits ? REF (CAR (inits), CONST, EXP) : SCM_BOOL_F; in memoize()
597 arity = FULL_ARITY (nreq, rest, nopt, kw, ninits, unbound, in memoize()
600 arity = FULL_ARITY (nreq, rest, nopt, kw, ninits, unbound, in memoize()
H A Deval.c116 #define BOOT_CLOSURE_PARSE_FULL(fu_,body,nargs,rest,nopt,kw,ninits,unbound,alt) \ argument
122 nopt = ninits = 0; \
132 ninits = SCM_I_INUM (CAR (fu)); fu = CDR (fu); \
756 int i, argc, nreq, nopt, ninits, nenv; in prepare_boot_closure_env_for_apply() local
762 ninits, unbound, alt); in prepare_boot_closure_env_for_apply()
807 nenv = nreq + (scm_is_true (rest) ? 1 : 0) + ninits; in prepare_boot_closure_env_for_apply()
/dports/lang/guile/guile-3.0.7/libguile/
H A Dmemoize.c152 #define FULL_ARITY(nreq, rest, nopt, kw, ninits, unbound, alt) \ argument
154 SCM_I_MAKINUM (ninits), unbound, alt, SCM_UNDEFINED)
562 int nreq, nopt, ninits; in memoize() local
575 ninits = scm_ilength (inits); in memoize()
579 unbound = ninits ? REF (CAR (inits), CONST, EXP) : SCM_BOOL_F; in memoize()
607 arity = FULL_ARITY (nreq, rest, nopt, kw, ninits, unbound, in memoize()
610 arity = FULL_ARITY (nreq, rest, nopt, kw, ninits, unbound, in memoize()
H A Deval.c122 #define BOOT_CLOSURE_PARSE_FULL(fu_,body,nargs,rest,nopt,kw,ninits,unbound,alt) \ argument
128 nopt = ninits = 0; \
138 ninits = SCM_I_INUM (CAR (fu)); fu = CDR (fu); \
767 int i, argc, nreq, nopt, ninits, nenv; in prepare_boot_closure_env_for_apply() local
773 ninits, unbound, alt); in prepare_boot_closure_env_for_apply()
818 nenv = nreq + (scm_is_true (rest) ? 1 : 0) + ninits; in prepare_boot_closure_env_for_apply()
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslcomp/
H A Dtypecheck.cpp854 int ninits = 0, nfields = structspec->numfields(); in typecheck_fields() local
855 while (arg && ninits < nfields) { in typecheck_fields()
856 const auto& field = structspec->field(ninits++); in typecheck_fields()
882 if (m_success && !arg && validate_size(ninits, nfields)) { in typecheck_fields()
890 if (errors() && (arg || nfields > ninits)) { in typecheck_fields()
892 ninits < nfields ? "few" : "many", in typecheck_fields()
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslcomp/
H A Dtypecheck.cpp854 int ninits = 0, nfields = structspec->numfields(); in typecheck_fields() local
855 while (arg && ninits < nfields) { in typecheck_fields()
856 const auto& field = structspec->field(ninits++); in typecheck_fields()
882 if (m_success && !arg && validate_size(ninits, nfields)) { in typecheck_fields()
890 if (errors() && (arg || nfields > ninits)) { in typecheck_fields()
892 ninits < nfields ? "few" : "many", in typecheck_fields()
/dports/www/firefox-legacy/firefox-52.8.0esr/ipc/ipdl/ipdl/cxx/
H A Dcgen.py251 ninits = len(cd.memberinits)
255 if i != (ninits-1):
/dports/www/firefox-esr/firefox-91.8.0/ipc/ipdl/ipdl/cxx/
H A Dcgen.py296 ninits = len(cd.memberinits)
300 if i != (ninits - 1):
/dports/lang/spidermonkey78/firefox-78.9.0/ipc/ipdl/ipdl/cxx/
H A Dcgen.py297 ninits = len(cd.memberinits)
301 if i != (ninits-1):
/dports/www/firefox/firefox-99.0/ipc/ipdl/ipdl/cxx/
H A Dcgen.py296 ninits = len(cd.memberinits)
300 if i != (ninits - 1):
/dports/mail/thunderbird/thunderbird-91.8.0/ipc/ipdl/ipdl/cxx/
H A Dcgen.py296 ninits = len(cd.memberinits)
300 if i != (ninits - 1):
/dports/lang/spidermonkey60/firefox-60.9.0/ipc/ipdl/ipdl/cxx/
H A Dcgen.py280 ninits = len(cd.memberinits)
284 if i != (ninits-1):
/dports/lang/kawa/kawa-3.1.1/gnu/expr/
H A DCompilation.java2588 int ninits = loopLambda.min_args; in loopEnter() local
2589 loopLambda.max_args = ninits; in loopEnter()
2590 Expression[] inits = new Expression[ninits]; in loopEnter()
2591 for (int i = ninits; --i >= 0; ) in loopEnter()
/dports/science/hdf5-18/hdf5-1.8.21/src/
H A DH5Dpkg.h374 unsigned ninits; /* Number of chunk creations */ member
/dports/math/vtk6/VTK-6.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Dpkg.h376 unsigned ninits; /* Number of chunk creations */ member
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/HDF5/src/itkhdf5/src/
H A DH5Dpkg.h392 unsigned ninits; /* Number of chunk creations */ member
/dports/math/vtk9/VTK-9.1.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Dpkg.h399 unsigned ninits; /* Number of chunk creations */ member
/dports/science/hdf5/hdf5-1.10.6/src/
H A DH5Dpkg.h395 unsigned ninits; /* Number of chunk creations */ member
/dports/math/vtk8/VTK-8.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Dpkg.h410 unsigned ninits; /* Number of chunk creations */ member

12