Searched refs:sample (Results 276 - 300 of 528) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/net/
H A Durl_info.cc239 int sample(int64 value) { function in class:chrome_browser_net::MinMaxAverage
315 queue.sample((it->queue_duration_.InMilliseconds()));
320 HoursMinutesSeconds(when.sample(
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_metrics.cc187 int sample,
189 DCHECK_LT(sample, boundary_value);
199 histogram->Add(sample);
234 // |field_type|. Logs a sample of |metric|, which should be in the range
186 LogUMAHistogramEnumeration(const std::string& name, int sample, int boundary_value) argument
/external/chromium_org/components/metrics/serialization/
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/content/child/
H A Dblink_platform_impl.h96 const char* name, int sample, int min, int max, int bucket_count);
98 const char* name, int sample, int boundary_value);
99 virtual void histogramSparse(const char* name, int sample);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp167 int sample = info[0]->ToInt32()->Value(); local
168 if (sample < boundaryValue)
169 blink::Platform::current()->histogramEnumeration(name, sample, boundaryValue);
/external/chromium_org/third_party/icu/source/common/
H A Duscript_props.cpp28 // 0 = NOT_ENCODED, no sample character, default false script properties.
29 // Bits 20.. 0: sample character
243 icu::UnicodeString sample; local
246 sample.append(sampleChar);
248 return sample;
/external/chromium_org/tools/profile_chrome/third_party/
H A Dperf_to_tracing.py191 # Save sample.
192 sample = PerfSample(stack_frame.stack_id,
199 samples.append(sample)
200 stack_frame.samples.append(sample)
/external/chromium_org/v8/tools/
H A Dll_prof.py51 # -c 10000: write a sample after each 10000 events
668 sample = self.sample_event_body_desc.Read(self.trace,
671 return sample
672 sample.ips = []
673 offset += self.header_size + ctypes.sizeof(sample)
674 for _ in xrange(sample.nr):
675 sample.ips.append(
678 return sample
962 sample = trace_reader.ReadSample(header, offset)
963 code = code_map.Find(sample
[all...]
/external/icu/icu4c/source/common/
H A Duscript_props.cpp28 // 0 = NOT_ENCODED, no sample character, default false script properties.
29 // Bits 20.. 0: sample character
243 icu::UnicodeString sample; local
246 sample.append(sampleChar);
248 return sample;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devent.c515 struct perf_sample *sample __maybe_unused,
523 struct perf_sample *sample __maybe_unused,
549 struct perf_sample *sample __maybe_unused,
557 struct perf_sample *sample __maybe_unused,
572 struct perf_sample *sample __maybe_unused,
580 struct perf_sample *sample __maybe_unused,
614 struct perf_sample *sample __maybe_unused,
714 struct perf_sample *sample)
717 struct thread *thread = machine__findnew_thread(machine, sample->pid,
718 sample
711 perf_event__preprocess_sample(const union perf_event *event, struct machine *machine, struct addr_location *al, struct perf_sample *sample) argument
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s88 LDRSH tmp0, [pBuffer] @ fetch sample
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s88 LDRSH tmp0, [pBuffer] @ fetch sample
98 LDRSH tmp1, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
/external/srec/srec/EventLog/src/
H A Driff.c182 int sign, exponent, mantissa, sample; local
188 sample = exp_lut[exponent] + (mantissa << (exponent + 3));
189 if (sign != 0) sample = -sample;
190 return sample;
196 int sign, achord, astep, delta, sample; local
207 sample = ((2 * astep + 33) * exp_lut[achord]) - 32 * delta;
208 if (sign != 0) sample = -sample;
209 sample
[all...]
/external/aac/libSYS/src/
H A Dwav_file.cpp253 * \nBits sample size in bits to be used for the buffer
334 INT sign, exponent, mantissa, sample ; local
341 sample = exp_lut[exponent] + (mantissa << (exponent + 3)) ;
343 sample = -sample ;
345 return (INT_PCM)sample ;
380 * \param bitsPerSample desired number of bits per audio sample of the resulting WAV file
459 * \param nBufBits size in bits of each audio sample in sampleBuffer
494 /* Adapt sample size */
507 /* Write sample */
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dblock_splitter.cc116 HistogramType* sample) {
124 sample->Add(data + pos, stride);
136 HistogramType sample; local
137 RandomSample(&seed, data, length, stride, &sample);
139 (*vec)[ix].AddHistogram(sample);
112 RandomSample(unsigned int* seed, const DataType* data, size_t length, size_t stride, HistogramType* sample) argument
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoframe.cc114 uint32 format, int w, int h, int dw, int dh, uint8* sample,
117 return Reset(format, w, h, dw, dh, sample, sample_size, pixel_width,
302 uint32 format, int w, int h, int dw, int dh, uint8* sample,
305 if (!Validate(format, w, h, sample, sample_size)) {
336 // The sample's layout in memory is normal, so just correct crop.
347 sample, sample_size, y, y_stride, u, u_stride, v, v_stride, horiz_crop,
113 Init( uint32 format, int w, int h, int dw, int dh, uint8* sample, size_t sample_size, size_t pixel_width, size_t pixel_height, int64 elapsed_time, int64 time_stamp, int rotation) argument
301 Reset( uint32 format, int w, int h, int dw, int dh, uint8* sample, size_t sample_size, size_t pixel_width, size_t pixel_height, int64 elapsed_time, int64 time_stamp, int rotation) argument
/external/chromium_org/v8/src/
H A Dlog.cc593 // Each sample is appended to a circular buffer.
604 void Insert(TickSample* sample) { argument
611 buffer_[head_] = *sample;
625 bool Remove(TickSample* sample) { argument
627 *sample = buffer_[tail_];
671 virtual void Tick(TickSample* sample) { argument
672 if (profiler_) profiler_->Insert(sample);
741 TickSample sample; local
744 Insert(&sample);
752 TickSample sample; local
1519 TickEvent(TickSample* sample, bool overflow) argument
[all...]
/external/iproute2/misc/
H A Drtacct.c311 double sample; local
320 sample = (double)(incr*1000)/interval;
322 kern_db->rate[i] += W*(sample-kern_db->rate[i]);
325 kern_db->rate[i] = sample;
328 kern_db->rate[i] += w*(sample-kern_db->rate[i]);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dcode-reading.c251 struct perf_sample sample; local
255 if (perf_evlist__parse_sample(evlist, event, &sample)) {
260 thread = machine__findnew_thread(machine, sample.pid, sample.pid);
268 return read_object_code(sample.ip, READLEN, cpumode, thread, machine,
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DVectorMath.cpp529 float sample = *sourceP;
530 sum += sample * sample;
576 float sample = *sourceP;
577 sum += sample * sample;
/external/chromium_org/third_party/WebKit/public/platform/
H A DPlatform.h388 // A sample-rate conversion to sampleRate will occur if the file data is at a different sample-rate.
548 virtual void histogramCustomCounts(const char* name, int sample, int min, int max, int bucketCount) { } argument
549 // Enumeration histogram buckets are linear, boundaryValue should be larger than any possible sample value.
550 virtual void histogramEnumeration(const char* name, int sample, int boundaryValue) { } argument
552 virtual void histogramSparse(const char* name, int sample) { } argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoframe.cc238 // Returns whether a sample is valid.
240 const uint8 *sample, size_t sample_size) {
305 if (sample == NULL) {
306 LOG(LS_ERROR) << "NULL sample pointer."
317 four_samples[i] = sample[i];
326 << " sample[0..3]: " << static_cast<int>(four_samples[0])
339 << " sample[0..3]: " << static_cast<int>(four_samples[0])
359 << " sample[0..3]: " << static_cast<int>(four_samples[0])
376 << " sample[0..3]: " << static_cast<int>(four_samples[0])
239 Validate(uint32 fourcc, int w, int h, const uint8 *sample, size_t sample_size) argument
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dandroid_platform_backend.py315 def ParseCStateSample(sample):
317 for cpu in sample:
318 values = sample[cpu].splitlines()
/external/chromium_org/base/metrics/
H A Dhistogram_base.h135 // Snapshot the current complete set of sample data.
155 // Writes information about the current (non-empty) buckets and their sample
156 // counts to |buckets|, the total sample count to |count| and the total sum
168 const std::string GetSimpleAsciiBucketRange(Sample sample) const;
/external/chromium_org/chrome/browser/extensions/api/metrics_private/
H A Dmetrics_private_api.h70 int sample);

Completed in 8337 milliseconds

<<11121314151617181920>>