/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/llvm/projects/sample/tools/sample/ |
Makefile | 1 ##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===## 11 TOOLNAME=Sample 15 # We use LIBS because sample is a dynamic library. 17 USEDLIBS = sample.a
|
/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
|
ppb_gamepad_api.h | 20 virtual void Sample(PP_Instance instance,
|
/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;
|
/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/third_party/libjingle/source/talk/base/ |
bandwidthsmoother_unittest.cc | 51 EXPECT_FALSE(mon.Sample(9, bandwidth_sample)); 52 EXPECT_TRUE(mon.Sample(10, bandwidth_sample)); 57 EXPECT_TRUE(mon.Sample(20, bandwidth_sample)); 70 EXPECT_FALSE(mon.Sample(9, kBandwidthSample)); 71 EXPECT_TRUE(mon.Sample(10, kBandwidthSample)); 84 EXPECT_FALSE(mon.Sample(1, kBandwidthSample)); 86 EXPECT_TRUE(mon.Sample(2, kBandwidthSample)); 99 EXPECT_FALSE(mon.Sample(1, kBandwidthSample)); 100 EXPECT_FALSE(mon.Sample(2, kBandwidthSample)); 101 EXPECT_FALSE(mon.Sample(3, kBandwidthSample)) [all...] |
/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/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/chromium_org/base/metrics/ |
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_map.h | 26 virtual void Accumulate(HistogramBase::Sample value, 29 HistogramBase::Sample value) const OVERRIDE; 39 std::map<HistogramBase::Sample, HistogramBase::Count> sample_counts_; 46 typedef std::map<HistogramBase::Sample, HistogramBase::Count> 55 virtual void Get(HistogramBase::Sample* min, 56 HistogramBase::Sample* max,
|
sample_vector.h | 29 virtual void Accumulate(HistogramBase::Sample value, 32 HistogramBase::Sample value) const OVERRIDE; 44 virtual size_t GetBucketIndex(HistogramBase::Sample value) const; 66 virtual void Get(HistogramBase::Sample* min, 67 HistogramBase::Sample* max,
|
bucket_ranges.h | 31 typedef std::vector<HistogramBase::Sample> Ranges; 37 HistogramBase::Sample range(size_t i) const { return ranges_[i]; } 38 void set_range(size_t i, HistogramBase::Sample value); 59 // put a sample into. For each index, show the smallest sample that can be
|
histogram_base.h | 51 typedef int Sample; // Used for samples. 54 static const Sample kSampleType_MAX; // INT_MAX 97 virtual bool HasConstructionArguments(Sample expected_minimum, 98 Sample expected_maximum, 101 virtual void Add(Sample value) = 0; 103 // 2 convenient functions that call Add(Sample). 119 // Snapshot the current complete set of sample data. 139 // Writes information about the current (non-empty) buckets and their sample 140 // counts to |buckets|, the total sample count to |count| and the total sum 152 const std::string GetSimpleAsciiBucketRange(Sample sample) const [all...] |
histogram_samples.cc | 20 virtual void Get(HistogramBase::Sample* min, 21 HistogramBase::Sample* max, 26 HistogramBase::Sample min_; 27 HistogramBase::Sample max_; 50 void SampleCountPickleIterator::Get(HistogramBase::Sample* min, 51 HistogramBase::Sample* max, 96 HistogramBase::Sample min; 97 HistogramBase::Sample max;
|
/external/guava/guava-tests/test/com/google/common/base/ |
ThrowablesTest.java | 39 Sample sample = new Sample() { local 51 sample.noneDeclared(); 55 Sample sample = new Sample() { local 68 sample.noneDeclared(); 75 Sample sample = new Sample() local 96 Sample sample = new Sample() { local 115 Sample sample = new Sample() { local 135 Sample sample = new Sample() { local 156 Sample sample = new Sample() { local 177 Sample sample = new Sample() { local 196 Sample sample = new Sample() { local 219 Sample sample = new Sample() { local 242 Sample sample = new Sample() { local 271 Sample sample = new Sample() { local 286 Sample sample = new Sample() { local 305 Sample sample = new Sample() { local 324 Sample sample = new Sample() { local 345 Sample sample = new Sample() { local 361 Sample sample = new Sample() { local 382 Sample sample = new Sample() { local 403 Sample sample = new Sample() { local [all...] |
/external/javassist/sample/vector/ |
Sample.java | 1 package sample.vector;
3 public class Sample extends java.util.Vector {
|
/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/net/disk_cache/ |
stats_histogram.h | 33 explicit StatsHistogram(const std::string& name, Sample minimum, 34 Sample maximum, size_t bucket_count) 43 virtual Sample ranges(size_t i) const; 45 virtual void SnapshotSample(SampleSet* sample) const;
|
/external/chromium_org/chrome/test/base/ |
uma_histogram_helper.h | 26 base::HistogramBase::Sample sample, 37 base::HistogramBase::Sample sample,
|
/external/chromium_org/net/disk_cache/ |
stats_histogram.h | 33 Sample minimum, 34 Sample maximum,
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/ |
d3d11tex.hlsl | 57 float4 a0 = tex0.Sample(samp0, input.texcoord);
58 float4 a1 = tex0.Sample(samp1, input.texcoord);
61 float4 b0 = tex1.Sample(samp0, input.texcoord);
62 float4 b1 = tex1.Sample(samp1, input.texcoord);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/ |
d3d11tex.hlsl | 57 float4 a0 = tex0.Sample(samp0, input.texcoord);
58 float4 a1 = tex0.Sample(samp1, input.texcoord);
61 float4 b0 = tex1.Sample(samp0, input.texcoord);
62 float4 b1 = tex1.Sample(samp1, input.texcoord);
|