Home
last modified time | relevance | path

Searched refs:premix (Results 1 – 25 of 136) sorted by relevance

123456

/dports/games/xkoules/koules1.4/
H A Dkoules.sndsrv.sun.c167 int premix[512]; in do_everything() local
219 bzero (premix, sizeof (premix)); in do_everything()
225 premix[j] += *(sample + j); in do_everything()
230 final[i] = (premix[i] > 255) ? 255 : (premix[i] < -256 ? 0 : (premix[i] >> 1) + 128); in do_everything()
H A Dkoules.sndsrv.linux.c191 int premix[512]; in do_everything() local
245 memset (premix, 0, sizeof (premix)); in do_everything()
251 premix[j] += *(sample + j); in do_everything()
256 final[i] = (premix[i] > 255) ? 255 : (premix[i] < -256 ? 0 : (premix[i] >> 1) + 128); in do_everything()
H A Dkoules.sndsrv.freebsd.c202 int premix[512]; in do_everything() local
254 memset (premix, 0, sizeof (premix)); in do_everything()
260 premix[j] += *(sample + j); in do_everything()
265 final[i] = (premix[i] > 255) ? 255 : (premix[i] < -256 ? 0 : (premix[i] >> 1) + 128); in do_everything()
H A Dkoules.sndsrv.sgi.c168 int premix[512]; in do_everything() local
221 bzero(premix, sizeof(premix)); in do_everything()
225 premix[j] += *(sample + j); in do_everything()
231 final[i] = (premix[i] > 127) ? 127 : (premix[i] < -128 ? -128 : premix[i]); in do_everything()
H A Dsoundos2.c125 int premix[fragsize];
241 memset (premix, 0, sizeof (premix));
250 premix[j] += *(sample + j);
261 final[i + finalBuf * fragsize] = (premix[i] > 255) ? 255 :
262 (premix[i] < -256 ? 0 : (premix[i] >> 1) + 128);
/dports/games/xgalaga/xgalaga-2.1.1.0/
H A Dxgal.sndsrv.sun.c156 int premix[512]; in do_everything() local
198 bzero(premix,sizeof(premix)); in do_everything()
202 premix[j]+=*(sample+j); in do_everything()
207 final[i]=(premix[i]>255)?255:(premix[i]<-256?0:(premix[i]>>1)+128); in do_everything()
H A Dxgal.sndsrv.linux.c191 int premix[fragsize]; /* Use fragsize in case sound card sets it big. -- JEH */ in do_everything() local
233 memset(premix,0,sizeof(premix)); in do_everything()
237 premix[j]+=*(sample+j); in do_everything()
242 final[i]=(premix[i]>255)?255:(premix[i]<-256?0:(premix[i]>>1)+128); in do_everything()
H A Dxgal.sndsrv.freebsd.c187 int premix[512]; in do_everything() local
235 memset(premix,0,sizeof(premix)); in do_everything()
239 premix[j]+=*(sample+j); in do_everything()
244 final[i]=(premix[i]>255)?255:(premix[i]<-256?0:(premix[i]>>1)+128); in do_everything()
/dports/audio/deadbeef/deadbeef-0.7.2/
H A DMakefile.am25 premix.c premix.h\
H A DMakefile.in82 streamer.$(OBJEXT) premix.$(OBJEXT) messagepump.$(OBJEXT) \
485 premix.c premix.h\
652 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/premix.Po@am__quote@
/dports/science/code_saturne/code_saturne-7.1.0/docs/theory/
H A Dcombustion_intro.tex47 (diffusion, premix, partial premix), and with solid or liquid finely dispersed
85 Combustion of gas is, traditionnaly, splitted in premix and diffusion regimes.
111 partial premix regime. Partial premix occurs if mixing is not finished ( at
114 specifically for lean premix gas turbines \cite{Libby:2000a} developed a model allowing a
H A Dcombustion_gas.tex27 Flames with gaseous fuels can be categorized in premix, diffusion or
28 partial-premix.
233 \subsection{Partial premix: Libby Williams models}
241 production using (sometimes very) lean premix. By this way, the combustion
/dports/audio/wildmidi/wildmidi-wildmidi-0.4.2/src/
H A Dwildmidi_lib.c826 int32_t premix, left_mix, right_mix; in WM_GetOutput_Linear() local
904premix = ((note_data->sample->data[data_pos] + (((note_data->sample->data[data_pos + 1] - note_dat… in WM_GetOutput_Linear()
906 left_mix += (premix * (int32_t)note_data->left_mix_volume) / 1024; in WM_GetOutput_Linear()
907 right_mix += (premix * (int32_t)note_data->right_mix_volume) / 1024; in WM_GetOutput_Linear()
923 premix, left_mix, right_mix); in WM_GetOutput_Linear()
1140 int32_t premix, left_mix, right_mix; in WM_GetOutput_Gauss() local
1259 premix = (int32_t)((y * (note_data->env_level >> 12)) / 1024); in WM_GetOutput_Gauss()
1261 left_mix += (premix * (int32_t)note_data->left_mix_volume) / 1024; in WM_GetOutput_Gauss()
1262 right_mix += (premix * (int32_t)note_data->right_mix_volume) / 1024; in WM_GetOutput_Gauss()
/dports/audio/zmusic/ZMusic-1.1.8/thirdparty/wildmidi/
H A Dwildmidi_lib.cpp2048 signed int premix, left_mix, right_mix; in WM_Mix_Linear() local
2062premix = ((note_data->sample->data[data_pos] + (((note_data->sample->data[data_pos + 1] - note_dat… in WM_Mix_Linear()
2065 left_mix += (premix * (int)note_data->left_mix_volume) / 1024; in WM_Mix_Linear()
2066 right_mix += (premix * (int)note_data->right_mix_volume) / 1024; in WM_Mix_Linear()
2226 signed int premix, left_mix, right_mix; in WM_Mix_Gauss() local
2284 premix = (int)((y * (note_data->env_level >> 12)) / 1024); in WM_Mix_Gauss()
2286 left_mix += (premix * (int)note_data->left_mix_volume) / 1024; in WM_Mix_Gauss()
2287 right_mix += (premix * (int)note_data->right_mix_volume) / 1024; in WM_Mix_Gauss()
/dports/games/zdoom/zdoom-2.8.1/src/wildmidi/
H A Dwildmidi_lib.cpp2124 signed int premix, left_mix, right_mix; in WM_Mix_Linear() local
2138premix = ((note_data->sample->data[data_pos] + (((note_data->sample->data[data_pos + 1] - note_dat… in WM_Mix_Linear()
2141 left_mix += (premix * (int)note_data->left_mix_volume) / 1024; in WM_Mix_Linear()
2142 right_mix += (premix * (int)note_data->right_mix_volume) / 1024; in WM_Mix_Linear()
2302 signed int premix, left_mix, right_mix; in WM_Mix_Gauss() local
2360 premix = (int)((y * (note_data->env_level >> 12)) / 1024); in WM_Mix_Gauss()
2362 left_mix += (premix * (int)note_data->left_mix_volume) / 1024; in WM_Mix_Gauss()
2363 right_mix += (premix * (int)note_data->right_mix_volume) / 1024; in WM_Mix_Gauss()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/wildmidi/src/
H A Dwildmidi_lib.c4215 signed long int premix, left_mix, right_mix; local
4302 premix = ((*note_data)->sample->data[data_pos] +
4306 left_mix += premix * mdi->channel[(*note_data)->noteid >> 8].left_adjust;
4307 right_mix += premix * mdi->channel[(*note_data)->noteid >> 8].right_adjust;
4566 signed long int premix, left_mix, right_mix; local
4691 premix = y * vol_mul / 1024;
4693 left_mix += premix * mdi->channel[(*note_data)->noteid >> 8].left_adjust;
4694 right_mix += premix * mdi->channel[(*note_data)->noteid >> 8].right_adjust;
/dports/textproc/link-grammar/link-grammar-5.8.0/data/en/words/
H A Dwords-medical.v.4.11959 premix.v
/dports/textproc/py-wordnet/WordNet-2.0/dict/
H A Dcntlist13251 3 premix%1:13:00:: 1
H A Dcntlist.rev25281 premix%1:13:00:: 1 3
/dports/deskutils/calibre/calibre-src-5.34.0/resources/dictionaries/en-US/
H A Den-US.dic35931 premix/156 1
/dports/textproc/sigil/Sigil-1.8.0/src/Resource_Files/dictionaries/
H A Den_US.dic35931 premix/156 1
H A Den_GB.dic38523 premix/55 1
/dports/textproc/pageedit/PageEdit-1.2.0/dictionaries/
H A Den_US.dic35931 premix/156 1
H A Den_GB.dic38523 premix/55 1
/dports/deskutils/calibre/calibre-src-5.34.0/resources/dictionaries/en-GB/
H A Den-GB.dic38523 premix/55 1

123456