Searched refs:sample (Results 1 - 25 of 242) sorted by relevance

12345678910

/external/llvm/projects/sample/lib/
H A DMakefile1 ##===- projects/sample/lib/Makefile ------------------------*- Makefile -*-===##
11 DIRS=sample
/external/llvm/projects/sample/lib/sample/
H A DMakefile1 ##===- projects/sample/lib/sample/Makefile -----------------*- Makefile -*-===##
11 LIBRARYNAME=sample
/external/llvm/projects/sample/tools/
H A DMakefile1 ##===- projects/sample/tools/Makefile ----------------------*- Makefile -*-===##
11 DIRS=sample
/external/llvm/projects/sample/tools/sample/
H A DMakefile1 ##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
15 # We use LIBS because sample is a dynamic library.
17 USEDLIBS = sample.a
/external/chromium/net/disk_cache/
H A Dhistogram_macros.h23 #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
30 counter->Add(sample); \
33 #define CACHE_HISTOGRAM_COUNTS(name, sample) CACHE_HISTOGRAM_CUSTOM_COUNTS( \
34 name, sample, 1, 1000000, 50)
36 #define CACHE_HISTOGRAM_COUNTS_10000(name, sample) \
37 CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 10000, 50)
39 #define CACHE_HISTOGRAM_COUNTS_50000(name, sample) \
40 CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, 1, 50000000, 50)
42 #define CACHE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
49 counter->AddTime(sample); \
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_metrics_module.cc65 int* sample) {
67 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(1, sample));
76 int sample) {
93 counter->Add(sample);
98 int sample; local
99 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(1, &sample));
118 return RecordValue(name, histogram_type, min, max, buckets, sample);
123 int sample; local
124 EXTENSION_FUNCTION_VALIDATE(GetNameAndSample(&name, &sample));
125 return RecordValue(name, Histogram::LINEAR_HISTOGRAM, 1, 101, 102, sample);
64 GetNameAndSample(std::string* name, int* sample) argument
71 RecordValue(const std::string& name, Histogram::ClassType type, int min, int max, size_t buckets, int sample) argument
130 int sample; local
137 int sample; local
144 int sample; local
151 int sample; local
159 int sample; local
167 int sample; local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DMovingAverage.java46 public void add(long sample){ argument
47 sum = sum - samples[index] + sample;
48 samples[index++] = sample;
/external/javassist/sample/evolve/
H A DCannotCreateException.java1 package sample.evolve;
H A DCannotUpdateException.java1 package sample.evolve;
H A DSample.java1 package sample.evolve;
4 * This is a sample class used by Transformer.
/external/oprofile/libpp/
H A Dsymbol_functors.cpp3 * Functors for symbol/sample comparison
26 if (lhs.sample.vma != rhs.sample.vma)
27 return lhs.sample.vma < rhs.sample.vma;
H A Dsymbol_functors.h3 * Functors for symbol/sample comparison
26 return lhs->sample.file_loc < rhs->sample.file_loc;
H A Dsymbol_sort.cpp47 case sort_options::sample:
48 if (lhs.sample.counts[0] < rhs.sample.counts[0])
50 if (lhs.sample.counts[0] > rhs.sample.counts[0])
65 if (lhs.sample.vma < rhs.sample.vma)
67 if (lhs.sample.vma > rhs.sample.vma)
72 file_location const & f1 = lhs.sample
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/sun/
H A DSDL_sunaudio.c57 static Uint8 snd2au(int sample);
400 static Uint8 snd2au(int sample) argument
405 if (sample < 0) {
406 sample = -sample;
412 if (sample < 32) {
413 sample = 0xF0 | (15 - sample / 2);
414 } else if (sample < 96) {
415 sample
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DThrowablesTest.java39 Sample sample = new Sample() {
51 sample.noneDeclared();
55 Sample sample = new Sample() {
68 sample.noneDeclared();
75 Sample sample = new Sample() {
88 sample.noneDeclared();
96 Sample sample = new Sample() {
110 sample.oneDeclared();
115 Sample sample = new Sample() {
128 sample
[all...]
/external/mesa3d/src/pixelflinger2/
H A Dtexture.cpp80 static void PointSample(unsigned sample[4], const unsigned * data, const unsigned index) argument
83 *sample = *(data + index);
86 *sample = *(data + index);
87 *sample |= 0xff000000;
91 sample[0] = *((const unsigned short *)data + index);
92 sample[1] = (sample[0] & 0x7e0) << 5;
93 sample[2] = (sample[0] & 0xf800) << 8;
94 sample[
139 tex2d(unsigned sample[4], const float tex_coord[4], const unsigned sampler) argument
193 texcube(unsigned sample[4], const float tex_coord[4], const unsigned sampler) argument
[all...]
/external/chromium/base/metrics/
H A Dhistogram.h63 #define HISTOGRAM_TIMES(name, sample) HISTOGRAM_CUSTOM_TIMES( \
64 name, sample, base::TimeDelta::FromMilliseconds(1), \
67 #define HISTOGRAM_COUNTS(name, sample) HISTOGRAM_CUSTOM_COUNTS( \
68 name, sample, 1, 1000000, 50)
70 #define HISTOGRAM_COUNTS_100(name, sample) HISTOGRAM_CUSTOM_COUNTS( \
71 name, sample, 1, 100, 50)
73 #define HISTOGRAM_COUNTS_10000(name, sample) HISTOGRAM_CUSTOM_COUNTS( \
74 name, sample, 1, 10000, 50)
76 #define HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) do { \
82 counter->Add(sample); \
318 Sample sample; member in struct:base::Histogram::DescriptionPair
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DInterner.java41 * @throws NullPointerException if {@code sample} is null
43 E intern(E sample); argument
/external/javassist/sample/preproc/
H A DAssistant.java16 package sample.preproc;
27 * @see sample.preproc.Compiler
/external/javassist/sample/vector/
H A DSample.java1 package sample.vector;
H A DTest.j2 A sample program using sample.vector.VectorAssistant
3 and the sample.preproc package.
10 % java sample.preproc.Compiler sample/vector/Test.j
11 % javac sample/vector/Test.java
12 % java sample.vector.Test
14 The first line produces one source file (sample/Test.java) and
15 two class files (sample/vector/intVector.class and
16 sample/vecto
[all...]
/external/chromium/net/socket_stream/
H A Dsocket_stream_metrics_unittest.cc50 Histogram::SampleSet sample; local
51 histogram->SnapshotSample(&sample);
52 original.Resize(*histogram); // Ensure |original| size is same as |sample|.
53 sample.Subtract(original); // Cancel the original values.
54 EXPECT_EQ(1, sample.counts(SocketStreamMetrics::PROTOCOL_UNKNOWN));
55 EXPECT_EQ(2, sample.counts(SocketStreamMetrics::PROTOCOL_WEBSOCKET));
56 EXPECT_EQ(3, sample.counts(SocketStreamMetrics::PROTOCOL_WEBSOCKET_SECURE));
83 Histogram::SampleSet sample; local
84 histogram->SnapshotSample(&sample);
86 sample
135 Histogram::SampleSet sample; local
[all...]
/external/flac/libFLAC/
H A Dmd5.c279 unsigned channel, sample; local
288 for(sample = 0; sample < samples; sample++, buf1_+=2)
289 *buf1_ = (FLAC__int16)signal[1][sample];
293 for(sample = 0; sample < samples; sample++)
294 *buf1_++ = (FLAC__int16)signal[0][sample];
300 for(sample
[all...]
/external/linux-tools-perf/
H A Dbuiltin-inject.c40 struct perf_sample *sample __used,
47 struct perf_sample *sample __used,
55 struct perf_sample *sample,
60 err = perf_event__process_mmap(event, sample, session);
61 perf_event__repipe(event, sample, session);
67 struct perf_sample *sample,
72 err = perf_event__process_task(event, sample, session);
73 perf_event__repipe(event, sample, session);
134 struct perf_sample *sample,
171 perf_event__repipe(event, sample, sessio
54 perf_event__repipe_mmap(union perf_event *event, struct perf_sample *sample, struct perf_session *session) argument
66 perf_event__repipe_task(union perf_event *event, struct perf_sample *sample, struct perf_session *session) argument
133 perf_event__inject_buildid(union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel __used, struct perf_session *session) argument
[all...]
/external/v8/test/cctest/
H A Dtest-log-stack-tracer.cc62 TickSample* sample; member in struct:__anon12939
66 static void InitTraceEnv(TickSample* sample) { argument
67 trace_env.sample = sample;
72 trace_env.sample->fp = fp;
74 trace_env.sample->sp =
75 reinterpret_cast<Address>(trace_env.sample) - 10240;
76 StackTracer::Trace(Isolate::Current(), trace_env.sample);
281 TickSample sample; local
282 InitTraceEnv(&sample);
326 TickSample sample; local
394 TickSample sample; local
[all...]

Completed in 353 milliseconds

12345678910