Home
last modified time | relevance | path

Searched refs:sChannels (Results 1 – 14 of 14) sorted by relevance

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFormat.java478 String sChannels; in toString() local
480 sChannels = "mono, "; in toString()
483 sChannels = "stereo, "; in toString()
486 sChannels = " unknown number of channels, "; in toString()
488 sChannels = ""+getChannels()+" channels, "; in toString()
523 + sChannels in toString()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFormat.java478 String sChannels; in toString() local
480 sChannels = "mono, "; in toString()
483 sChannels = "stereo, "; in toString()
486 sChannels = " unknown number of channels, "; in toString()
488 sChannels = ""+getChannels()+" channels, "; in toString()
523 + sChannels in toString()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFormat.java478 String sChannels; in toString() local
480 sChannels = "mono, "; in toString()
483 sChannels = "stereo, "; in toString()
486 sChannels = " unknown number of channels, "; in toString()
488 sChannels = ""+getChannels()+" channels, "; in toString()
523 + sChannels in toString()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java496 String sChannels; in toString() local
498 sChannels = "mono, "; in toString()
501 sChannels = "stereo, "; in toString()
504 sChannels = " unknown number of channels, "; in toString()
506 sChannels = ""+getChannels()+" channels, "; in toString()
541 + sChannels in toString()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFormat.java478 String sChannels; in toString() local
480 sChannels = "mono, "; in toString()
483 sChannels = "stereo, "; in toString()
486 sChannels = " unknown number of channels, "; in toString()
488 sChannels = ""+getChannels()+" channels, "; in toString()
523 + sChannels in toString()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFormat.java478 String sChannels; in toString() local
480 sChannels = "mono, "; in toString()
483 sChannels = "stereo, "; in toString()
486 sChannels = " unknown number of channels, "; in toString()
488 sChannels = ""+getChannels()+" channels, "; in toString()
523 + sChannels in toString()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java496 String sChannels; in toString() local
498 sChannels = "mono, "; in toString()
501 sChannels = "stereo, "; in toString()
504 sChannels = " unknown number of channels, "; in toString()
506 sChannels = ""+getChannels()+" channels, "; in toString()
541 + sChannels in toString()
/dports/multimedia/vvdec/vvdec-1.1.2/source/Lib/CommonLib/
H A Ddtrace.cpp260 void CDTrace::getChannelsList( std::string& sChannels ) in getChannelsList() argument
262 sChannels.clear(); in getChannelsList()
267 sChannels += it->first + "\n"; in getChannelsList()
H A Ddtrace.h140 void getChannelsList( std::string& sChannels );
/dports/irc/znc/znc-1.8.2/modules/
H A Dautoattach.cpp24 CAttachMatch(CModule* pModule, const CString& sChannels, in CAttachMatch() argument
28 m_sChannelWildcard = sChannels; in CAttachMatch()
H A Dautovoice.cpp31 const CString& sChannels) in CAutoVoiceUser() argument
33 AddChans(sChannels); in CAutoVoiceUser()
H A Dautoop.cpp52 const CString& sHostmasks, const CString& sChannels) in CAutoOpUser() argument
55 AddChans(sChannels); in CAutoOpUser()
/dports/lang/fpc-source/fpc-3.2.2/packages/os2units/src/
H A Dmmbase.pas896 sChannels:Integer;
1094 sChannels:Integer;
2177 sChannels:Integer; // Channels */
2538 sChannels:Integer;
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/
H A Dapp.cpp4651 unsigned sChannels = f.channels(); in importWaveToTrack() local
4652 sf_count_t szBufInFrames = szBuf / sChannels; in importWaveToTrack()
4685 sd.data_in += sd.input_frames_used * sChannels; in importWaveToTrack()
4692 for(unsigned ch = 0; ch < sChannels; ch++) in importWaveToTrack()
4697 dstBuffer [k * sChannels + ch] *= fNormRatio; //normilize if needed in importWaveToTrack()
4698 float fCurPeek = dstBuffer [k * sChannels + ch]; in importWaveToTrack()