HomeSort by relevance Sort by last modified time
    Searched defs:Sample (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
NonLinComp_D16.c 31 /* Non-linear compression by companding. The function works on a sample by sample */
70 LVM_INT16 Sample; /* Input samples */
71 LVM_INT32 SampleNo; /* Sample index */
84 Sample = *pDataIn;
93 if ((LVM_INT32)Sample != -32768)
95 Temp = (LVM_INT16)((Sample * Sample) >> 15);
96 if(Sample >0)
98 Sample = (LVM_INT16)(Sample + ((Gain * (Sample - Temp)) >> 15))
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_gamepad_thunk.cc 23 void Sample(PP_Instance instance, struct PP_GamepadsSampleData* data) {
24 VLOG(4) << "PPB_Gamepad::Sample()";
30 enter.functions()->Sample(instance, data);
34 &Sample
  /external/javassist/sample/evolve/
Sample.java 1 package sample.evolve;
4 * This is a sample class used by Transformer.
6 public class Sample {
  /external/chromium_org/third_party/libjingle/source/talk/base/
bandwidthsmoother.cc 51 bool BandwidthSmoother::Sample(uint32 sample_time, int bandwidth) {
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
sample.py 7 class Sample(timeline_event.TimelineEvent):
8 ''' A Sample represents a sample taken at an instant in time
9 plus parameters associated with that sample.
11 NOTE: The Sample class implements the same interface as
17 super(Sample, self).__init__(
  /external/javassist/sample/vector/
Sample.java 1 package sample.vector;
3 public class Sample extends java.util.Vector {
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 23 public class Sample {
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
MainActivity.java 28 * The launchpad activity for this sample project. This activity launches other activities that
33 * This class describes an individual sample (the sample title, and the activity class that
34 * demonstrates this sample).
36 private class Sample {
40 public Sample(int titleResId, Class<? extends Activity> activityClass) {
53 * #onCreate(android.os.Bundle)} because the {@link Sample} constructor needs access to {@link
56 private static Sample[] mSamples;
63 mSamples = new Sample[]{
64 new Sample(R.string.title_crossfade, CrossfadeActivity.class)
    [all...]
  /external/chromium_org/ppapi/proxy/
gamepad_resource.cc 65 void GamepadResource::Sample(PP_Instance /* instance */,
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 21 public class Sample {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
EnumTest.java 29 enum Sample {
33 Sample larry = Sample.LARRY;
35 Sample moe = Sample.MOE;
60 assertTrue(0 < Sample.MOE.compareTo(Sample.LARRY));
61 assertEquals(0, Sample.MOE.compareTo(Sample.MOE));
62 assertTrue(0 > Sample.MOE.compareTo(Sample.CURLY))
    [all...]
MockEnum.java 24 enum Sample {
38 Sample larry = Sample.LARRY;
MockEnum2.java 25 enum Sample {
37 Sample samEnum;
39 Sample larry = Sample.LARRY;
  /external/chromium_org/ppapi/c/
ppb_gamepad.h 103 void (*Sample)(PP_Instance instance, struct PP_GamepadsSampleData* data);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.h 56 typedef uint16 Sample;
61 enum{kNumberBytesPerSample = sizeof(Sample)};
224 // Returns true if rec_buffer_ contains one or more sample greater than or
  /developers/samples/android/ui/actionbar/DoneBar/DoneBar/src/main/java/com/example/android/donebar/
SampleDashboardActivity.java 36 private Sample[] mSamples;
43 mSamples = new Sample[]{
44 new Sample(R.string.done_bar_title, R.string.done_bar_description,
46 new Sample(R.string.done_button_title, R.string.done_button_description,
59 // A sample was selected in the dashboard; open it.
73 public Sample getItem(int position) {
79 // The title string ID should be unique per sample, so use it as an ID.
92 // Populate the view's children with real data about this sample.
102 * A simple class that stores information about a sample: a title, description, and
105 * with in order to open the sample
    [all...]
  /external/chromium_org/base/metrics/
histogram_base.h 53 typedef int Sample; // Used for samples.
56 static const Sample kSampleType_MAX; // INT_MAX
99 virtual bool HasConstructionArguments(Sample expected_minimum,
100 Sample expected_maximum,
103 virtual void Add(Sample value) = 0;
105 // 2 convenient functions that call Add(Sample).
121 // Snapshot the current complete set of sample data.
141 // Writes information about the current (non-empty) buckets and their sample
142 // counts to |buckets|, the total sample count to |count| and the total sum
154 const std::string GetSimpleAsciiBucketRange(Sample sample) const
    [all...]
sample_map.cc 14 typedef HistogramBase::Sample Sample;
20 void SampleMap::Accumulate(Sample value, Count count) {
26 Count SampleMap::GetCount(Sample value) const {
27 map<Sample, Count>::const_iterator it = sample_counts_.find(value);
35 for (map<Sample, Count>::const_iterator it = sample_counts_.begin();
49 Sample min;
50 Sample max;
76 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const
    [all...]
sample_vector.cc 15 typedef HistogramBase::Sample Sample;
25 void SampleVector::Accumulate(Sample value, Count count) {
32 Count SampleVector::GetCount(Sample value) const {
57 HistogramBase::Sample min;
58 HistogramBase::Sample max;
67 // Sample matches this bucket!
71 // Sample is larger than current bucket range. Try next.
74 // Sample is smaller than current bucket range. We scan buckets from
75 // smallest to largest, so the sample value must be invalid
    [all...]
sparse_histogram.cc 19 typedef HistogramBase::Sample Sample;
43 Sample expected_minimum,
44 Sample expected_maximum,
50 void SparseHistogram::Add(Sample value) {
127 // Determine which bucket has the largest sample count so that we can
128 // normalize the graphical bar-width relative to that sample count.
130 Sample largest_sample = 0;
134 Sample min;
135 Sample max
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 57 'mac': [IProfiler, Sample, GooglePProf],
176 class Sample(SingleFileOutputProfiler):
177 name = 'sample'
180 super(Sample, self).__init__(host, executable_path, output_dir, "txt", identifier)
184 cmd = ["sample", pid, "-mayDie", "-file", self._output_path]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
InputSmoother.java 20 * out the data using a moving average over this window size. A sample window size n will
28 * Only consecutive samples will factor into the rolling average sample window.
29 * Any samples that are older than this maximum are continually purged from the sample window,
37 private final Deque<Sample> mRecentSamples = Lists.newLinkedList();
40 private static class Sample {
50 Sample sample; local
53 final Sample last = mRecentSamples.peekLast();
59 sample = mRecentSamples.removeFirst();
61 sample = new Sample()
    [all...]
  /external/chromium/chrome/browser/
process_info_snapshot_mac.cc 345 bool ProcessInfoSnapshot::Sample(std::vector<base::ProcessId> pid_list) {
  /external/chromium/chrome/common/extensions/docs/build/
build.py 44 from directory import Sample
  /external/chromium_org/chrome/browser/
process_info_snapshot_mac.cc 271 bool ProcessInfoSnapshot::Sample(std::vector<base::ProcessId> pid_list) {

Completed in 363 milliseconds

1 2