Home
last modified time | relevance | path

Searched defs:Sample (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/aosp_15_r20/external/perfetto/src/trace_processor/importers/perf/
H A Dsample.h34 struct Sample { struct
35 struct Frame {
40 struct PidTid {
45 struct ReadGroup {
50 int64_t trace_ts;
51 protos::pbzero::Profiling::CpuMode cpu_mode;
52 RefPtr<PerfSession> perf_session;
53 RefPtr<PerfEventAttr> attr;
55 std::optional<uint64_t> ip;
56 std::optional<PidTid> pid_tid;
[all …]
/aosp_15_r20/system/extras/simpleperf/scripts/
H A Ddebug_unwind_reporter.py51 class Sample: class
83 def match(self, sample: Sample) -> bool:
88 def match(self, sample: Sample) -> bool:
99 def match(self, sample: Sample) -> bool:
107 def match(self, sample: Sample) -> bool:
115 def match(self, sample: Sample) -> bool:
123 def match(self, sample: Sample) -> bool:
171 def filter_sample(self, sample: Sample) -> bool:
183 def report(self, sample: Sample):
191 def report(self, sample: Sample):
[all …]
/aosp_15_r20/external/webrtc/video/
H A Dvideo_analyzer.h122 struct Sample { struct
132 int dropped;
133 int64_t input_time_ms;
134 int64_t send_time_ms;
135 int64_t recv_time_ms;
136 int64_t render_time_ms;
137 size_t encoded_frame_size;
138 double psnr;
139 double ssim;
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
Dprofile.go37 Sample []*Sample member
72 type Sample struct { struct
73 Location []*Location
74 Value []int64
82 Label map[string][]string
85 NumLabel map[string][]int64
91 NumUnit map[string][]string
93 locationIDX []uint64
94 labelX []label
656 func (s *Sample) string() string {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/profile/
Dprofile.go23 Sample []*Sample member
54 type Sample struct { struct
55 Location []*Location
56 Value []int64
57 Label map[string][]string
58 NumLabel map[string][]int64
59 NumUnit map[string][]string
61 locationIDX []uint64
62 labelX []Label
/aosp_15_r20/external/pytorch/torch/_inductor/
H A Dremote_cache.py24 Sample: TypeAlias = Sample_ variable
26 Sample: TypeAlias = Type[object] # type: ignore[misc,no-redef] variable
104 def _decode(self, data: _U, sample: Optional[Sample]) -> _T:
107 def _encode(self, value: _T, sample: Optional[Sample]) -> Any: # returns _U
110 def _get(self, key: str, sample: Optional[Sample]) -> Optional[_T]:
115 def _put(self, key: str, value: _T, sample: Optional[Sample]) -> None:
122 def _log_sample(self, sample: Optional[Sample]) -> None:
/aosp_15_r20/external/skia/tools/skpbench/
H A Dskpbench.cpp97 struct Sample { struct
100 Sample() : fFrames(0), fDuration(0) {} in Sample() argument
101 double seconds() const { return std::chrono::duration<double>(fDuration).count(); } in seconds()
102 double ms() const { return std::chrono::duration<double, std::milli>(fDuration).count(); } in ms()
103 double value() const { return FLAGS_fps ? fFrames / this->seconds() : this->ms() / fFrames; } in value()
104 static const char* metric() { return FLAGS_fps ? "fps" : "ms"; } in metric()
106 int fFrames;
107 duration fDuration;
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/
H A Dparse_number_test.cpp31 TEST(ParseNarrowSignedIntegers, Sample) { in TEST() argument
59 TEST(ParseNarrowUnsignedIntegers, Sample) { in TEST() argument
79 TEST(ParseSignedIntegers, Sample) { in TEST() argument
112 TEST(ParseUnsignedIntegers, Sample) { in TEST() argument
135 TEST(ParseWideSignedIntegers, Sample) { in TEST() argument
150 TEST(ParseWideUnsignedIntegers, Sample) { in TEST() argument
164 TEST(ParseFloat, Sample) { in TEST() argument
204 TEST(ParseDouble, Sample) { in TEST() argument
726 TEST(ParseAndEncodeFloat, Sample) { in TEST() argument
786 TEST(ParseAndEncodeDouble, Sample) { in TEST() argument
[all …]
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/
Dparse_number_test.cpp31 TEST(ParseNarrowSignedIntegers, Sample) { in TEST() argument
59 TEST(ParseNarrowUnsignedIntegers, Sample) { in TEST() argument
79 TEST(ParseSignedIntegers, Sample) { in TEST() argument
112 TEST(ParseUnsignedIntegers, Sample) { in TEST() argument
135 TEST(ParseWideSignedIntegers, Sample) { in TEST() argument
150 TEST(ParseWideUnsignedIntegers, Sample) { in TEST() argument
164 TEST(ParseFloat, Sample) { in TEST() argument
204 TEST(ParseDouble, Sample) { in TEST() argument
726 TEST(ParseAndEncodeFloat, Sample) { in TEST() argument
786 TEST(ParseAndEncodeDouble, Sample) { in TEST() argument
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/
H A Dparse_number_test.cpp31 TEST(ParseNarrowSignedIntegers, Sample) { in TEST() argument
59 TEST(ParseNarrowUnsignedIntegers, Sample) { in TEST() argument
79 TEST(ParseSignedIntegers, Sample) { in TEST() argument
112 TEST(ParseUnsignedIntegers, Sample) { in TEST() argument
135 TEST(ParseWideSignedIntegers, Sample) { in TEST() argument
150 TEST(ParseWideUnsignedIntegers, Sample) { in TEST() argument
164 TEST(ParseFloat, Sample) { in TEST() argument
204 TEST(ParseDouble, Sample) { in TEST() argument
726 TEST(ParseAndEncodeFloat, Sample) { in TEST() argument
786 TEST(ParseAndEncodeDouble, Sample) { in TEST() argument
[all …]
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
H A Dwindowed_filter.h149 struct QUICHE_EXPORT Sample { struct
152 Sample(T init_sample, TimeT init_time) in Sample() argument
/aosp_15_r20/external/pytorch/torch/csrc/lazy/core/
H A Dmetrics.h21 struct TORCH_API Sample { struct
23 Sample(int64_t timestamp_ns, double value) in Sample() argument
44 size_t TotalSamples() const; argument
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/metrics/
Dsample.go13 type Sample struct { struct
18 Name string
21 Value Value
45 func Read(m []Sample) {
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/profiling/internal/
Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/external/abseil-cpp/absl/profiling/internal/
H A Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/profiling/internal/
H A Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/frameworks/native/include/input/
H A DResampler.h202 struct Sample { struct
220 RingBuffer<Sample> mLatestSamples{/*capacity=*/2}; argument
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/profiling/internal/
H A Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/profiling/internal/
H A Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/profiling/internal/
H A Dsample_recorder.h43 struct Sample { struct
53 // `SetHashtablezMaxSamples()`. argument
/aosp_15_r20/system/extras/simpleperf/
H A Dreport_lib_interface.cpp39 struct Sample { struct
40 uint64_t ip;
41 uint32_t pid;
42 uint32_t tid;
43 const char* thread_comm;
44 uint64_t time;
45 uint32_t in_kernel;
46 uint32_t cpu;
47 uint64_t period;
/aosp_15_r20/external/webrtc/api/test/metrics/
H A Dmetric.h49 struct Sample { struct
52 webrtc::Timestamp timestamp;
53 double value;
55 std::map<std::string, std::string> sample_metadata;
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/
H A Drange_sampler.cc152 int64_t UniformSampler::Sample(random::SimplePhilox* rnd) const { in Sample() function in tensorflow::UniformSampler
161 int64_t LogUniformSampler::Sample(random::SimplePhilox* rnd) const { in Sample() function in tensorflow::LogUniformSampler
186 int64_t ThreadUnsafeUnigramSampler::Sample(random::SimplePhilox* rnd) const { in Sample() function in tensorflow::ThreadUnsafeUnigramSampler
209 int64_t UnigramSampler::Sample(random::SimplePhilox* rnd) const { in Sample() function in tensorflow::UnigramSampler
275 int64_t FixedUnigramSampler::Sample(random::SimplePhilox* rnd) const { in Sample() function in tensorflow::FixedUnigramSampler
/aosp_15_r20/external/webrtc/modules/video_coding/timing/
H A Dcodec_timer.h33 struct Sample { struct
42 std::queue<Sample> history_; argument
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/src/stats/univariate/
Dsample.rs17 pub struct Sample<A>([A]); struct
20 impl<A> Sample<A> implementation
268 impl<A> ops::Deref for Sample<A> { implementation

12345678910>>...18