HomeSort by relevance Sort by last modified time
    Searched refs:Sample (Results 76 - 100 of 225) sorted by null

1 2 34 5 6 7 8 9

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Ppi/
EdkNt32PpiLib.inf 28 $(EDK_SOURCE)/Sample/Platform/Nt32
  /external/libchrome/base/metrics/
histogram_snapshot_manager.cc 52 std::vector<HistogramBase::Sample> ranges_copy;
55 HistogramBase::Sample* ranges_ptr = &ranges_copy[0];
histogram_base.cc 63 const HistogramBase::Sample HistogramBase::kSampleType_MAX = INT_MAX;
87 Add(static_cast<Sample>(time.InMilliseconds()));
150 void HistogramBase::FindAndRunCallback(HistogramBase::Sample sample) const {
157 cb.Run(sample);
176 Sample sample) const {
179 StringAppendF(&result, "%#x", sample);
181 StringAppendF(&result, "%d", sample);
persistent_histogram_allocator.cc 55 HistogramBase::Sample* ranges_data,
77 // 2 because each "sample count" also requires a backup "logged count"
151 // Get the next sample-record. The iterator will always resume from where
162 // The sample-record could be for any sparse histogram. Add the reference
218 HistogramBase::Sample value) {
329 size_t ranges_bytes = (bucket_count + 1) * sizeof(HistogramBase::Sample);
334 HistogramBase::Sample* ranges_data =
335 memory_allocator_->GetAsObject<HistogramBase::Sample>(
529 HistogramBase::Sample* ranges_data =
530 memory_allocator_->GetAsObject<HistogramBase::Sample>(
    [all...]
  /external/llvm/lib/ProfileData/
SampleProf.cpp 1 //=-- SampleProf.cpp - Sample profiling format support --------------------===//
11 // sample profile data.
34 return "Invalid sample profile data (bad magic)";
36 return "Unsupported sample profile format version";
42 return "Malformed sample profile data";
44 return "Unrecognized sample profile encoding format";
79 /// \brief Print the sample record to the stream \p OS indented by \p Indent.
93 const SampleRecord &Sample) {
94 Sample.print(OS, 0);
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
profile.go 23 Sample []*Sample
50 // Sample corresponds to Profile.Sample
51 type Sample struct {
226 // - len(Profile.Sample[n].value) == len(Profile.value_unit)
227 // - Sample.id has a corresponding Profile.Location
229 // Check that sample values are consistent
231 if sampleLen == 0 && len(p.Sample) != 0 {
232 return fmt.Errorf("missing sample type information"
    [all...]
legacy_profile.go 125 p.Sample = append(p.Sample, &Sample{
138 // referenced by a sample, and remaps the samples to point to the new
144 for _, s := range p.Sample {
258 // a process map if it can recognize one. Each sample will include a
313 // Add final sample to save any leftover data.
325 p.Sample = append(p.Sample,
326 &Sample{
    [all...]
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
profile.go 23 Sample []*Sample
50 // Sample corresponds to Profile.Sample
51 type Sample struct {
226 // - len(Profile.Sample[n].value) == len(Profile.value_unit)
227 // - Sample.id has a corresponding Profile.Location
229 // Check that sample values are consistent
231 if sampleLen == 0 && len(p.Sample) != 0 {
232 return fmt.Errorf("missing sample type information"
    [all...]
legacy_profile.go 125 p.Sample = append(p.Sample, &Sample{
138 // referenced by a sample, and remaps the samples to point to the new
144 for _, s := range p.Sample {
258 // a process map if it can recognize one. Each sample will include a
313 // Add final sample to save any leftover data.
325 p.Sample = append(p.Sample,
326 &Sample{
    [all...]
  /system/extras/multinetwork/
Android.mk 6 # Sample util binaries.
  /system/extras/simpleperf/
report_lib_interface.cpp 35 struct Sample {
87 Sample* GetNextSample(ReportLib* report_lib) EXPORT;
130 Sample* GetNextSample();
138 Sample* GetCurrentSample();
148 Sample current_sample_;
191 Sample* ReportLib::GetNextSample() {
214 Sample* ReportLib::GetCurrentSample() {
294 // Remove duplication with sample ip.
374 Sample* GetNextSample(ReportLib* report_lib) {
  /external/libchrome/base/process/
process_metrics.cc 19 SystemMetrics SystemMetrics::Sample() {
  /external/webrtc/webrtc/base/
bandwidthsmoother.cc 36 bool BandwidthSmoother::Sample(uint32_t sample_time, int bandwidth) {
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 191 sp<Sample> SoundPool::findSample(int sampleID)
197 sp<Sample> SoundPool::findSample_l(int sampleID)
230 sp<Sample> sample = new Sample(sampleID, fd, offset, length); local
231 mSamples.add(sampleID, sample);
232 sample->startLoad();
238 // It theoretically possible that sample loads might decode out-of-order.
263 // is sample ready?
264 sp<Sample> sample(findSample_l(sampleID))
841 sp<Sample> sample; local
896 sp<Sample> sample = mSample; local
    [all...]
  /external/v8/src/profiler/
sampling-heap-profiler.cc 20 // We sample with a Poisson process, with constant average sampling interval.
40 // we sample at rate R, the probability that an allocation of size S will be
88 for (auto sample : samples_) {
89 delete sample;
91 std::set<Sample*> empty;
104 // are taking the sample.
112 Sample* sample = new Sample(size, node, loc, this); local
113 samples_.insert(sample);
120 Sample* sample = data.GetParameter(); local
    [all...]
  /external/deqp/modules/gles3/performance/
es3pDepthTests.cpp 73 struct Sample
515 void logSamples (const vector<Sample>& samples, const string& name, const string& desc);
516 void logGeometry (const tcu::ConstPixelBufferAccess& sample, const glu::ShaderProgram& occluderProg, const glu::ShaderProgram& occludedProg);
517 virtual void logAnalysis (const vector<Sample>& samples) = 0;
524 virtual Sample renderSample (const RenderData& occluder, const RenderData& occluded, int workload) const = 0;
552 vector<Sample> results;
609 Sample sample = renderSample(*occluderData, *occludedData, workload); local
611 sample.workload = workload;
612 sample.order = int(ndx)
652 const Sample& sample = samples[sampleNdx]; local
669 const Sample& sample = samples[sampleNdx]; local
751 const Sample& sample = samples[ndx]; local
799 Sample sample; local
974 Sample sample; local
1057 const Sample& sample = samples[ndx]; local
1700 Sample sample; local
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac_test.go 41 []byte("Sample #1"),
53 []byte("Sample #2"),
75 []byte("Sample #3"),
222 []byte("Sample message for keylen=blocklen"),
234 []byte("Sample message for keylen<blocklen"),
256 []byte("Sample message for keylen=blocklen"),
273 []byte("Sample message for keylen=blocklen"),
286 []byte("Sample message for keylen<blocklen"),
308 []byte("Sample message for keylen=blocklen"),
325 []byte("Sample message for keylen=blocklen")
    [all...]
  /prebuilts/go/linux-x86/src/crypto/hmac/
hmac_test.go 41 []byte("Sample #1"),
53 []byte("Sample #2"),
75 []byte("Sample #3"),
222 []byte("Sample message for keylen=blocklen"),
234 []byte("Sample message for keylen<blocklen"),
256 []byte("Sample message for keylen=blocklen"),
273 []byte("Sample message for keylen=blocklen"),
286 []byte("Sample message for keylen<blocklen"),
308 []byte("Sample message for keylen=blocklen"),
325 []byte("Sample message for keylen=blocklen")
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protopprof.go 83 p.Sample = append(p.Sample, &profile.Sample{
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/protopprof/
protopprof.go 83 p.Sample = append(p.Sample, &profile.Sample{
  /build/make/tools/droiddoc/templates-pdk/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /build/make/tools/droiddoc/templates-sac/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /external/deqp/executor/tools/
xeExtractSampleLists.cpp 21 * \brief Extract sample lists from logs.
63 const xe::ri::Sample& sample = static_cast<const xe::ri::Sample&>(sampleList.samples.getItem(sampleNdx)); local
65 for (int valNdx = 0; valNdx < sample.values.getNumItems(); valNdx++)
67 const xe::ri::SampleValue& value = static_cast<const xe::ri::SampleValue&>(sample.values.getItem(valNdx));
  /external/icu/icu4c/source/samples/
defs.mk 5 # Sample code makefile definitions
  /external/deqp/executor/
xeTestCaseResult.hpp 80 class Sample;
494 class Sample : public Item
497 Sample (void) : Item(TYPE_SAMPLE) {}
498 ~Sample (void) {}

Completed in 656 milliseconds

1 2 34 5 6 7 8 9