Home
last modified time | relevance | path

Searched refs:getChannel (Results 1 – 25 of 2522) sorted by relevance

12345678910>>...101

/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/mixer/
H A DTGMixerTrackChannel.java34 protected TGChannel getChannel(){ in getChannel() method in TGMixerTrackChannel
35 return this.mixer.getTrack().getChannel(); in getChannel()
51 TGChannel channel = getTrack().getChannel(); in init()
102 if(getChannel().isPercussionChannel()){ in updateNormalChannel()
110 …ls[i] && usedChannels[i]) || (getChannel().getChannel() == i && getChannel().getEffectChannel() ==… in updateNormalChannel()
119 if(i == getChannel().getChannel()){ in updateNormalChannel()
136 if(getChannel().isPercussionChannel()){ in updateEffectChannel()
144 …if((!usedEffectChannels[i] || getChannel().getEffectChannel() == i) && (!usedChannels[i] || i == g… in updateEffectChannel()
173 public int getChannel(int index){ in getChannel() method in TGMixerTrackChannel.ChannelList
178 return channelIndex.getChannel(); in getChannel()
[all …]
H A DTGMixerTrack.java147 int value = this.track.getChannel().getVolume();
152 int value = this.track.getChannel().getBalance();
156 int value = this.track.getChannel().getChorus();
160 int value = this.track.getChannel().getReverb();
164 int value = this.track.getChannel().getPhaser();
168 int value = this.track.getChannel().getTremolo();
205 TGMixerTrack.this.track.getChannel().setVolume( (short)value ); in update()
208 TGMixerTrack.this.track.getChannel().setBalance( (short)value ); in update()
211 TGMixerTrack.this.track.getChannel().setChorus( (short)value );
214 TGMixerTrack.this.track.getChannel().setReverb( (short)value );
[all …]
/dports/games/passage/Passage_v4_UnixSource/minorGems/graphics/
H A DImageColorConverter.h222 double *red = inImage->getChannel( 0 ); in RGBToGrayscale()
223 double *green = inImage->getChannel( 1 ); in RGBToGrayscale()
224 double *blue = inImage->getChannel( 2 ); in RGBToGrayscale()
226 double *gray = grayImage->getChannel( 0 ); in RGBToGrayscale()
245 double *red = rgbImage->getChannel( 0 ); in grayscaleToRGB()
246 double *green = rgbImage->getChannel( 1 ); in grayscaleToRGB()
247 double *blue = rgbImage->getChannel( 2 ); in grayscaleToRGB()
249 double *gray = inImage->getChannel( 0 ); in grayscaleToRGB()
292 double *gray = grayImage->getChannel( 0 ); in byteArrayToGrayscale()
506 double *channel = rgbImage->getChannel( c ); in YCbCrToRGB()
[all …]
/dports/games/cultivation/Cultivation_8_UnixSource/minorGems/graphics/
H A DImageColorConverter.h222 double *red = inImage->getChannel( 0 ); in RGBToGrayscale()
223 double *green = inImage->getChannel( 1 ); in RGBToGrayscale()
224 double *blue = inImage->getChannel( 2 ); in RGBToGrayscale()
226 double *gray = grayImage->getChannel( 0 ); in RGBToGrayscale()
245 double *red = rgbImage->getChannel( 0 ); in grayscaleToRGB()
246 double *green = rgbImage->getChannel( 1 ); in grayscaleToRGB()
247 double *blue = rgbImage->getChannel( 2 ); in grayscaleToRGB()
249 double *gray = inImage->getChannel( 0 ); in grayscaleToRGB()
292 double *gray = grayImage->getChannel( 0 ); in byteArrayToGrayscale()
506 double *channel = rgbImage->getChannel( c ); in YCbCrToRGB()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/common/
H A DtcuBilinearImageCompare.cpp44 static inline deUint8 getChannel (deUint32 color) in getChannel() function
66 res |= getChannel<0>(raw) << RGBA::RED_SHIFT; in readRGBA8()
67 res |= getChannel<1>(raw) << RGBA::GREEN_SHIFT; in readRGBA8()
68 res |= getChannel<2>(raw) << RGBA::BLUE_SHIFT; in readRGBA8()
69 res |= getChannel<3>(raw) << RGBA::ALPHA_SHIFT; in readRGBA8()
106 …res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), ge… in bilinearSampleRGBA8()
107 …res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), ge… in bilinearSampleRGBA8()
108 …res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), ge… in bilinearSampleRGBA8()
109 …res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), ge… in bilinearSampleRGBA8()
H A DtcuFuzzyImageCompare.cpp43 static inline deUint8 getChannel (deUint32 color) in getChannel() function
60 …return Vec4((float)getChannel<0>(color), (float)getChannel<1>(color), (float)getChannel<2>(color),… in toFloatVec()
102 ptr[c] = getChannel(val, c); in writeUnorm8()
115 …const int r = de::max<int>(de::abs((int)getChannel<0>(pa) - (int)getChannel<0>(pb)) - MIN_ERR_THRE… in colorDistSquared()
116 …const int g = de::max<int>(de::abs((int)getChannel<1>(pa) - (int)getChannel<1>(pb)) - MIN_ERR_THRE… in colorDistSquared()
117 …const int b = de::max<int>(de::abs((int)getChannel<2>(pa) - (int)getChannel<2>(pb)) - MIN_ERR_THRE… in colorDistSquared()
118 …const int a = de::max<int>(de::abs((int)getChannel<3>(pa) - (int)getChannel<3>(pb)) - MIN_ERR_THRE… in colorDistSquared()
151 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) + in bilinearSample()
152 (getChannel(p10, c)*( a)*(1.0f-b)) + in bilinearSample()
153 (getChannel(p01, c)*(1.0f-a)*( b)) + in bilinearSample()
[all …]
/dports/audio/darkice/darkice-1.4/src/
H A DJackDspSource.cpp192 if (++ch >= getChannel()) break; in do_auto_connect()
236 if (getChannel() == 1) { in open()
245 } else if (getChannel() == 2) { in open()
273 for (c=0; c < getChannel(); c++) { in open()
374 for (c=0; c < getChannel(); c++) { in read()
381 for (c=0; c < getChannel(); c++) { in read()
394 output[n*getChannel()+c] = SHRT_MAX; in read()
396 output[n*getChannel()+c] = SHRT_MIN; in read()
411 return samples_read[0] * 2 * getChannel(); in read()
427 for(i = 0; i < getChannel(); i++) { in close()
[all …]
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/audio/
H A DMixer.cpp78 if(ambiance && _mixer[ambiance->getChannel().mixer] == this) { in clear()
79 if(force || ambiance->getChannel().flags & FLAG_AUTOFREE) { in clear()
89 if(*p && _mixer.isValid((*p)->getChannel().mixer) && _mixer[(*p)->getChannel().mixer] == this) { in clear()
126 if(*p && _mixer.isValid((*p)->getChannel().mixer) && _mixer[(*p)->getChannel().mixer] == this) { in updateVolume()
184 if(_amb[i] && _mixer[_amb[i]->getChannel().mixer] == this) { in pause()
190 if(*p && _mixer.isValid((*p)->getChannel().mixer) && _mixer[(*p)->getChannel().mixer] == this) { in pause()
213 if(_amb[i] && _mixer[_amb[i]->getChannel().mixer] == this) { in resume()
219 if(*p && _mixer.isValid((*p)->getChannel().mixer) && _mixer[(*p)->getChannel().mixer] == this) { in resume()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/api/src/org/chromium/net/
H A DUploadDataProviders.java28 public FileChannel getChannel() throws IOException { in create()
29 return new FileInputStream(file).getChannel(); in create()
44 public FileChannel getChannel() throws IOException {
46 return new ParcelFileDescriptor.AutoCloseInputStream(fd).getChannel();
84 private interface FileChannelProvider { FileChannel getChannel() throws IOException; }
98 return getChannel().size();
106 FileChannel channel = getChannel();
121 getChannel().position(0);
129 private FileChannel getChannel() throws IOException {
133 mChannel = mProvider.getChannel();
/dports/audio/drumstick/drumstick-2.5.0/tests/alsaTest1/
H A Dalsatest1.cpp42 QCOMPARE(note.getChannel(), 0); in testEvents()
48 QCOMPARE(noteOn.getChannel(), 1); in testEvents()
53 QCOMPARE(noteOff.getChannel(), 2); in testEvents()
58 QCOMPARE(ctl.getChannel(), 3); in testEvents()
63 QCOMPARE(pgm.getChannel(), 4); in testEvents()
67 QCOMPARE(keyPress.getChannel(), 5); in testEvents()
72 QCOMPARE(chanPress.getChannel(), 6); in testEvents()
76 QCOMPARE(bender.getChannel(), 7); in testEvents()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/player/base/
H A DMidiPlayer.java427 …getOutputTransmitter().sendProgramChange(track.getChannel().getChannel(),track.getChannel().getIns…
428 if(track.getChannel().getChannel() != track.getChannel().getEffectChannel()){
429 …getOutputTransmitter().sendProgramChange(track.getChannel().getEffectChannel(),track.getChannel().…
463 int chorus = track.getChannel().getChorus();
464 int reverb = track.getChannel().getReverb();
468 … updateController(track.getChannel().getChannel(),volume,balance,chorus,reverb,phaser,tremolo,127);
469 if(track.getChannel().getChannel() != track.getChannel().getEffectChannel()){
517 int channel = track.getChannel().getChannel();
521 int chorus = track.getChannel().getChorus();
522 int reverb = track.getChannel().getReverb();
[all …]
/dports/audio/drumstick/drumstick-2.5.0/library/rt-backends/alsa-in/
H A Dalsamidiinput.cpp221 m_out->sendNoteOff(n->getChannel(), n->getKey(), n->getVelocity()); in handleSequencerEvent()
223 emit m_inp->midiNoteOff(n->getChannel(), n->getKey(), n->getVelocity()); in handleSequencerEvent()
229 m_out->sendNoteOn(n->getChannel(), n->getKey(), n->getVelocity()); in handleSequencerEvent()
231 emit m_inp->midiNoteOn(n->getChannel(), n->getKey(), n->getVelocity()); in handleSequencerEvent()
246 m_out->sendController(n->getChannel(), n->getParam(), n->getValue()); in handleSequencerEvent()
254 m_out->sendProgram(p->getChannel(), p->getValue()); in handleSequencerEvent()
256 emit m_inp->midiProgram(p->getChannel(), p->getValue()); in handleSequencerEvent()
262 m_out->sendChannelPressure(n->getChannel(), n->getValue()); in handleSequencerEvent()
264 emit m_inp->midiChannelPressure(n->getChannel(), n->getValue()); in handleSequencerEvent()
270 m_out->sendPitchBend(n->getChannel(), n->getValue()); in handleSequencerEvent()
[all …]
/dports/net/jgroups/jgroups-2.12.0/src/org/jgroups/mux/
H A DMuxChannel.java93 return mux.getChannel().getClusterName(); in getChannelName()
97 return mux.getChannel().getClusterName(); in getClusterName()
105 return mux.getChannel().getProperties(); in getProperties()
109 public JChannel getChannel() { in getChannel() method in MuxChannel
110 return mux.getChannel(); in getChannel()
132 return mux.getChannel().getView(); in getClusterView()
136 return mux.getChannel().getProtocolStack(); in getProtocolStack()
348 mux.getChannel().send(msg); in send()
365 mux.getChannel().down(evt); in down()
373 return mux.getChannel().downcall(evt); in downcall()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
132 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
162 FileChannel fc1 = raf1.getChannel(); in xferTest02()
174 FileChannel fc2 = raf2.getChannel(); in xferTest02()
197 FileChannel fc1 = raf1.getChannel(); in xferTest03()
210 FileChannel fc2 = raf2.getChannel(); in xferTest03()
239 FileChannel fc = raf.getChannel(); in xferTest04()
378 .getChannel(); in xferTest07()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
132 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
162 FileChannel fc1 = raf1.getChannel(); in xferTest02()
174 FileChannel fc2 = raf2.getChannel(); in xferTest02()
197 FileChannel fc1 = raf1.getChannel(); in xferTest03()
210 FileChannel fc2 = raf2.getChannel(); in xferTest03()
239 FileChannel fc = raf.getChannel(); in xferTest04()
378 .getChannel(); in xferTest07()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/nio/channels/FileChannel/
H A DTransfer.java70 FileChannel sourceChannel = fos.getChannel(); in testFileChannel()
76 sourceChannel = fis.getChannel(); in testFileChannel()
79 FileChannel sinkChannel = raf.getChannel(); in testFileChannel()
136 FileChannel fc = raf.getChannel(); in testReadableByteChannel()
168 FileChannel fc1 = raf1.getChannel(); in xferTest02()
180 FileChannel fc2 = raf2.getChannel(); in xferTest02()
204 FileChannel fc1 = raf1.getChannel(); in xferTest03()
217 FileChannel fc2 = raf2.getChannel(); in xferTest03()
265 new RandomAccessFile(source, "rw").getChannel(); in xferTest06()
269 new RandomAccessFile(sink, "rw").getChannel(); in xferTest06()
[all …]
/dports/audio/sc3-plugins/sc3-plugins-Version-3.9.0/source/DEINDUGens/include/faust/midi/
H A Dbela-midi.h49 …midi->fMidiInputs[i]->keyOff(0, message.getChannel(), message.getDataByte(0), message.getDataByte(… in midiCallback()
55 …midi->fMidiInputs[i]->keyOn(0, message.getChannel(), message.getDataByte(0), message.getDataByte(1… in midiCallback()
57 …midi->fMidiInputs[i]->keyOff(0, message.getChannel(), message.getDataByte(0), message.getDataByte(… in midiCallback()
63 …midi->fMidiInputs[i]->keyPress(0, message.getChannel(), message.getDataByte(0), message.getDataByt… in midiCallback()
68 …midi->fMidiInputs[i]->ctrlChange(0, message.getChannel(), message.getDataByte(0), message.getDataB… in midiCallback()
73 … midi->fMidiInputs[i]->progChange(0, message.getChannel(), message.getDataByte(0)); in midiCallback()
78 … midi->fMidiInputs[i]->chanPress(0, message.getChannel(), message.getDataByte(0)); in midiCallback()
83 …midi->fMidiInputs[i]->pitchWheel(0, message.getChannel(), ((message.getDataByte(1) * 128.0 + messa… in midiCallback()
/dports/net-im/chatterino2/chatterino2-2.3.4/src/widgets/splits/
H A DSplitHeader.cpp352 ChannelPtr _channel = this->split->getChannel(); in createMainMenu()
386 if (this->split_->getChannel()->hasModRights()) in createMainMenu()
411 if (this->split_->getChannel()->canReconnect()) in createMainMenu()
492 this->split_->getChannel()->getName())); in createMainMenu()
496 this->split_->getChannel()->getName()); in createMainMenu()
554 this->split_->getChannel().get()->sendMessage( in createChatModeMenu()
664 auto channel = this->split_->getChannel(); in handleChannelChanged()
698 auto channel = this->split_->getChannel(); in updateChannelText()
780 auto channel = this->split_->getChannel(); in updateModerationModeIcon()
925 auto channel = this->split_->getChannel(); in reloadChannelEmotes()
[all …]

12345678910>>...101