/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/base/process/ |
process_metrics.cc | 15 SystemMetrics SystemMetrics::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);
|
/developers/build/prebuilts/gradle/DoneBar/DoneBarSample/src/main/java/com/example/android/donebar/ |
MainActivity.java | 38 private Sample[] mSamples; 46 mSamples = new Sample[]{ 47 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description, 49 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description, 95 private class Sample { 100 private Sample(int titleResId, int descriptionResId, Intent intent) { 106 private Sample(int titleResId, int descriptionResId,
|
/development/samples/browseable/DoneBar/src/com.example.android.donebar/ |
MainActivity.java | 38 private Sample[] mSamples; 46 mSamples = new Sample[]{ 47 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description, 49 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description, 95 private class Sample { 100 private Sample(int titleResId, int descriptionResId, Intent intent) { 106 private Sample(int titleResId, int descriptionResId,
|
/external/chromium_org/base/metrics/ |
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...] |
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) { 33 Count SampleVector::GetCount(Sample value) const { 58 HistogramBase::Sample min; 59 HistogramBase::Sample max; 68 // Sample matches this bucket! 72 // Sample is larger than current bucket range. Try next. 75 // Sample is smaller than current bucket range. We scan buckets from 76 // smallest to largest, so the sample value must be invalid [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]
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/ |
fakeaudiocapturemodule.h | 57 typedef uint16 Sample; 62 enum{kNumberBytesPerSample = sizeof(Sample)}; 226 // Returns true if rec_buffer_ contains one or more sample greater than or
|
/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
|