Home
last modified time | relevance | path

Searched refs:decay (Results 1 – 25 of 5430) sorted by relevance

12345678910>>...218

/dports/devel/boost-python-libs/boost_1_72_0/libs/type_traits/test/
H A Ddecay_test.cpp65 BOOST_DECL_TRANSFORM_TEST3(decay_test_1, ::tt::decay, const)
68 BOOST_DECL_TRANSFORM_TEST3(decay_test_4, ::tt::decay, const&)
72 BOOST_DECL_TRANSFORM_TEST(decay_test_8, ::tt::decay, [], *)
73 BOOST_DECL_TRANSFORM_TEST(decay_test_9, ::tt::decay, [2], *)
81 TT_TEST_BEGIN(decay)
99 ::tt::decay<int>::type,int>::value),
102 ::tt::decay<char[2]>::type,char*>::value),
105 ::tt::decay<char[2][3]>::type,char(*)[3]>::value),
111 ::tt::decay<wchar_t[2]>::type,wchar_t*>::value),
124 ::tt::decay<f1_type>::type,int (*)(void)>::value),
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/type_traits/test/
H A Ddecay_test.cpp65 BOOST_DECL_TRANSFORM_TEST3(decay_test_1, ::tt::decay, const)
68 BOOST_DECL_TRANSFORM_TEST3(decay_test_4, ::tt::decay, const&)
72 BOOST_DECL_TRANSFORM_TEST(decay_test_8, ::tt::decay, [], *)
73 BOOST_DECL_TRANSFORM_TEST(decay_test_9, ::tt::decay, [2], *)
81 TT_TEST_BEGIN(decay)
99 ::tt::decay<int>::type,int>::value),
102 ::tt::decay<char[2]>::type,char*>::value),
105 ::tt::decay<char[2][3]>::type,char(*)[3]>::value),
111 ::tt::decay<wchar_t[2]>::type,wchar_t*>::value),
124 ::tt::decay<f1_type>::type,int (*)(void)>::value),
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/type_traits/test/
H A Ddecay_test.cpp65 BOOST_DECL_TRANSFORM_TEST3(decay_test_1, ::tt::decay, const)
68 BOOST_DECL_TRANSFORM_TEST3(decay_test_4, ::tt::decay, const&)
72 BOOST_DECL_TRANSFORM_TEST(decay_test_8, ::tt::decay, [], *)
73 BOOST_DECL_TRANSFORM_TEST(decay_test_9, ::tt::decay, [2], *)
81 TT_TEST_BEGIN(decay)
99 ::tt::decay<int>::type,int>::value),
102 ::tt::decay<char[2]>::type,char*>::value),
105 ::tt::decay<char[2][3]>::type,char(*)[3]>::value),
111 ::tt::decay<wchar_t[2]>::type,wchar_t*>::value),
124 ::tt::decay<f1_type>::type,int (*)(void)>::value),
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/type_traits/test/
H A Ddecay_test.cpp65 BOOST_DECL_TRANSFORM_TEST3(decay_test_1, ::tt::decay, const)
68 BOOST_DECL_TRANSFORM_TEST3(decay_test_4, ::tt::decay, const&)
72 BOOST_DECL_TRANSFORM_TEST(decay_test_8, ::tt::decay, [], *)
73 BOOST_DECL_TRANSFORM_TEST(decay_test_9, ::tt::decay, [2], *)
81 TT_TEST_BEGIN(decay)
99 ::tt::decay<int>::type,int>::value),
102 ::tt::decay<char[2]>::type,char*>::value),
105 ::tt::decay<char[2][3]>::type,char(*)[3]>::value),
111 ::tt::decay<wchar_t[2]>::type,wchar_t*>::value),
124 ::tt::decay<f1_type>::type,int (*)(void)>::value),
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/sndhrdw/
H A Dgeebee.c14 static UINT16 *decay = NULL; variable
89 sound_signal = (vcount & 0x04) ? decay[volume] : 0; in geebee_sound_update()
92 sound_signal = (vcount & 0x08) ? decay[volume] : 0; in geebee_sound_update()
95 sound_signal = (vcount & 0x10) ? decay[volume] : 0; in geebee_sound_update()
98 sound_signal = (vcount & 0x20) ? decay[volume] : 0; in geebee_sound_update()
121 decay = (UINT16 *)malloc(32768 * sizeof(INT16)); in geebee_sh_start()
122 if( !decay ) in geebee_sh_start()
126 decay[0x7fff-i] = (INT16) (0x7fff/exp(1.0*i/4096)); in geebee_sh_start()
137 if( decay ) in geebee_sh_stop()
138 free(decay); in geebee_sh_stop()
[all …]
H A Dwarpwarp.c16 static INT16 *decay = NULL; variable
156 music_signal = decay[music_volume]; in warpwarp_sound_update()
179 sound_signal = (vcount & 0x04) ? decay[sound_volume] : 0; in warpwarp_sound_update()
182 sound_signal = (vcount & 0x08) ? decay[sound_volume] : 0; in warpwarp_sound_update()
185 sound_signal = (vcount & 0x10) ? decay[sound_volume] : 0; in warpwarp_sound_update()
212 decay = (INT16 *) malloc(32768 * sizeof(INT16)); in warpwarp_sh_start()
213 if( !decay ) in warpwarp_sh_start()
217 decay[0x7fff-i] = (INT16) (0x7fff/exp(1.0*i/4096)); in warpwarp_sh_start()
225 if( decay ) in warpwarp_sh_stop()
226 free(decay); in warpwarp_sh_stop()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/fiber/future/
H A Dasync.hpp39 typename std::decay< Fn >::type
40 >::type( typename std::decay< Args >::type ... )
45 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
60 typename std::decay< Fn >::type
61 >::type( typename std::decay< Args >::type ...)
66 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
81 typename std::decay< Fn >::type
82 >::type( typename std::decay< Args >::type ... )
87 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
103 typename std::decay< Fn >::type
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/fiber/future/
H A Dasync.hpp39 typename std::decay< Fn >::type
40 >::type( typename std::decay< Args >::type ... )
45 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
60 typename std::decay< Fn >::type
61 >::type( typename std::decay< Args >::type ...)
66 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
81 typename std::decay< Fn >::type
82 >::type( typename std::decay< Args >::type ... )
87 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
103 typename std::decay< Fn >::type
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/fiber/future/
H A Dasync.hpp39 typename std::decay< Fn >::type
40 >::type( typename std::decay< Args >::type ... )
45 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
60 typename std::decay< Fn >::type
61 >::type( typename std::decay< Args >::type ...)
66 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
81 typename std::decay< Fn >::type
82 >::type( typename std::decay< Args >::type ... )
87 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
103 typename std::decay< Fn >::type
[all …]
/dports/devel/boost-libs/boost_1_72_0/boost/fiber/future/
H A Dasync.hpp29 typename std::decay< Fn >::type
30 >::type( typename std::decay< Args >::type ... )
35 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
50 typename std::decay< Fn >::type
51 >::type( typename std::decay< Args >::type ...)
56 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
71 typename std::decay< Fn >::type
72 >::type( typename std::decay< Args >::type ... )
77 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
93 typename std::decay< Fn >::type
[all …]
/dports/devel/boost-docs/boost_1_72_0/boost/fiber/future/
H A Dasync.hpp29 typename std::decay< Fn >::type
30 >::type( typename std::decay< Args >::type ... )
35 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
50 typename std::decay< Fn >::type
51 >::type( typename std::decay< Args >::type ...)
56 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
71 typename std::decay< Fn >::type
72 >::type( typename std::decay< Args >::type ... )
77 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
93 typename std::decay< Fn >::type
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/fiber/future/
H A Dasync.hpp29 typename std::decay< Fn >::type
30 >::type( typename std::decay< Args >::type ... )
35 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
50 typename std::decay< Fn >::type
51 >::type( typename std::decay< Args >::type ...)
56 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
71 typename std::decay< Fn >::type
72 >::type( typename std::decay< Args >::type ... )
77 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
93 typename std::decay< Fn >::type
[all …]
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/fiber/future/
H A Dasync.hpp29 typename std::decay< Fn >::type
30 >::type( typename std::decay< Args >::type ... )
35 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
50 typename std::decay< Fn >::type
51 >::type( typename std::decay< Args >::type ...)
56 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
71 typename std::decay< Fn >::type
72 >::type( typename std::decay< Args >::type ... )
77 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
93 typename std::decay< Fn >::type
[all …]
/dports/games/augustus/augustus-3.1.0/src/building/
H A Dhouse_service.c7 static void decay(unsigned char *value) in decay() function
23 decay(&b->data.house.theater); in house_service_decay_culture()
28 decay(&b->house_arena_gladiator); in house_service_decay_culture()
29 decay(&b->house_arena_lion); in house_service_decay_culture()
33 decay(&b->data.house.school); in house_service_decay_culture()
34 decay(&b->data.house.library); in house_service_decay_culture()
35 decay(&b->data.house.academy); in house_service_decay_culture()
36 decay(&b->data.house.barber); in house_service_decay_culture()
37 decay(&b->data.house.clinic); in house_service_decay_culture()
38 decay(&b->data.house.bathhouse); in house_service_decay_culture()
[all …]
/dports/devel/godot/godot-3.2.3-stable/thirdparty/opus/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/opus/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/audio/jamulus/jamulus-r3_8_1/libs/opus/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/opus/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/opus/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/opus/src/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/audio/opus/opus-1.3.1/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/audio/mumble/mumble-1.3.3/3rdparty/celt-0.11.0-src/tests/
H A Dlaplace-test.c18 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
21 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
32 int val[10000], decay[10000]; in main() local
37 val[0] = 3; decay[0] = 6000; in main()
38 val[1] = 0; decay[1] = 5800; in main()
39 val[2] = -1; decay[2] = 5600; in main()
43 decay[i] = rand()%11000+5000; in main()
47 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
56 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/opus-1.0.3/celt/tests/
H A Dtest_unit_laplace.c45 int ec_laplace_get_start_freq(int decay) in ec_laplace_get_start_freq() argument
48 int fs = (ft*(16384-decay))/(16384+decay); in ec_laplace_get_start_freq()
59 int val[10000], decay[10000]; in main() local
64 val[0] = 3; decay[0] = 6000; in main()
65 val[1] = 0; decay[1] = 5800; in main()
66 val[2] = -1; decay[2] = 5600; in main()
70 decay[i] = rand()%11000+5000; in main()
74 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
83 ec_laplace_get_start_freq(decay[i]), decay[i]); in main()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/fiber/future/
H A Dasync.hpp28 ! detail::is_launch_policy< typename std::decay< Fn >::type >::value,
29 typename std::decay< Fn >::type
30 >::type( typename std::decay< Args >::type ... )
35 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
38 packaged_task< result_t( typename std::decay< Args >::type ... ) > pt{ in async()
50 typename std::decay< Fn >::type
51 >::type( typename std::decay< Args >::type ...)
56 typename std::decay< Fn >::type( typename std::decay< Args >::type ... ) in async()
71 typename std::decay< Fn >::type
72 >::type( typename std::decay< Args >::type ... )
[all …]
/dports/games/julius/julius-1.7.0/src/building/
H A Dhouse_service.c6 static void decay(unsigned char *value) in decay() function
22 decay(&b->data.house.theater); in house_service_decay_culture()
27 decay(&b->data.house.hippodrome); in house_service_decay_culture()
28 decay(&b->data.house.school); in house_service_decay_culture()
29 decay(&b->data.house.library); in house_service_decay_culture()
30 decay(&b->data.house.academy); in house_service_decay_culture()
31 decay(&b->data.house.barber); in house_service_decay_culture()
32 decay(&b->data.house.clinic); in house_service_decay_culture()
33 decay(&b->data.house.bathhouse); in house_service_decay_culture()
34 decay(&b->data.house.hospital); in house_service_decay_culture()
[all …]

12345678910>>...218