Searched defs:sample (Results 26 - 50 of 254) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInertAnimation.cpp49 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > InertAnimation::sample(double inheritedTime) function in class:blink::InertAnimation
58 return m_effect->sample(static_cast<int>(iteration), timeFraction(), iterationDuration());
/external/deqp/framework/randomshaders/
H A DrsgSamplers.hpp49 inline tcu::Vec4 sample (float s, float t, float lod) const function in class:rsg::Sampler2D
51 return m_texture->sample(m_sampler, s, t, lod);
74 inline tcu::Vec4 sample (float s, float t, float r, float lod) const function in class:rsg::SamplerCube
76 return m_texture->sample(m_sampler, s, t, r, lod);
/external/javassist/sample/duplicate/
H A DBall.java1 package sample.duplicate;
/external/javassist/sample/evolve/
H A DVersionManager.java1 package sample.evolve;
H A DDemoServer.java1 package sample.evolve;
22 * either sample/evolve/WebPage.class
23 * or sample/evolve/sample/evolve/WebPage.class.
35 "Usage: java sample.evolve.DemoServer <port number>");
40 htmlfileBase = "sample/evolve/";
43 private static final String ver0 = "sample/evolve/WebPage.class.0";
44 private static final String ver1 = "sample/evolve/WebPage.class.1";
62 VersionManager.update("sample.evolve.WebPage");
93 = new FileOutputStream("sample/evolv
[all...]
/external/javassist/sample/reflect/
H A DPerson.java5 package sample.reflect;
H A DVerboseMetaobj.java1 package sample.reflect;
/external/javassist/sample/vector/
H A DVectorAssistant.java1 package sample.vector;
5 import sample.preproc.Assistant;
11 * <ul>import java.util.Vector by sample.vector.VectorAssistant(int)</ul>
18 * import sample.vector.intVector;
25 * package sample.vector;
39 * <code>sample.vector.Sample</code> and <code>sample.vector.Sample2</code>
44 public final String packageName = "sample.vector.";
48 * This method is called by a <code>sample.preproc.Compiler</code>.
50 * @see sample
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dopen-syscall-tp-fields.c76 struct perf_sample sample; local
85 err = perf_evsel__parse_sample(evsel, event, &sample);
87 pr_err("Can't parse sample, err = %d\n", err);
91 tp_flags = perf_evsel__intval(evsel, &sample, "flags");
H A Dsw-clock.c78 struct perf_sample sample; local
83 err = perf_evlist__parse_sample(evlist, event, &sample);
85 pr_debug("Error during parse sample\n");
89 total_periods += sample.period;
H A Dmmap-basic.c13 * sample.id field to map back to its respective perf_evsel instance.
103 struct perf_sample sample; local
111 err = perf_evlist__parse_sample(evlist, event, &sample);
113 pr_err("Can't parse sample, err = %d\n", err);
118 evsel = perf_evlist__id2evsel(evlist, sample.id);
121 " doesn't map to an evsel\n", sample.id);
H A Dparse-no-sample-id-all.c13 struct perf_sample sample; local
29 if (perf_evlist__parse_sample(*pevlist, event, &sample)) {
61 * sample_id_all bit. Without the sample_id_all bit, non-sample events (such as
62 * mmap events) do not have an id sample appended, and consequently logic
/external/okhttp/samples/simple-client/src/main/java/com/squareup/okhttp/sample/
H A DOkHttpContributors.java1 package com.squareup.okhttp.sample;
/external/oprofile/libpp/
H A Dsymbol_sort.h24 sample = first, enumerator in enum:sort_options::sort_order
/external/qemu/android/
H A Daudio-test.c26 short sample[SAMPLE_SIZE]; member in struct:__anon29031
41 AUD_write(ta->voice, ta->sample + ta->pos, avail);
79 ta->sample[nn] = (short)(((nn % (SAMPLE_SIZE/4))*65536/(SAMPLE_SIZE/4)) & 0xffff);
/external/chromium_org/base/test/
H A Dhistogram_tester.cc34 base::HistogramBase::Sample sample,
43 CheckBucketCount(name, sample, expected_count, *samples);
50 base::HistogramBase::Sample sample,
59 CheckBucketCount(name, sample, expected_count, *samples);
91 base::HistogramBase::Sample sample,
94 int actual_count = samples.GetCount(sample);
98 actual_count -= histogram_data->second->GetCount(sample);
103 << ") in the expected bucket (" << sample << "). It has (" << actual_count
32 ExpectUniqueSample( const std::string& name, base::HistogramBase::Sample sample, base::HistogramBase::Count expected_count) const argument
48 ExpectBucketCount( const std::string& name, base::HistogramBase::Sample sample, base::HistogramBase::Count expected_count) const argument
89 CheckBucketCount( const std::string& name, base::HistogramBase::Sample sample, base::HistogramBase::Count expected_count, base::HistogramSamples& samples) const argument
/external/chromium_org/chrome/browser/chromeos/power/
H A Dpower_data_collector.cc53 PowerSupplySample sample; local
54 sample.time = base::Time::Now();
55 sample.external_power = (prop.external_power() !=
57 sample.battery_percent = prop.battery_percent();
58 sample.battery_discharge_rate = prop.battery_discharge_rate();
59 AddSample(&power_supply_data_, sample);
63 SystemResumedSample sample; local
64 sample.time = base::Time::Now();
65 sample.sleep_duration = sleep_duration;
66 AddSample(&system_resumed_data_, sample);
[all...]
H A Dpower_data_collector.h33 // Time when the sample was captured. We use base::Time instead of
38 // True if connected to external power at the time of the sample.
105 // Adds |sample| to |sample_deque|.
107 // |sample|.
109 void AddSample(std::deque<SampleType>* sample_queue, const SampleType& sample) { argument
112 if (sample.time - first.time >
119 sample_queue->push_back(sample);
/external/chromium_org/components/metrics/serialization/
H A Dserialization_utils.cc65 // Badly formatted message was skipped. Treat the badly formatted sample as
66 // an empty sample.
84 const std::string& sample) {
85 if (sample.empty())
89 base::SplitString(sample, '\0', &parts);
153 scoped_ptr<MetricSample> sample = ParseSample(message); local
154 if (sample)
155 metrics->push_back(sample.release());
167 bool SerializationUtils::WriteMetricToFile(const MetricSample& sample, argument
169 if (!sample
83 ParseSample( const std::string& sample) argument
[all...]
H A Dmetric_sample.cc19 int sample,
25 sample_(sample),
77 const int MetricSample::sample() const { function in class:metrics::MetricSample
110 int sample,
115 HISTOGRAM, histogram_name, sample, min, max, bucket_count));
126 int sample, min, max, bucket_count; local
127 if (parts[0].empty() || !base::StringToInt(parts[1], &sample) ||
134 return HistogramSample(parts[0], sample, min, max, bucket_count);
140 int sample) {
142 new MetricSample(SPARSE_HISTOGRAM, histogram_name, sample,
17 MetricSample(MetricSample::SampleType sample_type, const std::string& metric_name, int sample, int min, int max, int bucket_count) argument
108 HistogramSample( const std::string& histogram_name, int sample, int min, int max, int bucket_count) argument
138 SparseHistogramSample( const std::string& histogram_name, int sample) argument
152 int sample; local
160 LinearHistogramSample( const std::string& histogram_name, int sample, int max) argument
172 int sample, max; local
[all...]
H A Dserialization_utils_unittest.cc32 void TestSerialization(MetricSample* sample) { argument
33 std::string serialized(sample->ToString());
38 EXPECT_TRUE(sample->IsEqual(*deserialized.get()));
/external/chromium_org/ppapi/cpp/private/
H A Duma_private.cc38 int64_t sample,
46 sample, min, max, bucket_count);
50 int32_t sample,
58 sample, min, max, bucket_count);
62 int32_t sample,
68 sample, boundary_value);
37 HistogramCustomTimes(const std::string& name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count) argument
49 HistogramCustomCounts(const std::string& name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count) argument
61 HistogramEnumeration(const std::string& name, int32_t sample, int32_t boundary_value) argument
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioResamplerKernel.cpp40 // The buffer size must be large enough to hold up to two extra sample frames for the linear interpolation.
56 // Because we're linearly interpolating between the previous and next sample we need to round up so we include the next sample.
106 double sample = (1.0 - interpolationFactor) * sample1 + interpolationFactor * sample2; local
108 *destination++ = static_cast<float>(sample);
113 // Save the last two sample-frames which will later be used at the beginning of the source buffer the next time around.
/external/chromium_org/v8/src/
H A Dcounters.cc25 void Histogram::AddSample(int sample) { argument
27 isolate()->stats_table()->AddHistogramSample(histogram_, sample);
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
H A DCrawler.java16 package com.squareup.okhttp.sample;

Completed in 3209 milliseconds

1234567891011