Searched refs:sample (Results 26 - 50 of 66) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/java2d/cmm/lcms/
H A DLCMSTransform.java401 float sample;
425 sample = src.getSampleFloat(xs, ys, i);
427 ((sample - srcUseMinVal[i]) * srcScaleFactor[i] + 0.5f);
439 sample = ((dstLine[idx++] & 0xffff) * dstScaleFactor[i]) +
441 dst.setSample(xd, yd, i, sample);
494 int sample;
519 sample = src.getSample(xs, ys, i);
521 ((sample * srcScaleFactor[i]) + 0.5f);
533 sample = (int) (((dstLine[idx++] & 0xff) *
535 dst.setSample(xd, yd, i, sample);
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsAdaptiveSizePolicy.cpp310 avg_cms_free()->sample(cur_promo);
314 _avg_concurrent_time->sample(latest_cms_sum_concurrent_phases_time_secs);
351 avg_concurrent_interval()->sample(interval_in_seconds);
366 avg_cms_STW_gc_cost()->sample(STW_collection_cost);
381 avg_concurrent_gc_cost()->sample(concurrent_cost);
397 avg_major_gc_cost()->sample(total_collection_cost);
453 avg_initial_pause()->sample(_latest_cms_initial_mark_start_to_end_time_secs);
485 avg_remark_pause()->sample(_latest_cms_remark_start_to_end_time_secs);
488 avg_cms_STW_time()->sample(STW_time_in_seconds);
520 avg_msc_interval()->sample(_latest_cms_msc_end_to_msc_start_time_sec
[all...]
/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/jdk/make/mksample/dtrace/
H A DMakefile27 # Makefile for the dtrace sample code
36 SAMPLE_SRC_DIR = $(PLATFORM_SRC)/sample/dtrace
/openjdk7/jdk/make/mksample/nio/server/
H A DMakefile27 # Makefile for the nioserver sample code
36 SAMPLE_SRC_DIR = $(SHARE_SRC)/sample/nio/server
/openjdk7/jdk/make/mksample/webservices/EbayClient/
H A DMakefile27 # Makefile for the EbayClient sample code
36 SAMPLE_SRC_DIR = $(CLOSED_SHARE_SRC)/sample/webservices/EbayClient
/openjdk7/jdk/make/mksample/webservices/EbayServer/
H A DMakefile27 # Makefile for the EbayServer sample code
36 SAMPLE_SRC_DIR = $(CLOSED_SHARE_SRC)/sample/webservices/EbayServer
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsAdaptiveSizePolicy.cpp108 _avg_major_pause->sample(major_pause_in_seconds);
118 avg_major_gc_cost()->sample(collection_cost);
121 _avg_major_interval->sample(interval_in_seconds);
211 _avg_base_footprint->sample(BaseFootPrintEstimate + perm_live);
212 avg_young_live()->sample(young_live);
213 avg_eden_live()->sample(eden_live);
216 avg_old_live()->sample(old_live);
1084 _avg_survived->sample(survived);
1087 _avg_survived->sample(survived_guess);
1089 avg_promoted()->sample(promote
[all...]
H A DpsPermGen.cpp65 _avg_size->sample(alloc_since_last_gc);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandedSampleModel.java41 * which each sample of a pixel occupies one data element of the DataBuffer.
45 * with images which store sample data for each band in a different bank of the
51 * a given sample and the corresponding sample in the same column of the next
54 * of the DataBuffer holding each band to the first sample of the band.
156 * the number of banks in this sample model.
241 * bits per sample, and the TransferTypes are the same.
397 * an int array, one sample per data array element.
446 * Returns as int the sample in a specified band for the pixel
454 * @return the sample i
[all...]
H A DSampleModel.java41 * Each pixel consists of a number of samples. A sample is a datum
57 * not operate on all possible sample types, but generally will work
59 * support a wider variety of sample types.
223 * one sample per array element.
277 * bits per sample, and the TransferTypes are the same.
329 * bits per sample, and the TransferTypes are the same.
515 * bits per sample, and the TransferTypes are the same.
562 * bits per sample, and the TransferTypes are the same.
750 * int array, one sample per array element.
798 * array, one sample pe
[all...]
H A DComponentSampleModel.java41 * This class represents image data which is stored such that each sample
50 * of data array elements between a given sample and the corresponding sample
53 * of the DataBuffer holding each band to the first sample of the band.
55 * data for which each sample is an unsigned integral number which can be
58 * respectively), data for which each sample is a signed integral number
60 * or data for which each sample is a signed float or double quantity
439 * A sample of the first band can be retrieved from a
456 * A sample of band <code>b</code> can be retrieved from a
472 /** Returns the number of bits per sample fo
[all...]
H A DSinglePixelPackedSampleModel.java51 * number of data array elements between a given sample and the corresponding
52 * sample in the same column of the next scanline. Bit masks are the masks
57 * The following code illustrates extracting the bits of the sample
61 * int sample = data.getElem(y * scanlineStride + x);
62 * sample = (sample & bitMasks[b]) >>> bitOffsets[b];
93 * Each sample is stored in a data array element in the position of
122 * Each sample is stored in a data array element in the position of
248 /** Returns the number of bits per sample for all bands. */
253 /** Returns the number of bits per sample fo
[all...]
H A DColorConvertOp.java1026 float sample;
1038 sample = src.getSampleFloat(xs, ys, i);
1040 sample = sample * srcScaleFactor[i] + srcMinVals[i];
1042 color[i] = sample;
1047 sample = tmpColor[i];
1049 sample = (sample - dstMinVals[i]) * dstScaleFactor[i];
1051 dst.setSample(xd, yd, i, sample);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.hpp118 void sample() { function in class:MutableNUMASpace::LGRPSpace
129 alloc_rate()->sample(alloc_rate_sample);
H A DallocationStats.hpp100 // ignore the current sample and use currently available
118 _demand_rate_estimate.sample(rate);
H A DadaptiveSizePolicy.cpp253 _avg_minor_pause->sample(minor_pause_in_seconds);
263 _avg_minor_gc_cost->sample(collection_cost);
265 _avg_minor_interval->sample(interval_in_seconds);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
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...]
H A DSF2Instrument.java227 SF2Sample sample = layerzone.getSample();
228 int rootkey = sample.originalPitch;
233 float pitchcorrection = (-rootkey * 100) + sample.pitchCorrection;
234 ModelByteBuffer buff = sample.getDataBuffer();
235 ModelByteBuffer buff24 = sample.getData24Buffer();
266 buff, sample.getFormat(), pitchcorrection);
289 // depression then proceeds to play the remainder of the sample.
293 if (sample.startLoop >= 0 && sample.endLoop > 0) {
294 osc.setLoopStart((int)(sample
[all...]
H A DDLSInstrument.java403 DLSSample sample = zone.getSample();
406 sampleopt = sample.getSampleoptions();
408 ModelByteBuffer buff = sample.getDataBuffer();
414 sample.getFormat(), pitchcorrection);
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.cpp96 _allocation_fraction.sample(alloc_frac);
214 _allocation_fraction.sample(alloc_frac);
327 _allocating_threads_avg.sample(1); // One allocating thread at startup
401 _allocating_threads_avg.sample(_allocating_threads);
/openjdk7/hotspot/src/share/vm/runtime/
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...]
H A DperfData.cpp203 sample();
211 sample();
214 void PerfLongVariant::sample() { function in class:PerfLongVariant
H A DstatSampler.cpp108 * task and, if logging was enabled, for logging the final sample. This
124 // force a final sample
154 item->sample();
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp570 size_policy->avg_survived()->sample(survived);
576 size_policy->avg_survived()->sample(survived_guess);
585 size_policy->avg_young_live()->sample(used());
586 size_policy->avg_eden_live()->sample(eden()->used());

Completed in 64 milliseconds

123