Searched defs:sample (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2LayerRegion.java34 SF2Sample sample; field in class:SF2LayerRegion
37 return sample;
40 public void setSample(SF2Sample sample) { argument
41 this.sample = sample;
H A DDLSRegion.java52 DLSSample sample = null; field in class:DLSRegion
116 return sample;
119 public void setSample(DLSSample sample) { argument
120 this.sample = sample;
H A DEmergencySoundbank.java500 SF2Sample sample = newSimpleFFTSample(sf2, "EPiano", data, base);
501 SF2Layer layer = newLayer(sf2, "EPiano", sample);
556 SF2Sample sample = newSimpleFFTSample(sf2, "Guitar", data, base);
557 SF2Layer layer = newLayer(sf2, "Guitar", sample);
615 SF2Sample sample = newSimpleFFTSample_dist(sf2, "Distorted Guitar",
619 SF2Layer layer = newLayer(sf2, "Distorted Guitar", sample);
669 SF2Sample sample = newSimpleDrumSample(sf2, "Guitar Noise", datab);
690 region.setSample(sample);
740 SF2Sample sample = newSimpleFFTSample(sf2, "Grand Piano", data, base, 200);
741 SF2Layer layer = newLayer(sf2, "Grand Piano", sample);
2532 newLayer(SF2Soundbank sf2, String name, SF2Sample sample) argument
[all...]
H A DDLSSoundbank.java255 entry.getKey().sample = samples.get((int)entry.getValue().longValue());
742 DLSSample sample = new DLSSample(this);
749 readWaveInfoChunk(sample, chunk);
753 sample.guid = new byte[16];
754 chunk.readFully(sample.guid);
788 sample.format = audioformat;
793 sample.setData(new ModelByteBuffer(sampleFile,
798 sample.setData(buffer);
815 sample.sampleoptions = new DLSSampleOptions();
816 readWsmpChunk(sample
925 writeSample(RIFFWriter writer, DLSSample sample) argument
[all...]
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/com/sun/sample/scriptpad/
H A DMain.java37 * this sample code.
41 package com.sun.sample.scriptpad;
47 * This is the entry point of "Scriptpad" sample. This class creates
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DPerfDataBuffer.java64 sample(buffer);
84 public void sample(ByteBuffer buffer) throws RemoteException { method in class:PerfDataBuffer
H A DRemoteMonitoredVm.java103 sample();
124 public void sample() throws RemoteException { method in class:RemoteMonitoredVm
126 ((PerfDataBuffer)pdb).sample(updateBuffer);
278 * Class to periodically sample the remote instrumentation byte buffer
286 sample();
291 System.err.println("Exception taking sample for "
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DStatisticsAccumulator.java36 * computes the value of minimum, maximum, sum and sample square sum. When
76 * User will use this method to just register a sample with the
89 public void sample(double value) { method in class:StatisticsAccumulator
95 } // end sample
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcUtil.cpp50 void AdaptiveWeightedAverage::sample(float new_sample) { function in class:AdaptiveWeightedAverage
83 void AdaptivePaddedAverage::sample(float new_sample) { function in class:AdaptivePaddedAverage
84 // Compute new adaptive weighted average based on new sample.
85 AdaptiveWeightedAverage::sample(new_sample);
96 void AdaptivePaddedNoZeroDevAverage::sample(float new_sample) { function in class:AdaptivePaddedNoZeroDevAverage
97 // Compute our parent classes sample information
98 AdaptiveWeightedAverage::sample(new_sample);
102 // We only create a new deviation if the sample is non-zero
121 _mean_x.sample(x);
122 _mean_y.sample(
[all...]
H A DgcUtil.hpp70 // given a sample and the last average
101 // Update data with a new sample.
102 void sample(float new_sample);
104 static inline float exp_avg(float avg, float sample, argument
107 return (100.0F - weight) * avg / 100.0F + weight * sample / 100.0F;
109 static inline size_t exp_avg(size_t avg, size_t sample, argument
112 return (size_t)exp_avg((float)avg, (float)sample, weight);
163 void sample(float new_sample);
176 // if the sample is zero. The average is allowed to change. We're
184 void sample(floa
[all...]
H A DmutableNUMASpace.hpp118 void sample() { function in class:MutableNUMASpace::LGRPSpace
129 alloc_rate()->sample(alloc_rate_sample);
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DColorEditor.java39 // Create a sample color block bordered in black
43 sample = new Canvas();
44 p.add(sample);
45 sample.reshape(2, 2, sampleWidth, sampleHeight);
144 sample.setBackground(color);
145 sample.repaint();
203 private Canvas sample; field in class:ColorEditor
H A DFontEditor.java98 if (sample != null) {
99 remove(sample);
101 sample = new Label(sampleText);
102 sample.setFont(font);
103 add(sample);
207 private Label sample; field in class:FontEditor
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.cpp203 sample();
211 sample();
214 void PerfLongVariant::sample() { function in class:PerfLongVariant
H A DperfData.hpp204 * is relying on the StatSampler PeriodicTask to sample the given
224 * operation is necessary to generate the data sample. This method
245 friend class StatSampler; // for access to protected void sample()
298 // sample the data item given at creation time and write its value
300 virtual void sample() = 0;
383 // hide sample() - no need to sample constants
384 void sample() { } function in class:PerfLongConstant
422 void sample();
534 // hide sample()
535 void sample() { } function in class:PerfStringConstant
562 void sample() { } function in class:PerfStringVariable
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp578 int sample(u1* save_buf) { function in class:StableMemoryChecker
594 sample(_save_buf);
599 int check_size = sample(check_buf);
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DDirectAudioDevice.c62 /* 16 bit signed sample, native endianness, stored in 32-bits */
80 static INLINE INT32 MAP_ClipAndConvertToShort(MAP_Sample sample) { argument
81 if (sample < -32768) {
84 else if (sample > 32767) {
87 return (INT32) sample;
91 static INLINE INT32 MAP_ClipAndConvertToShort_Swapped(MAP_Sample sample) { argument
92 if (sample < -32768) {
95 else if (sample > 32767) {
98 return (INT32) (INT16) MAP_SWAP16BIT(sample);
101 static INLINE INT8 MAP_ClipAndConvertToByte(MAP_Sample sample) { argument
112 MAP_ClipAndConvertToUByte(MAP_Sample sample) argument
325 MAP_Sample sample; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp86 void DUIterator_Common::sample(const Node* node) { function in class:DUIterator_Common
130 void DUIterator::sample(const Node* node) { function in class:DUIterator
131 DUIterator_Common::sample(node); // Initialize the assertion data.
163 sample(that._node);
174 DUIterator_Common::sample(_node); // Re-fetch assertion data.

Completed in 126 milliseconds