Home
last modified time | relevance | path

Searched refs:special (Results 176 – 200 of 60272) sorted by relevance

12345678910>>...2411

/dports/devel/boost-libs/boost_1_72_0/libs/container/test/
H A Dinsert_vs_emplace_test.cpp29 struct special struct in X
38 friend bool operator==(const special &l, const special &r) in operator ==()
41 static special sp;
108 X::special X::sp = X::special();
125 X::sp = X::special(); in main()
139 X::sp = X::special(); in main()
153 X::sp = X::special(); in main()
167 X::sp = X::special(); in main()
182 X::sp = X::special(); in main()
196 X::sp = X::special(); in main()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/container/test/
H A Dinsert_vs_emplace_test.cpp29 struct special struct in X
38 friend bool operator==(const special &l, const special &r) in operator ==()
41 static special sp;
108 X::special X::sp = X::special();
125 X::sp = X::special(); in main()
139 X::sp = X::special(); in main()
153 X::sp = X::special(); in main()
167 X::sp = X::special(); in main()
182 X::sp = X::special(); in main()
196 X::sp = X::special(); in main()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/container/test/
H A Dinsert_vs_emplace_test.cpp29 struct special struct in X
38 friend bool operator==(const special &l, const special &r) in operator ==()
41 static special sp;
108 X::special X::sp = X::special();
125 X::sp = X::special(); in main()
139 X::sp = X::special(); in main()
153 X::sp = X::special(); in main()
167 X::sp = X::special(); in main()
182 X::sp = X::special(); in main()
196 X::sp = X::special(); in main()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/titanic/
H A Dinput_translator.cpp36 int CInputTranslator::getButtons(int special) const { in getButtons()
38 if (special & MK_LBUTTON) in getButtons()
40 if (special & MK_MBUTTON) in getButtons()
42 if (special & MK_RBUTTON) in getButtons()
48 void CInputTranslator::mouseMove(int special, const Point &pt) { in mouseMove() argument
49 CMouseMoveMsg msg(pt, getButtons(special)); in mouseMove()
53 void CInputTranslator::leftButtonDown(int special, const Point &pt) { in leftButtonDown() argument
58 void CInputTranslator::leftButtonUp(int special, const Point &pt) { in leftButtonUp() argument
63 void CInputTranslator::leftButtonDoubleClick(int special, const Point &pt) { in leftButtonDoubleClick() argument
68 void CInputTranslator::middleButtonDown(int special, const Point &pt) { in middleButtonDown() argument
[all …]
H A Dinput_translator.h38 int getButtons(int special) const;
50 void mouseMove(int special, const Point &pt);
51 void leftButtonDown(int special, const Point &pt);
52 void leftButtonUp(int special, const Point &pt);
53 void leftButtonDoubleClick(int special, const Point &pt);
54 void middleButtonDown(int special, const Point &pt);
55 void middleButtonUp(int special, const Point &pt);
56 void middleButtonDoubleClick(int special, const Point &pt);
/dports/games/scummvm/scummvm-2.5.1/engines/titanic/
H A Dinput_translator.cpp36 int CInputTranslator::getButtons(int special) const { in getButtons()
38 if (special & MK_LBUTTON) in getButtons()
40 if (special & MK_MBUTTON) in getButtons()
42 if (special & MK_RBUTTON) in getButtons()
48 void CInputTranslator::mouseMove(int special, const Point &pt) { in mouseMove() argument
49 CMouseMoveMsg msg(pt, getButtons(special)); in mouseMove()
53 void CInputTranslator::leftButtonDown(int special, const Point &pt) { in leftButtonDown() argument
58 void CInputTranslator::leftButtonUp(int special, const Point &pt) { in leftButtonUp() argument
63 void CInputTranslator::leftButtonDoubleClick(int special, const Point &pt) { in leftButtonDoubleClick() argument
68 void CInputTranslator::middleButtonDown(int special, const Point &pt) { in middleButtonDown() argument
[all …]
H A Dinput_translator.h38 int getButtons(int special) const;
50 void mouseMove(int special, const Point &pt);
51 void leftButtonDown(int special, const Point &pt);
52 void leftButtonUp(int special, const Point &pt);
53 void leftButtonDoubleClick(int special, const Point &pt);
54 void middleButtonDown(int special, const Point &pt);
55 void middleButtonUp(int special, const Point &pt);
56 void middleButtonDoubleClick(int special, const Point &pt);
/dports/math/py-algopy/algopy-0.5.7/algopy/special/
H A Dspecial.py5 import scipy.special
59 hyp1f1.__doc__ += scipy.special.hyp1f1.__doc__
85 hyperu.__doc__ += scipy.special.hyperu.__doc__
244 psi.__doc__ += scipy.special.psi.__doc__
296 erf.__doc__ += scipy.special.erf.__doc__
350 return scipy.special.dawsn(x)
352 dawsn.__doc__ += scipy.special.dawsn.__doc__
376 return scipy.special.logit(x)
378 logit.__doc__ += scipy.special.logit.__doc__
402 return scipy.special.expit(x)
[all …]
/dports/devel/log4cxx/apache-log4cxx-0.11.0/src/main/cpp/
H A Dtransform.cpp39 size_t special = input.find_first_of(specials, start); in appendEscapingTags() local
41 while (special != LogString::npos) in appendEscapingTags()
43 if (special > start) in appendEscapingTags()
45 buf.append(input, start, special - start); in appendEscapingTags()
48 switch (input[special]) in appendEscapingTags()
67 buf.append(1, input[special]); in appendEscapingTags()
71 start = special + 1; in appendEscapingTags()
73 if (special < input.size()) in appendEscapingTags()
75 special = input.find_first_of(specials, start); in appendEscapingTags()
79 special = LogString::npos; in appendEscapingTags()
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/classes/Elgg/Security/
H A DPasswordGeneratorService.php124 $special = $this->config->min_password_special;
153 if (!Values::isEmpty($special)) {
159 $special = (int) $special;
160 if ($special < 1) {
217 $special = $this->config->min_password_special;
218 if (!Values::isEmpty($special)) {
219 $special = (int) $special;
220 if ($special > 0) {
324 if (!Values::isEmpty($special)) {
325 $special = (int) $special;
[all …]
/dports/www/phalcon4/cphalcon-4.1.1/ext/phalcon/
H A Dversion.zep.c175 zend_long special, ZEPHIR_LAST_CALL_STATUS; in PHP_METHOD() local
183 special = zephir_get_intval(special_param); in PHP_METHOD()
186 ZVAL_LONG(&_1, special); in PHP_METHOD()
201 zend_long special; in PHP_METHOD() local
215 if (special == 1) { in PHP_METHOD()
220 if (special == 2) { in PHP_METHOD()
225 if (special == 3) { in PHP_METHOD()
256 ZVAL_UNDEF(&special); in PHP_METHOD()
274 ZEPHIR_OBS_VAR(&special); in PHP_METHOD()
315 ZVAL_UNDEF(&special); in PHP_METHOD()
[all …]
/dports/lang/maude/maude-2.7.1/tests/BuiltIn/
H A Drat.expected174 0 gather (& & &) special (
179 special (
184 special (
188 op true : -> Bool [ctor special (
190 op false : -> Bool [ctor special (
225 op sd : Nat Nat -> Nat [comm special (
319 op gcd : Nat Nat -> Nat [assoc comm special (
597 op abs : NzInt -> NzNat [special (
601 op abs : Int -> Nat [special (
605 op abs : NzRat -> PosRat [special (
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/gui-lib/mred/private/wx/common/
H A Ddefault-procs.rkt4 (provide special-control-key
5 special-option-key
11 (define special-control-key? #f)
12 (define special-control-key
14 [() special-control-key?]
15 [(on?) (set! special-control-key? (and on? #t))]))
17 (define special-option-key? #f)
18 (define special-option-key
20 [() special-option-key?]
21 [(on?) (set! special-option-key? (and on? #t))]))
/dports/math/py-chaospy/chaospy-4.3.3/chaospy/distributions/collection/
H A Dstudent_t.py3 from scipy import special
16 return special.gamma(.5*a+.5)*(1+x*x/a)**(-.5*a-.5) /\
17 (numpy.sqrt(a*numpy.pi)*special.gamma(.5*a))
20 return special.stdtr(a, x)
23 return special.stdtrit(a, numpy.clip(q, 1e-16, 1-1e-16))
28 out = special.gamma(.5*k+.5)* \
29 special.gamma(.5*a-.5*k)*a**(.5*k)
30 return numpy.where(k%2==0, out/(numpy.pi**.5*special.gamma(.5*a)), 0)
36 return special.stdtrit(a, 1e-16)*10
39 return special.stdtrit(a, 1-1e-16)*10
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/tests/data/pubkey/
H A Decdsa_wycheproof.vec434 # Test 142 (Signature with special case values for r and s)
437 # Test 143 (Signature with special case values for r and s)
440 # Test 144 (Signature with special case values for r and s)
443 # Test 145 (Signature with special case values for r and s)
446 # Test 146 (Signature with special case values for r and s)
449 # Test 147 (Signature with special case values for r and s)
452 # Test 148 (Signature with special case values for r and s)
455 # Test 149 (Signature with special case values for r and s)
458 # Test 150 (Signature with special case values for r and s)
461 # Test 151 (Signature with special case values for r and s)
[all …]
/dports/security/botan2/Botan-2.18.2/src/tests/data/pubkey/
H A Decdsa_wycheproof.vec434 # Test 142 (Signature with special case values for r and s)
437 # Test 143 (Signature with special case values for r and s)
440 # Test 144 (Signature with special case values for r and s)
443 # Test 145 (Signature with special case values for r and s)
446 # Test 146 (Signature with special case values for r and s)
449 # Test 147 (Signature with special case values for r and s)
452 # Test 148 (Signature with special case values for r and s)
455 # Test 149 (Signature with special case values for r and s)
458 # Test 150 (Signature with special case values for r and s)
461 # Test 151 (Signature with special case values for r and s)
[all …]
/dports/audio/sphinx3/sphinx3-0.8/doc/s3-2_files/
H A Dmaster03_stylesheet.css12 {mso-special-format:bullet�;
24 {mso-special-format:bullet�;
37 {mso-special-format:bullet�;
52 {mso-special-format:bulletu;
62 {mso-special-format:bullet�;
142 {mso-special-format:bullet�;
151 {mso-special-format:bullet�;
161 {mso-special-format:bullet�;
173 {mso-special-format:bulletu;
183 {mso-special-format:bullet�;
[all …]
/dports/math/p5-Math-Symbolic/Math-Symbolic-0.612/lib/Math/Symbolic/
H A DConstant.pm66 special => '',
89 bless {@_, value => 0, special => 'zero' } => $class
109 bless {@_, value => 1, special => 'one' } => $class
130 bless {@_, value => EULER, special => 'euler' } => $class
151 bless {@_, value => PI, special => 'pi' } => $class
190 $self->{special} = undef; # !!!FIXME!!! one day, this
246 sub special { subroutine
248 $self->{special} = shift if @_;
249 return $self->{special};
/dports/graphics/py-pyproj/pyproj-3.2.1/docs/api/crs/
H A Dcrs.rst12 :special-members: __init__
21 :special-members: __init__
30 :special-members: __init__
39 :special-members: __init__
48 :special-members: __init__
57 :special-members: __init__
66 :special-members: __init__
74 :special-members: __init__
83 :special-members: __init__
/dports/lang/gcc8/gcc-8.5.0/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc22 struct special struct in X
31 static special sp;
97 X::special X::sp{};
100 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
116 X::special ins, emp; in test01()
154 X::special ins, emp; in test02()
192 X::special ins, emp; in test03()
228 X::special ins, emp; in test04()
266 X::special ins, emp; in test05()
304 X::special ins, emp; in test06()
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc22 struct special struct in X
31 static special sp;
97 X::special X::sp{};
100 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
116 X::special ins, emp; in test01()
154 X::special ins, emp; in test02()
192 X::special ins, emp; in test03()
228 X::special ins, emp; in test04()
266 X::special ins, emp; in test05()
304 X::special ins, emp; in test06()
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc22 struct special struct in X
31 static special sp;
97 X::special X::sp{};
100 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
116 X::special ins, emp; in test01()
154 X::special ins, emp; in test02()
192 X::special ins, emp; in test03()
228 X::special ins, emp; in test04()
266 X::special ins, emp; in test05()
304 X::special ins, emp; in test06()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc21 struct special struct in X
30 static special sp;
96 X::special X::sp{};
99 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
115 X::special ins, emp; in test01()
153 X::special ins, emp; in test02()
191 X::special ins, emp; in test03()
227 X::special ins, emp; in test04()
265 X::special ins, emp; in test05()
303 X::special ins, emp; in test06()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc21 struct special struct in X
30 static special sp;
96 X::special X::sp{};
99 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
115 X::special ins, emp; in test01()
153 X::special ins, emp; in test02()
191 X::special ins, emp; in test03()
227 X::special ins, emp; in test04()
265 X::special ins, emp; in test05()
303 X::special ins, emp; in test06()
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/23_containers/vector/modifiers/
H A Dinsert_vs_emplace.cc21 struct special struct in X
30 static special sp;
96 X::special X::sp{};
99 operator==(const X::special& lhs, const X::special& rhs) in operator ==()
115 X::special ins, emp; in test01()
153 X::special ins, emp; in test02()
191 X::special ins, emp; in test03()
227 X::special ins, emp; in test04()
265 X::special ins, emp; in test05()
303 X::special ins, emp; in test06()
[all …]

12345678910>>...2411