HomeSort by relevance Sort by last modified time
    Searched full:sample (Results 1 - 25 of 1680) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/libeffects/testlibs/
AudioCommon.h 28 // Audio sample type.
30 // Accumulator type for coef x sample.
39 // Number of fraction bits for audio sample.
41 // Audio sample with the value of 1.0
48 // Multiply a sample by a coefficient to return an accumulator.
53 // Multiply and accumulate sample by a coefficient to return an accumulator.
58 // Convert a sample-coefficient accumulator to a sample.
66 // Convert a S15 sample to audio_sample_t
71 // Convert a audio_sample_t sample to S15 (no clipping
    [all...]
  /dalvik/dx/tests/001-nop/
info.txt 1 This is a sample no-op test, which does at least serve to verify that the
  /dalvik/tests/001-nop/
info.txt 1 This is a sample no-op test, which does at least serve to verify that the
  /external/oprofile/daemon/
opd_mangling.h 3 * Mangling and opening of sample files
20 * opd_open_sample_file - open a sample file
21 * @param sf sfile to open sample file for
25 * Open image sample file for the sfile, counter
opd_sfile.h 3 * Management of sample files
31 * Each set of sample files (where a set is over the physical counter
33 * descriptions here to find which sample DB file we need to modify.
63 /** opened sample files */
65 /** extended sample files */
67 /** hash table of opened cg sample files */
87 /** sync sample files */
90 /** close sample files */
109 /** Log the sample in a previously located sfile. */
  /frameworks/base/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...]
  /frameworks/base/docs/html/guide/samples/
index.jd 2 page.title=Sample Code
11 href="http://developer.android.com/resources/samples/index.html">List of Sample
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
scache.h 34 /** \page scache Sample Cache
38 * The sample cache provides a simple way of overcoming high network latencies
45 * To create a sample, the normal stream API is used (see \ref streams). The
47 * a sample on the server.
49 * To complete the upload, pa_stream_finish_upload() is called and the sample
55 * To play back a sample, simply call pa_context_play_sample():
61 * "sample2", // Name of my sample
73 * When a sample is no longer needed, it should be removed on the server to
74 * save resources. The sample is deleted using pa_context_remove_sample().
78 * All sample cache related routines *
    [all...]
sample.h 4 /* $Id: sample.h 2157 2008-03-27 23:25:08Z lennart $ */
35 /** \page sample Sample Format Specifications
39 * PulseAudio is capable of handling a multitude of sample formats, rates
42 * \section format_sec Sample Format
44 * PulseAudio supports the following sample formats:
56 * The floating point sample formats have the range from -1 to 1.
58 * The sample formats that are sensitive to endianness have convenience
61 * \section rate_sec Sample Rates
63 * PulseAudio supports any sample rate between 1 Hz and 4 GHz. There is n
    [all...]
  /external/oprofile/libop/
op_sample_file.h 3 * Sample file format
20 /* header of the sample files */
33 /* spu_profile=1 says sample file contains Cell BE SPU profile data */
  /development/samples/
README 4 Make sure to edit development/build/sdk.atree to add the sample to the SDK
  /frameworks/base/voip/jni/rtp/
G711Codec.cpp 51 int sample = samples[i]; local
52 int sign = (sample >> 8) & 0x80;
53 if (sample < 0) {
54 sample = -sample;
56 sample += 132;
57 if (sample > 32767) {
58 sample = 32767;
60 int exponent = gExponents[sample >> 8];
61 int mantissa = (sample >> (exponent + 3)) & 0x0F
74 int sample = (((mantissa << 3) + 132) << exponent) - 132; local
99 int sample = samples[i]; local
121 int sample = (exponent == 0 ? (mantissa << 4) + 8 : local
    [all...]
  /external/esd/include/
esd.h 22 /* default sample rate for the EsounD server */
25 /* maximum length of a stream/sample name */
48 /* sample functionality: cache, free, play, loop, EOL, kill */
49 ESD_PROTO_SAMPLE_CACHE, /* cache a sample in the server */
50 ESD_PROTO_SAMPLE_FREE, /* release a sample in the server */
51 ESD_PROTO_SAMPLE_PLAY, /* play a cached sample */
52 ESD_PROTO_SAMPLE_LOOP, /* loop a cached sample, til eoloop */
53 ESD_PROTO_SAMPLE_STOP, /* stop a looping sample when done */
54 ESD_PROTO_SAMPLE_KILL, /* stop the looping sample immed. */
61 ESD_PROTO_SAMPLE_GETID, /* get the ID for an already-cached sample */
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 22 /* default sample rate for the EsounD server */
25 /* maximum length of a stream/sample name */
48 /* sample functionality: cache, free, play, loop, EOL, kill */
49 ESD_PROTO_SAMPLE_CACHE, /* cache a sample in the server */
50 ESD_PROTO_SAMPLE_FREE, /* release a sample in the server */
51 ESD_PROTO_SAMPLE_PLAY, /* play a cached sample */
52 ESD_PROTO_SAMPLE_LOOP, /* loop a cached sample, til eoloop */
53 ESD_PROTO_SAMPLE_STOP, /* stop a looping sample when done */
54 ESD_PROTO_SAMPLE_KILL, /* stop the looping sample immed. */
61 ESD_PROTO_SAMPLE_GETID, /* get the ID for an already-cached sample */
    [all...]
  /external/chromium/net/socket_stream/
socket_stream_metrics_unittest.cc 47 Histogram::SampleSet sample; local
48 histogram->SnapshotSample(&sample);
49 original.Resize(*histogram); // Ensure |original| size is same as |sample|.
50 sample.Subtract(original); // Cancel the original values.
51 EXPECT_EQ(1, sample.counts(SocketStreamMetrics::PROTOCOL_UNKNOWN));
52 EXPECT_EQ(2, sample.counts(SocketStreamMetrics::PROTOCOL_WEBSOCKET));
53 EXPECT_EQ(3, sample.counts(SocketStreamMetrics::PROTOCOL_WEBSOCKET_SECURE));
80 Histogram::SampleSet sample; local
81 histogram->SnapshotSample(&sample);
83 sample.Subtract(original)
132 Histogram::SampleSet sample; local
    [all...]
  /external/chromium/net/disk_cache/
histogram_macros.h 28 #define UMA_HISTOGRAM_CACHE_ERROR(name, sample) \
29 UMA_HISTOGRAM_ENUMERATION(name, sample, 50)
38 // it (asking backend_->HistogramName), and adding the provided sample.
47 #define CACHE_UMA(type, name, experiment, sample) {\
51 UMA_HISTOGRAM_##type(my_name.data(), sample);\
54 UMA_HISTOGRAM_##type(my_name.data(), sample);\
  /development/samples/BusinessCard/
_index.html 1 <p>A sample application that demonstrates how to launch the built-in contact
2 picker from within an activity. This sample also uses reflection to ensure
  /development/samples/Home/
_index.html 1 <p>This is a sample Home application. The Home application that users use
4 default Home. This is a sample of such an alternative.</p>
  /development/samples/WiktionarySimple/
_index.html 1 <p>A sample application that demonstrates how to create an interactive widget for display on the Android home screen.</p>
8 <p>A more advanced version of this sample is available in the Wiktionary directory.</p>
  /external/icu4c/samples/break/
Makefile 2 # sample code makefile
21 # the actual rules (this is a simple sample)
  /external/icu4c/samples/case/
Makefile 2 # sample code makefile
23 # the actual rules (this is a simple sample)
  /external/icu4c/samples/citer/
Makefile 2 # sample code makefile
21 # the actual rules (this is a simple sample)
  /external/icu4c/samples/coll/
Makefile 2 # sample code makefile
21 # the actual rules (this is a simple sample)
  /external/icu4c/samples/csdet/
Makefile 2 # sample code makefile
21 # the actual rules (this is a simple sample)
  /external/icu4c/samples/datecal/
Makefile 2 # sample code makefile
23 # the actual rules (this is a simple sample)

Completed in 928 milliseconds

1 2 3 4 5 6 7 8 91011>>