Searched refs:samples (Results 251 - 275 of 685) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/testing/gtest/scripts/test/
H A DMakefile18 SAMPLE_DIR = ../../samples
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderTarget11.h26 RenderTarget11(Renderer *renderer, GLsizei width, GLsizei height, GLenum internalFormat, GLsizei samples);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen6_multisample_state.c63 * a row, column, or diagonal. This is a desirable property for samples
64 * in a multisampling pattern, because it ensures that the samples are
78 * MSRASTMODE_xxx_PATTERN), the order of the samples 0 to 3 (or 7
146 unsigned num_samples = ctx->DrawBuffer->Visual.samples;
/external/doclava/res/assets/templates/
H A Dsample.cs20 <p>The file containing the source code shown below is located in the corresponding directory in <code>&lt;sdk&gt;/samples/android-&lt;version&gt;/...</code></p>
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractMapTester.java47 samples = this.getSubjectGenerator().samples();
156 return MinimalCollection.of(samples.e3, samples.e4);
H A DTestEnumMapGenerator.java34 public SampleElements<Entry<AnEnum, String>> samples() { method in class:TestEnumMapGenerator
H A DTestMapEntrySetGenerator.java42 public SampleElements<Map.Entry<K, V>> samples() { method in class:TestMapEntrySetGenerator
H A DTestStringMapGenerator.java37 public SampleElements<Map.Entry<String, String>> samples() { method in class:TestStringMapGenerator
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DTestEnumMultisetGenerator.java38 public SampleElements<AnEnum> samples() { method in class:TestEnumMultisetGenerator
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionToArrayTester.java123 array[getNumElements()] = samples.e3;
124 array[getNumElements() + 1] = samples.e3;
144 array[getNumElements()] = samples.e3;
145 array[getNumElements() + 1] = samples.e3;
H A DCollectionToStringTester.java56 "[" + samples.e0 + "]", collection.toString());
H A DSetAddTester.java41 assertFalse("add(present) should return false", getSet().add(samples.e0));
/external/libvorbis/test/
H A Dwrite_read.c256 int samples; local
260 while ((samples = vorbis_synthesis_pcmout (&vd,&pcm)) > 0 && read_total < count) {
261 int bout = samples < count ? samples : count;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_multisample_state.c63 * a row, column, or diagonal. This is a desirable property for samples
64 * in a multisampling pattern, because it ensures that the samples are
78 * MSRASTMODE_xxx_PATTERN), the order of the samples 0 to 3 (or 7
146 unsigned num_samples = ctx->DrawBuffer->Visual.samples;
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
H A DDebugWebSocket.java1 package fi.iki.elonen.samples.echo;
/external/protobuf/gtest/make/
H A DMakefile20 USER_DIR = ../samples
/external/protobuf/gtest/scripts/test/
H A DMakefile18 SAMPLE_DIR = ../../samples
/external/qemu/distrib/sdl-1.2.15/src/audio/sun/
H A DSDL_sunaudio.c127 left = (written - info.play.samples);
143 left = (written - info.play.samples);
348 fragsize = (spec->samples*1000)/(spec->freq/8);
357 fragsize = spec->samples;
/external/srec/srec/EventLog/include/
H A Driff.h219 short **samples,
/external/tinycompress/include/tinycompress/
H A Dtinycompress.h124 * @samples: number of decoded samples played
125 * @sampling_rate: sampling rate of decoded samples
128 unsigned long *samples, unsigned int *sampling_rate);
/external/chromium_org/components/metrics/
H A Dmetrics_log_unittest.cc194 base::SampleVector samples(&ranges);
195 samples.Accumulate(3, 1); // Bucket 1-5.
196 samples.Accumulate(6, 1); // Bucket 5-7.
197 samples.Accumulate(8, 1); // Bucket 8-9. (7-8 skipped)
198 samples.Accumulate(10, 1); // Bucket 10-11. (9-10 skipped)
199 samples.Accumulate(11, 1); // Bucket 11-12.
205 log.RecordHistogramDelta("Test", samples);
211 // Buckets with samples: 1-5, 5-7, 8-9, 10-11, 11-12.
/external/chromium_org/base/metrics/
H A Dhistogram_unittest.cc67 // Use standard macros (but with fixed samples)
82 scoped_ptr<HistogramSamples> samples = histogram->SnapshotSamples(); local
83 EXPECT_EQ(2, samples->TotalCount());
84 EXPECT_EQ(2, samples->GetCount(10));
245 // Put two samples "out of bounds" above and below.
253 scoped_ptr<SampleVector> samples = histogram->SnapshotSampleVector(); local
254 EXPECT_EQ(2, samples->GetCountAtIndex(0));
255 EXPECT_EQ(0, samples->GetCountAtIndex(1));
258 EXPECT_EQ(0, samples->GetCountAtIndex(array_size - 2));
259 EXPECT_EQ(2, samples
301 scoped_ptr<SampleVector> samples = histogram->SnapshotSampleVector(); local
[all...]
/external/qemu/audio/
H A Dwinaudio.c243 hw->samples = conf.nb_samples*2;
273 int hw_samples = audio_MIN(hw->samples - hw->rpos, live);
284 // s->write_pos, s->write_size, wav_samples, wav_bytes, live, hw->rpos, hw->samples);
287 if (hw->rpos >= hw->samples)
288 hw->rpos -= hw->samples;
494 hw->samples = conf.nb_samples*2;
504 /* report the number of captured samples to the audio subsystem */
511 int live = hw->samples - hw->total_samples_captured;
533 int hw_samples = audio_MIN(hw->samples - hw->wpos, live);
545 hw->wpos, hw->samples);
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fRboStateQueryTests.cpp351 // 0 samples is a special case
359 // test [1, n] samples
360 for (int samples = 1; samples <= max_samples; ++samples)
362 glRenderbufferStorageMultisample(GL_RENDERBUFFER, samples, GL_RGBA8, 128, 128);
365 checkRenderbufferParamGreaterOrEqual(m_testCtx, *this, GL_RENDERBUFFER_SAMPLES, samples);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp508 // FIXME: note that some output color spaces do not need the samples
599 JSAMPARRAY samples() const { return m_samples; } function in class:blink::JPEGImageReader
793 template <J_COLOR_SPACE colorSpace> void setPixel(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
798 template <> void setPixel<JCS_RGB>(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
800 JSAMPLE* jsample = *samples + column * 3;
804 template <> void setPixel<JCS_CMYK>(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
806 JSAMPLE* jsample = *samples + column * 4;
823 JSAMPARRAY samples = reader->samples(); local
832 if (jpeg_read_scanlines(info, samples,
849 JSAMPARRAY samples = reader->samples(); local
[all...]

Completed in 3629 milliseconds

<<11121314151617181920>>