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

1 2 3 4

  /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-trace/catapult/telemetry/telemetry/timeline/
sample.py 8 class Sample(timeline_event.TimelineEvent):
9 """A Sample represents a sample taken at an instant in time
10 plus parameters associated with that sample.
12 NOTE: The Sample class implements the same interface as
18 super(Sample, self).__init__(
  /external/javassist/sample/evolve/
Sample.java 1 package sample.evolve;
4 * This is a sample class used by Transformer.
6 public class Sample {
  /external/javassist/sample/vector/
Sample.java 1 package sample.vector;
3 public class Sample extends java.util.Vector {
  /external/testng/src/test/java/test/bug90/
Sample.java 6 public class Sample {
  /external/testng/src/test/java/test/inject/
Sample.java 8 public class Sample {
  /external/webrtc/webrtc/base/
bandwidthsmoother.cc 36 bool BandwidthSmoother::Sample(uint32_t sample_time, int bandwidth) {
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 23 public class Sample {
  /external/testng/src/test/java/test/invokedmethodlistener/
Sample.java 7 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/ImageMagick/Magick++/demo/
zoom.cpp 23 << " hermite lanczos mitchell point quadratic sample scale sinc triangle" << endl;
46 Sample
107 else if (algorithm.compare("sample") == 0)
108 resize_algorithm=Sample;
170 case Sample:
171 image.sample(geometry);
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 21 public class Sample {
  /external/libchrome/base/process/
process_metrics.cc 19 SystemMetrics SystemMetrics::Sample() {
  /external/llvm/lib/ProfileData/
SampleProfWriter.cpp 1 //===- SampleProfWriter.cpp - Write LLVM sample profile data --------------===//
10 // This file implements the class that writes LLVM sample profiles. It
52 const SampleRecord &Sample = I->second;
59 OS << Sample.getSamples();
61 for (const auto &J : Sample.getCallTargets())
101 const SampleRecord &Sample = I.second;
102 for (const auto &J : Sample.getCallTargets())
152 const SampleRecord &Sample = I.second;
155 encodeULEB128(Sample.getSamples(), OS);
156 encodeULEB128(Sample.getCallTargets().size(), OS)
    [all...]
  /external/opencv3/modules/videoio/src/cap_winrt/
MFIncludes.hpp 169 MW::ComPtr<IMFSample> Sample;
172 delegate void MediaSampleHandler(MediaSample^ sample)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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;
  /developers/build/prebuilts/gradle/DoneBar/Application/src/main/java/com/example/android/donebar/
MainActivity.java 36 private Sample[] mSamples;
44 mSamples = new Sample[]{
45 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description,
47 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description,
93 private class Sample {
98 private Sample(int titleResId, int descriptionResId, Intent intent) {
104 private Sample(int titleResId, int descriptionResId,
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
MainActivity.java 36 private Sample[] mSamples;
44 mSamples = new Sample[]{
45 new Sample(R.string.navigationdraweractivity_title, R.string.navigationdraweractivity_description,
91 private class Sample {
96 private Sample(int titleResId, int descriptionResId, Intent intent) {
102 private Sample(int titleResId, int descriptionResId,
  /development/samples/browseable/DoneBar/src/com.example.android.donebar/
MainActivity.java 36 private Sample[] mSamples;
44 mSamples = new Sample[]{
45 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description,
47 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description,
93 private class Sample {
98 private Sample(int titleResId, int descriptionResId, Intent intent) {
104 private Sample(int titleResId, int descriptionResId,
  /development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
MainActivity.java 36 private Sample[] mSamples;
44 mSamples = new Sample[]{
45 new Sample(R.string.navigationdraweractivity_title, R.string.navigationdraweractivity_description,
91 private class Sample {
96 private Sample(int titleResId, int descriptionResId, Intent intent) {
102 private Sample(int titleResId, int descriptionResId,
  /external/libchrome/base/metrics/
sample_map.cc 12 typedef HistogramBase::Sample Sample;
20 void SampleMap::Accumulate(Sample value, Count count) {
26 Count SampleMap::GetCount(Sample value) const {
27 std::map<Sample, Count>::const_iterator it = sample_counts_.find(value);
47 Sample min;
48 Sample max;
78 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const {
sample_vector.cc 13 typedef HistogramBase::Sample Sample;
42 void SampleVector::Accumulate(Sample value, Count count) {
50 Count SampleVector::GetCount(Sample value) const {
75 HistogramBase::Sample min;
76 HistogramBase::Sample max;
85 // Sample matches this bucket!
92 // Sample is larger than current bucket range. Try next.
95 // Sample is smaller than current bucket range. We scan buckets from
96 // smallest to largest, so the sample value must be invalid
    [all...]
  /external/opencv3/modules/video/test/
test_kalman.cpp 73 CvMat* Sample = cvCreateMat(Dim,1,CV_32F);
93 Mat _Sample = cvarrToMat(Sample);
95 cvKalmanCorrect(Kalm, Sample);
104 t += Dyn.data.fl[j*Dim+k]*Sample->data.fl[k];
108 cvCopy( Temp, Sample );
115 cvReleaseMat(&Sample);
  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.h 56 typedef uint16_t Sample;
61 static const size_t kNumberBytesPerSample = sizeof(Sample);
222 // Returns true if rec_buffer_ contains one or more sample greater than or

Completed in 786 milliseconds

1 2 3 4