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

1 23 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiResourcesSampleDxe/
HiiResourcesSampleDxe.inf 2 # This is a sample HII resource driver.
43 Sample.vfr
  /packages/services/Telephony/testapps/EmbmsServiceTestApp/
Android.mk 3 # Build the Sample Embms Services
  /packages/services/Telephony/testapps/EmbmsTestDownloadApp/
Android.mk 3 # Build the Sample Embms Download frontend
  /external/skia/tools/skpbench/
skpbench.cpp 45 DEFINE_int32(sampleMs, 50, "minimum duration of a sample");
60 struct Sample {
63 Sample() : fFrames(0), fDuration(0) {}
103 const SkPicture* skp, std::vector<Sample>* samples) {
105 const Sample::duration sampleDuration = std::chrono::milliseconds(FLAGS_sampleMs);
120 Sample& sample = samples->back(); local
127 sample.fDuration = now - sampleStart;
128 ++sample.fFrames;
129 } while (sample.fDuration < sampleDuration)
160 Sample& sample = samples->back(); local
    [all...]
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
filter.go 13 // Returns true is the corresponding regexp matched at least one sample.
34 s := make([]*Sample, 0, len(p.Sample))
35 for _, sample := range p.Sample {
36 if focusedAndNotIgnored(sample.Location, focusOrIgnore) {
39 for _, loc := range sample.Location {
45 // Remove sample with no locations (by not adding it to s).
48 sample.Location = locs
50 s = append(s, sample)
    [all...]
encode.go 29 for _, s := range p.Sample {
112 for _, x := range p.Sample {
144 // repeated Sample sample = 2
146 x := new(Sample)
148 pp.Sample = append(pp.Sample, x)
244 for _, s := range p.Sample {
302 func (p *Sample) decoder() []decoder {
306 func (p *Sample) encode(b *buffer)
    [all...]
prune.go 15 // matching keepRx. If the root node of a Sample matches, the sample
52 // Prune locs from each Sample
53 for _, sample := range p.Sample {
58 for i := len(sample.Location) - 1; i >= 0; i-- {
59 id := sample.Location[i].ID
68 sample.Location = sample.Location[i+1:]
72 sample.Location = sample.Location[i:
    [all...]
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
filter.go 13 // Returns true is the corresponding regexp matched at least one sample.
34 s := make([]*Sample, 0, len(p.Sample))
35 for _, sample := range p.Sample {
36 if focusedAndNotIgnored(sample.Location, focusOrIgnore) {
39 for _, loc := range sample.Location {
45 // Remove sample with no locations (by not adding it to s).
48 sample.Location = locs
50 s = append(s, sample)
    [all...]
encode.go 29 for _, s := range p.Sample {
112 for _, x := range p.Sample {
144 // repeated Sample sample = 2
146 x := new(Sample)
148 pp.Sample = append(pp.Sample, x)
244 for _, s := range p.Sample {
302 func (p *Sample) decoder() []decoder {
306 func (p *Sample) encode(b *buffer)
    [all...]
prune.go 15 // matching keepRx. If the root node of a Sample matches, the sample
52 // Prune locs from each Sample
53 for _, sample := range p.Sample {
58 for i := len(sample.Location) - 1; i >= 0; i-- {
59 id := sample.Location[i].ID
68 sample.Location = sample.Location[i+1:]
72 sample.Location = sample.Location[i:
    [all...]
  /external/libchrome/base/metrics/
bucket_ranges.cc 75 // a nice hash, that tends to depend on all the bits of the sample, with very
77 static uint32_t Crc32(uint32_t sum, HistogramBase::Sample value) {
83 HistogramBase::Sample range;
84 unsigned char bytes[sizeof(HistogramBase::Sample)];
94 HistogramBase::Sample range;
95 uint16_t ints[sizeof(HistogramBase::Sample) / 2];
97 DCHECK_EQ(sizeof(HistogramBase::Sample), sizeof(converter));
112 void BucketRanges::set_range(size_t i, HistogramBase::Sample value) {
persistent_sample_map_unittest.cc 165 HistogramBase::Sample min;
166 HistogramBase::Sample max;
215 HistogramBase::Sample min;
216 HistogramBase::Sample max;
248 HistogramBase::Sample min;
249 HistogramBase::Sample max;
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 21 public class Sample {
  /external/testng/src/test/java/test/inject/
InjectTestContextTest.java 18 tng.setTestClasses(new Class[] { Sample.class });
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protopprof_test.go 21 // Mock the sample header produced by cpu profiler. Write a sample
40 // Helper function to initialize cpu profile with two sample values.
43 // Mock the sample header produced by cpu profiler. Write a sample
92 !reflect.DeepEqual(p.SampleType, expectedSampleType) || p.Sample != nil {
97 func getSampleAsString(sample []*profile.Sample) string {
99 for _, x := range sample {
106 str += fmt.Sprintf("Sample:%v\n", *x
    [all...]
protomemprofile.go 48 p.Sample = append(p.Sample, &profile.Sample{
59 // scaleHeapSample adjusts the data from a heap Sample to
63 // each collected sample by its probability of appearing in the
66 // rate R. The probability of a sample of size S to appear in that
protomemprofile_test.go 55 // Expected PeriodType, SampleType and Sample.
64 expectedSample := []*profile.Sample{
87 t.Fatalf("Sample types do not match")
89 if !reflect.DeepEqual(p.Sample, expectedSample) {
91 getSampleAsString(p.Sample))
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/protopprof/
protopprof_test.go 21 // Mock the sample header produced by cpu profiler. Write a sample
40 // Helper function to initialize cpu profile with two sample values.
43 // Mock the sample header produced by cpu profiler. Write a sample
92 !reflect.DeepEqual(p.SampleType, expectedSampleType) || p.Sample != nil {
97 func getSampleAsString(sample []*profile.Sample) string {
99 for _, x := range sample {
106 str += fmt.Sprintf("Sample:%v\n", *x
    [all...]
protomemprofile.go 48 p.Sample = append(p.Sample, &profile.Sample{
59 // scaleHeapSample adjusts the data from a heap Sample to
63 // each collected sample by its probability of appearing in the
66 // rate R. The probability of a sample of size S to appear in that
protomemprofile_test.go 55 // Expected PeriodType, SampleType and Sample.
64 expectedSample := []*profile.Sample{
87 t.Fatalf("Sample types do not match")
89 if !reflect.DeepEqual(p.Sample, expectedSample) {
91 getSampleAsString(p.Sample))
  /external/flatbuffers/samples/
csharp_sample.sh 42 echo Compiling and running the C# sample.
44 # Compile and execute the sample.
45 mcs SampleBinary.cs MyGame/Sample/*.cs ../net/FlatBuffers/*.cs
  /frameworks/base/docs/
__DEPRECATED__DO_NOT_EDIT__.txt 13 - Sample code documentation is not maintained in Piper, but is published from
  /frameworks/base/docs/html/
__DEPRECATED__DO_NOT_EDIT__.txt 13 - Sample code documentation is not maintained in Piper, but is published from
  /external/deqp/modules/gles3/functional/
es3fFlushFinishTests.cpp 128 struct Sample
152 void analyzeResults (const std::vector<Sample>& samples, const CalibrationParams& calibrationParams);
230 tcu::TestLog& operator<< (tcu::TestLog& log, const FlushFinishCase::Sample& sample)
232 log << TestLog::Message << sample.numDrawCalls << " calls:\t" << sample.submitTime << " us submit,\t" << sample.waitTime << " us wait,\t" << sample.readPixelsTime << " us read" << TestLog::EndMessage;
294 // Step 1: find iteration count that results in rougly 1/10th of target maximum sample duration.
439 bool operator() (const FlushFinishCase::Sample& a, const FlushFinishCase::Sample& b) const { return a.numDrawCalls < b.numDrawCalls;
    [all...]
  /external/ImageMagick/Magick++/demo/
zoom.cpp 23 << " hermite lanczos mitchell point quadratic sample scale sinc triangle" << endl;
46 Sample
107 else if (algorithm.compare("sample") == 0)
108 resize_algorithm=Sample;
170 case Sample:
171 image.sample(geometry);

Completed in 727 milliseconds

1 23 4 5 6 7 8 9