Home
last modified time | relevance | path

Searched refs:unq (Results 1 – 25 of 786) sorted by relevance

12345678910>>...32

/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/heimdal/lib/asn1/
H A Ddigest.asn186 -- A1 = unq(username-value) ":" unq(realm-value) ":" passwd
88 -- A1 = HEX(H(unq(username-value) ":" unq(realm-value) ":" passwd ) ":" unq(nonce-value) ":" unq(cn…
96 -- unq(nonce-value) ":" nc-value ":" unq(cnonce-value) ":" unq(qop-value) ":" HEX(H(A2))))
98 -- request-digest = HEX(KD(HEX(H(A1)), unq(nonce-value) ":" HEX(H(A2))))
102 -- SS = H( { unq(username-value), ":", unq(realm-value), ":", password } )
103 -- A1 = { SS, ":", unq(nonce-value), ":", unq(cnonce-value) }
104 -- A1 = { SS, ":", unq(nonce-value), ":", unq(cnonce-value), ":", unq(authzid-value) }
111 -- { unq(nonce-value), ":" nc-value, ":",
112 -- unq(cnonce-value), ":", qop-value, ":",
/dports/net/samba412/samba-4.12.15/source4/heimdal/lib/asn1/
H A Ddigest.asn1150 -- A1 = unq(username-value) ":" unq(realm-value) ":" passwd
152 -- A1 = HEX(H(unq(username-value) ":" unq(realm-value) ":" passwd ) ":" unq(nonce-value) ":" unq(cn…
160 -- unq(nonce-value) ":" nc-value ":" unq(cnonce-value) ":" unq(qop-value) ":" HEX(H(A2))))
162 -- request-digest = HEX(KD(HEX(H(A1)), unq(nonce-value) ":" HEX(H(A2))))
166 -- SS = H( { unq(username-value), ":", unq(realm-value), ":", password } )
167 -- A1 = { SS, ":", unq(nonce-value), ":", unq(cnonce-value) }
168 -- A1 = { SS, ":", unq(nonce-value), ":", unq(cnonce-value), ":", unq(authzid-value) }
175 -- { unq(nonce-value), ":" nc-value, ":",
176 -- unq(cnonce-value), ":", qop-value, ":",
/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/svcore/base/
H A DStringBits.cpp85 enum { sep, unq, q1, q2 } mode = sep;
94 case unq: case q2: tok += c; break;
95 case q1: mode = unq; break;
101 case unq: case q1: tok += c; break;
102 case q2: mode = unq; break;
108 case unq: mode = sep; tokens << tok; tok = ""; break;
116 case sep: mode = unq; tok += c; break;
117 case unq: case q1: case q2: tok += c; break;
123 case sep: mode = unq; tok += c; break;
124 case unq: case q1: case q2: tok += c; break;
/dports/emulators/mess/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/bc6h/
H A Dzoh_utils.cpp211 int unq, s; in unquantize() local
224 unq = q; in unquantize()
226 unq = 0; in unquantize()
228 unq = U16MAX; in unquantize()
230 unq = (q * (U16MAX+1) + (U16MAX+1)/2) >> prec; in unquantize()
239 unq = q; in unquantize()
245 unq = 0; in unquantize()
247 unq = s ? -S16MAX : S16MAX; in unquantize()
250 unq = (q * (S16MAX+1) + (S16MAX+1)/2) >> (prec-1); in unquantize()
252 unq = -unq; in unquantize()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/bc6h/
H A Dzoh_utils.cpp211 int unq, s; in unquantize() local
224 unq = q; in unquantize()
226 unq = 0; in unquantize()
228 unq = U16MAX; in unquantize()
230 unq = (q * (U16MAX+1) + (U16MAX+1)/2) >> prec; in unquantize()
239 unq = q; in unquantize()
245 unq = 0; in unquantize()
247 unq = s ? -S16MAX : S16MAX; in unquantize()
250 unq = (q * (S16MAX+1) + (S16MAX+1)/2) >> (prec-1); in unquantize()
252 unq = -unq; in unquantize()
[all …]
/dports/audio/rosegarden/rosegarden-21.06.1/src/misc/
H A DStrings.cpp143 enum { sep, unq, q1, q2 } mode = sep; in splitQuotedString() enumerator
152 case unq: case q2: tok += c; break; in splitQuotedString()
159 case unq: case q1: tok += c; break; in splitQuotedString()
166 case unq: mode = sep; tokens << tok; tok = ""; break; in splitQuotedString()
174 case sep: mode = unq; tok += c; break; in splitQuotedString()
177 case unq: in splitQuotedString()
186 case sep: mode = unq; tok += c; break; in splitQuotedString()
189 case unq: in splitQuotedString()
/dports/emulators/mess/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/bc7/
H A Davpcl_utils.cpp76 int unq; in unquantize() local
82 unq = q; in unquantize()
84 unq = 0; in unquantize()
86 unq = 255; in unquantize()
88 unq = (q * 256 + 128) >> prec; in unquantize()
94 return unq; in unquantize()
100 int q, unq; in quantize() local
104 unq = (int)floor(value + 0.5f); in quantize()
105 nvAssert (unq <= 255); in quantize()
108 q = (prec >= 8) ? unq : (unq << prec) / 256; in quantize()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/bimg/3rdparty/nvtt/bc7/
H A Davpcl_utils.cpp76 int unq; in unquantize() local
82 unq = q; in unquantize()
84 unq = 0; in unquantize()
86 unq = 255; in unquantize()
88 unq = (q * 256 + 128) >> prec; in unquantize()
94 return unq; in unquantize()
100 int q, unq; in quantize() local
104 unq = (int)floor(value + 0.5f); in quantize()
105 nvAssert (unq <= 255); in quantize()
108 q = (prec >= 8) ? unq : (unq << prec) / 256; in quantize()
[all …]
/dports/devel/p5-Data-Model/Data-Model-0.00008/t/010_core/
H A Dvalidate_query_param.t15 unique 'unq';
17 columns qw/id unq name nickname/;
25 unq => 'u1',
55 my($ret) = $obj->get('model' => { index => { unq => 'u1' } });
60 $obj->get('model' => { index => { unq => 'u1', foo => 2 } });
/dports/science/afni/afni-AFNI_21.3.16/src/SUMA/
H A DSUMA_IsoSurfaceFunc.c91 int i, k, N_SO, nproc=0, n_unq, *unq=NULL; in SUMA_THD_ROI_IsoSurfaces() local
115 if (!unq) { in SUMA_THD_ROI_IsoSurfaces()
124 if (unq[i] == valmask[k]) { in SUMA_THD_ROI_IsoSurfaces()
125 unq[nproc] = unq[i]; ++nproc; in SUMA_THD_ROI_IsoSurfaces()
133 if (unq[i] != 0) { in SUMA_THD_ROI_IsoSurfaces()
134 unq[nproc] = unq[i]; ++nproc; in SUMA_THD_ROI_IsoSurfaces()
148 fprintf(SUMA_STDERR,"%d ", unq[i]); in SUMA_THD_ROI_IsoSurfaces()
160 i+1, n_unq, unq[i]); in SUMA_THD_ROI_IsoSurfaces()
162 (float)unq[i], (float)unq[i], in SUMA_THD_ROI_IsoSurfaces()
165 SUMA_LH("No SO for %d\n", unq[i]); in SUMA_THD_ROI_IsoSurfaces()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/query/
H A Dindex_entry.h58 bool unq, in IndexEntry()
67 unique(unq), in IndexEntry()
81 bool unq, in IndexEntry()
88 unique(unq), in IndexEntry()
/dports/mail/libspamtest/libspamtest/
H A Daddrlist.c159 recipient_list_t *rcpt,*unq,*q; in main() local
191 unq = rfc822_unquote_list(rcpt,"pupkin.ru"); in main()
192 if(!unq) exit(1); in main()
194 rcptlist_iterate(unq,recipient_writer); in main()
196 q = rfc822_quote_list(unq,"pupkin.ru"); in main()
/dports/math/R-cran-survey/survey/R/
H A Dcompressweights.R47 unq<-!duplicated(mat) functionVar
48 rval<-list(weights=mat[unq,],index=match(tmp,tmp[unq]))
/dports/devel/p5-Data-Model/Data-Model-0.00008/t/020_mock/
H A Dcreate-mysql-sql.t74 UNIQUE unq (unq1, unq2, unq3)
124 my @unq = $mock->get_schema('unq')->sql->as_sql;
125 is scalar(@unq), 1;
126 is($unq[0], "CREATE TABLE unq (
H A Dcreate-sql.t115 my @unq = $mock->get_schema('unq')->sql->as_sql;
116 is scalar(@unq), 1;
117 is($unq[0], "CREATE TABLE unq (
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/t/lib/
H A DEventAggregator.t93 unq => {
104 unq => { '071015 21:43:52' => 1, },
128 unq => { root => 1 },
136 unq => { '071015 21:43:52' => 1, },
1291 unq => {
1299 unq => {
1307 unq => {
1689 unq => {
1701 unq => {
1721 unq => {
[all …]
/dports/biology/figtree/figtree-1.4.4/packaging_tools/windows/launch4j/sign4j/
H A Dsign4j.c79 int fnd, spt, unq, vrb, qts, cmn; in main() local
83 inf = outf = 0, fnd = spt = unq = vrb = 0; in main()
88 unq = 1; in main()
152 qts = (! unq || strchr (p, 32)); in main()
207 qts = (! unq || strchr (p, 32)); in main()
/dports/science/afni/afni-AFNI_21.3.16/src/
H A Dthd_makemask.c472 int nvox , ii, *unq = NULL, *vals=NULL; in THD_unique_vals() local
475 unq = NULL ; in THD_unique_vals()
482 return (unq) ; in THD_unique_vals()
492 return (unq) ; in THD_unique_vals()
498 return (unq) ; in THD_unique_vals()
552 return (unq) ; in THD_unique_vals()
572 unq = NULL ; in THD_unique_rank()
656 if (!unq) { in THD_unique_rank()
686 if (imax < unq[r]) imax = unq[r]; in THD_unique_rank()
689 hd->id = unq[r]; in THD_unique_rank()
[all …]
H A Dwhereami.c1501 int *ics=NULL, *unq=NULL, n_unq=0, iroi=0, nonzero, i, k; in compute_overlap() local
1534 unq = NULL; in compute_overlap()
1538 unq = THD_unique_vals( mset_orig , 0, &n_unq, cmask ); in compute_overlap()
1539 if (unq) { in compute_overlap()
1541 for (k=0; k<n_unq; ++k) fprintf (stdout, " %d", unq [k]); in compute_overlap()
1558 if (unq[iroi] == 0) { /* skip nonesense */ in compute_overlap()
1570 THD_makedsetmask( mset , 0 , (float)unq[iroi], in compute_overlap()
1571 (float)unq[iroi] , cmask)) < 0) { in compute_overlap()
1687 if (!unq) { in compute_overlap()
1694 unq[iroi], in compute_overlap()
[all …]
/dports/devel/p5-Data-Model/Data-Model-0.00008/t/lib/Mock/Tests/
H A DIndex.pm90 index => { unq => 'a001' },
103 index => { unq => 'a002' },
116 index => { unq => [qw/ a001 b001 /] },
126 index => { unq => [qw/ a002 b002 /] },
135 my $it5 = mock->get( multi_unique => { index => { unq => [qw/ a001 b002 c001 /] } });
/dports/lang/ghc/ghc-8.10.7/libraries/Cabal/cabal-install/Distribution/Solver/Modular/
H A DDependency.hs243 go1 (Flagged fn nfo t f) = Flagged (fmap unq fn) nfo (go t) (go f)
244 go1 (Stanza sn t) = Stanza (fmap unq sn) (go t)
248 goLDep (LDep dr dep) = LDep (fmap unq dr) (fmap unq dep)
250 unq :: QPN -> PN
251 unq (Q _ pn) = pn function
/dports/devel/hs-cabal-install/cabal-cabal-install-3.4.0.0/cabal-install/Distribution/Solver/Modular/
H A DDependency.hs246 go1 (Flagged fn nfo t f) = Flagged (fmap unq fn) nfo (go t) (go f)
247 go1 (Stanza sn t) = Stanza (fmap unq sn) (go t)
251 goLDep (LDep dr dep) = LDep (fmap unq dr) (fmap unq dep)
253 unq :: QPN -> PN
254 unq (Q _ pn) = pn function
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/
H A D_knockoff.py102 unq, inv, cnt = np.unique(self.stats, return_inverse=True,
111 ii = np.searchsorted(unq, -unq, side='right') - 1
124 self._unq = unq
/dports/devel/R-cran-reshape/reshape/R/
H A Dutils.r121 unq <- unique(values) functionVar
122 if (length(unq) == 1) unq[1] else "black"
/dports/devel/R-cran-pkgcache/pkgcache/R/
H A Dinstalled.R30 unq <- unique(lst[[col]][other]) functionVar
36 if (length(unq)) {
37 for (u in unq) {

12345678910>>...32