Home
last modified time | relevance | path

Searched refs:TABLE_SIZE (Results 176 – 200 of 912) sorted by relevance

12345678910>>...37

/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/portaudio_sc_org/test/
H A Dpatest_wmme_low_level_latency_params.c60 #define TABLE_SIZE (2048) macro
67 float sine[TABLE_SIZE];
94 if( data->phase >= TABLE_SIZE ){ in patestCallback()
95 data->phase -= TABLE_SIZE; in patestCallback()
130 for( i=0; i<TABLE_SIZE; i++ ) in main()
132 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
H A Dpatest_dsound_surround.c56 #define TABLE_SIZE (100)
64 float sine[TABLE_SIZE];
95 if( data->phase >= TABLE_SIZE ){
96 data->phase -= TABLE_SIZE;
140 for( i=0; i<TABLE_SIZE; i++ )
142 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. );
H A Dpatest_latency.c58 #define TABLE_SIZE (400) macro
62 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
75 float fIndex = phase*TABLE_SIZE; in LookupSine()
125 for( i=0; i<TABLE_SIZE; i++ ) in main()
127 data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
129 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point. */ in main()
H A Dpatest_stop_playout.c63 #define TABLE_SIZE (2048) macro
66 float sine[TABLE_SIZE+1];
101 for( i=0; i<TABLE_SIZE; i++ ) in InitTestSignalGenerator()
103 data->sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in InitTestSignalGenerator()
105 data->sine[TABLE_SIZE] = data->sine[0]; /* guard point for linear interpolation */ in InitTestSignalGenerator()
109 data->lowIncrement = (330. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
110 data->highIncrement = (1760. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
161 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
162 data->phase -= TABLE_SIZE; in GenerateTestSignal()
210 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
[all …]
/dports/math/ogdf/OGDF/src/ogdf/basic/memory/
H A DPoolMemoryAllocator.cpp50 PoolMemoryAllocator::PoolElement PoolMemoryAllocator::s_pool[TABLE_SIZE];
59 PoolMemoryAllocator::MemElemPtr PoolMemoryAllocator::s_tp[TABLE_SIZE];
62 thread_local PoolMemoryAllocator::MemElemPtr PoolMemoryAllocator::s_tp[TABLE_SIZE];
109 if(OGDF_LIKELY(nBytes < TABLE_SIZE)) { in deallocateList()
128 for(uint16_t nBytes = 1; nBytes < TABLE_SIZE; ++nBytes) { in flushPool()
242 for (size_t sz = 1; sz < TABLE_SIZE; ++sz) in unguardedMemGlobalFreelist()
265 for (size_t sz = 1; sz < TABLE_SIZE; ++sz) in memoryInThreadFreeList()
281 for(size_t sz = 1; sz < TABLE_SIZE; ++sz) { in defrag()
289 for(size_t sz = 1; sz < TABLE_SIZE; ++sz) in defrag()
/dports/emulators/mess/mame-mame0226/3rdparty/portaudio/examples/
H A Dpaex_wmme_surround.c61 #define TABLE_SIZE (100) macro
69 float sine[TABLE_SIZE];
100 if( data->phase >= TABLE_SIZE ){ in patestCallback()
101 data->phase -= TABLE_SIZE; in patestCallback()
145 for( i=0; i<TABLE_SIZE; i++ ) in main()
147 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
/dports/emulators/mess/mame-mame0226/3rdparty/portaudio/test/
H A Dpatest_dsound_surround.c56 #define TABLE_SIZE (100) macro
64 float sine[TABLE_SIZE];
95 if( data->phase >= TABLE_SIZE ){ in patestCallback()
96 data->phase -= TABLE_SIZE; in patestCallback()
140 for( i=0; i<TABLE_SIZE; i++ ) in main()
142 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
H A Dpatest_latency.c58 #define TABLE_SIZE (400) macro
62 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
75 float fIndex = phase*TABLE_SIZE; in LookupSine()
125 for( i=0; i<TABLE_SIZE; i++ ) in main()
127 data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
129 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point. */ in main()
H A Dpatest_stop_playout.c63 #define TABLE_SIZE (2048) macro
66 float sine[TABLE_SIZE+1];
101 for( i=0; i<TABLE_SIZE; i++ ) in InitTestSignalGenerator()
103 data->sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in InitTestSignalGenerator()
105 data->sine[TABLE_SIZE] = data->sine[0]; /* guard point for linear interpolation */ in InitTestSignalGenerator()
109 data->lowIncrement = (330. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
110 data->highIncrement = (1760. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
161 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
162 data->phase -= TABLE_SIZE; in GenerateTestSignal()
210 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
[all …]
H A Dpatest_callbackstop.c57 #define TABLE_SIZE (200) macro
60 float sine[TABLE_SIZE];
98 if( data->phase >= TABLE_SIZE ) in TestCallback()
99 data->phase -= TABLE_SIZE; in TestCallback()
142 for( i=0; i<TABLE_SIZE; i++ ) in main()
144 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
/dports/games/flightgear/flightgear-2020.3.11/3rdparty/iaxclient/lib/portaudio/test/
H A Dpatest_latency.c51 #define TABLE_SIZE (400) macro
55 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
68 float fIndex = phase*TABLE_SIZE; in LookupSine()
118 for( i=0; i<TABLE_SIZE; i++ ) in main()
120 data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
122 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point. */ in main()
H A Dpatest_maxsines.c55 #define TABLE_SIZE (512) macro
60 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
71 float fIndex = phase*TABLE_SIZE; in LookupSine()
146 for( i=0; i<TABLE_SIZE; i++ ) in main()
148 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
150 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point */ in main()
/dports/games/xpilot-ng-server/xpilot-ng-4.7.3/src/common/
H A Dconst.h70 #define TABLE_SIZE RES macro
77 # define tsin(x) (tbl_sin[MOD2(x, TABLE_SIZE)])
78 # define tcos(x) (tbl_sin[MOD2((x)+TABLE_SIZE/4, TABLE_SIZE)])
88 # define tsin(x) (tbl_sin[CHK2(x, TABLE_SIZE)])
89 # define tcos(x) (tbl_cos[CHK2(x, TABLE_SIZE)])
/dports/games/xpilot/xpilot-4.5.5/src/common/
H A Dconst.h74 #define TABLE_SIZE RES macro
81 # define tsin(x) (tbl_sin[MOD2(x, TABLE_SIZE)])
82 # define tcos(x) (tbl_sin[MOD2((x)+TABLE_SIZE/4, TABLE_SIZE)])
92 # define tsin(x) (tbl_sin[CHK2(x, TABLE_SIZE)])
93 # define tcos(x) (tbl_cos[CHK2(x, TABLE_SIZE)])
/dports/emulators/mame/mame-mame0226/3rdparty/portaudio/examples/
H A Dpaex_wmme_surround.c61 #define TABLE_SIZE (100) macro
69 float sine[TABLE_SIZE];
100 if( data->phase >= TABLE_SIZE ){ in patestCallback()
101 data->phase -= TABLE_SIZE; in patestCallback()
145 for( i=0; i<TABLE_SIZE; i++ ) in main()
147 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
/dports/emulators/mame/mame-mame0226/3rdparty/portaudio/test/
H A Dpatest_dsound_surround.c56 #define TABLE_SIZE (100) macro
64 float sine[TABLE_SIZE];
95 if( data->phase >= TABLE_SIZE ){ in patestCallback()
96 data->phase -= TABLE_SIZE; in patestCallback()
140 for( i=0; i<TABLE_SIZE; i++ ) in main()
142 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
H A Dpatest_latency.c58 #define TABLE_SIZE (400) macro
62 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
75 float fIndex = phase*TABLE_SIZE; in LookupSine()
125 for( i=0; i<TABLE_SIZE; i++ ) in main()
127 data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
129 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point. */ in main()
H A Dpatest_stop_playout.c63 #define TABLE_SIZE (2048) macro
66 float sine[TABLE_SIZE+1];
101 for( i=0; i<TABLE_SIZE; i++ ) in InitTestSignalGenerator()
103 data->sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in InitTestSignalGenerator()
105 data->sine[TABLE_SIZE] = data->sine[0]; /* guard point for linear interpolation */ in InitTestSignalGenerator()
109 data->lowIncrement = (330. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
110 data->highIncrement = (1760. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
161 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
162 data->phase -= TABLE_SIZE; in GenerateTestSignal()
210 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
[all …]
/dports/audio/portaudio/portaudio/examples/
H A Dpaex_wmme_surround.c61 #define TABLE_SIZE (100)
69 float sine[TABLE_SIZE];
100 if( data->phase >= TABLE_SIZE ){
101 data->phase -= TABLE_SIZE;
145 for( i=0; i<TABLE_SIZE; i++ )
147 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. );
/dports/audio/portaudio/portaudio/test/
H A Dpatest_dsound_surround.c56 #define TABLE_SIZE (100) macro
64 float sine[TABLE_SIZE];
95 if( data->phase >= TABLE_SIZE ){ in patestCallback()
96 data->phase -= TABLE_SIZE; in patestCallback()
140 for( i=0; i<TABLE_SIZE; i++ ) in main()
142 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
H A Dpatest_latency.c58 #define TABLE_SIZE (400)
62 float sine[TABLE_SIZE + 1]; /* add one for guard point for interpolation */
75 float fIndex = phase*TABLE_SIZE;
125 for( i=0; i<TABLE_SIZE; i++ )
127 data.sine[i] = 0.90f * (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. );
129 data.sine[TABLE_SIZE] = data.sine[0]; /* set guard point. */
H A Dpatest_stop_playout.c63 #define TABLE_SIZE (2048) macro
66 float sine[TABLE_SIZE+1];
101 for( i=0; i<TABLE_SIZE; i++ ) in InitTestSignalGenerator()
103 data->sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in InitTestSignalGenerator()
105 data->sine[TABLE_SIZE] = data->sine[0]; /* guard point for linear interpolation */ in InitTestSignalGenerator()
109 data->lowIncrement = (330. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
110 data->highIncrement = (1760. / SAMPLE_RATE) * TABLE_SIZE; in InitTestSignalGenerator()
161 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
162 data->phase -= TABLE_SIZE; in GenerateTestSignal()
210 while( data->phase >= TABLE_SIZE ) in GenerateTestSignal()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/portaudio_sc_org/examples/
H A Dpaex_wmme_surround.c61 #define TABLE_SIZE (100) macro
69 float sine[TABLE_SIZE];
100 if( data->phase >= TABLE_SIZE ){ in patestCallback()
101 data->phase -= TABLE_SIZE; in patestCallback()
145 for( i=0; i<TABLE_SIZE; i++ ) in main()
147 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. ); in main()
/dports/emulators/cemu/CEmu-1.3/gui/qt/capture/
H A Danimated-png.c128 hash = pixel % TABLE_SIZE; in apng_save()
143 if (hash >= TABLE_SIZE) { in apng_save()
144 hash -= TABLE_SIZE; in apng_save()
147 if (probe >= TABLE_SIZE) { in apng_save()
148 probe -= TABLE_SIZE; in apng_save()
172 for (i = 0; i != TABLE_SIZE; i++) { in apng_save()
226 hash = *cur % TABLE_SIZE; in apng_save()
235 if (hash >= TABLE_SIZE) { in apng_save()
236 hash -= TABLE_SIZE; in apng_save()
239 if (probe >= TABLE_SIZE) { in apng_save()
[all …]
/dports/cad/alliance/alliance/src/bdd/src/
H A Dbddhnode.c154 ((unsigned long)BddNode->LOW << 1 ) ) % Table->TABLE_SIZE );
172 ((unsigned long)BddNode->LOW << 1 ) ) % Table->TABLE_SIZE );
229 HashTable->TABLE_SIZE = Length;
271 (size_t)HashTable->TABLE_SIZE * sizeof( bddhnode ) );
302 Length = HashTable->TABLE_SIZE;
315 HashTable->TABLE_SIZE = NewLength;
348 Length = HashTable->TABLE_SIZE;
354 HashTable->TABLE_SIZE = NewLength;
559 fprintf( stdout, " SIZE : %ld\n", HashTable->TABLE_SIZE );
568 for ( HashIndex = 0; HashIndex < HashTable->TABLE_SIZE; HashIndex++ )

12345678910>>...37