/external/chromium_org/chrome/common/extensions/docs/static/js/ |
samples.js | 7 var samples = document.getElementsByClassName('sample'); variable 13 for (var i = 0; i < samples.length; ++i) { 14 var sample = samples[i];
|
/external/chromium_org/remoting/host/ |
audio_silence_detector.h | 25 bool IsSilence(const int16* samples, size_t samples_count); 31 // Silence period threshold in samples. Silence intervals shorter than this 36 // Lengths of the current silence period in samples.
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/ |
interpolate_samples.c | 23 int16_t *interpSamples, /* (o) The interpolated samples */ 30 /* Calculate the 20 vectors of interpolated samples (4 samples each)
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
pitch_estimator.h | 23 void WebRtcIsacfix_PitchAnalysis(const int16_t *in, /* PITCH_FRAME_LEN samples */ 24 int16_t *outQ0, /* PITCH_FRAME_LEN+QLOOKAHEAD samples */ 58 int16_t N, /* number of input samples */
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
pitch_estimator.h | 25 void WebRtcIsac_PitchAnalysis(const double *in, /* PITCH_FRAME_LEN samples */ 26 double *out, /* PITCH_FRAME_LEN+QLOOKAHEAD samples */ 68 int N, /* number of input samples */
|
filterbanks.c | 53 in: a length FRAMESAMPLES array of input samples 55 and lookahead samples from the previous encoding 58 LP: a FRAMESAMPLES_HALF array of low-pass filtered samples that 59 have been phase equalized. The first QLOOKAHEAD samples are 60 based on the samples in the two prefiltdata->INLABUFx arrays 62 The remaining FRAMESAMPLES_HALF-QLOOKAHEAD samples are based 63 on the first FRAMESAMPLES_HALF-QLOOKAHEAD samples of the input 65 HP: a FRAMESAMPLES_HALF array of high-pass filtered samples that 66 have been phase equalized. The first QLOOKAHEAD samples are 67 based on the samples in the two prefiltdata->INLABUFx array [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
AbstractMultisetTester.java | 36 getSubjectGenerator().create(samples.e0, samples.e0, samples.e0);
|
MultisetReadsTester.java | 45 0, getMultiset().count(samples.e3)); 51 1, getMultiset().count(samples.e0)); 58 3, getMultiset().count(samples.e0)); 74 getMultiset().elementSet().contains(samples.e0)); 81 Multisets.immutableEntry(samples.e0, 1))); 87 Multisets.immutableEntry(samples.e3, 0))); 92 getMultiset().entrySet().contains(samples.e0)); 109 1 ^ samples.e0.hashCode(), getMultiset().entrySet().hashCode()); 119 other.add(samples.e0); 127 other.remove(samples.e0) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
MapPutAllTester.java | 53 containsNullKey = singletonList(entry(null, samples.e3.getValue())); 54 containsNullValue = singletonList(entry(samples.e3.getKey(), null)); 75 expectAdded(samples.e3, samples.e4); 86 expectMissing(samples.e3, samples.e4); 92 putAll(MinimalCollection.of(samples.e3, samples.e0)); 93 expectAdded(samples.e3); 100 putAll(MinimalCollection.of(samples.e3, samples.e0)) [all...] |
/external/opencv/ml/src/ |
mltestset.cpp | 59 cvCreateTestSet( int type, CvMat** samples, 73 if( samples ) 74 *samples = NULL; 81 if( !samples ) 82 CV_ERROR( CV_StsNullPtr, "samples parameter must be not NULL" ); 105 CV_CALL( *samples = cvCreateMat( num_samples, num_features, CV_32FC1 ) ); 114 CV_CALL( cvRandMVNormal( mean, cov, *samples ) ); 116 /* calculate distances from the origin to the samples and put them 120 for( i = 0; i < (*samples)->rows; ++i ) 122 CV_CALL( cvGetRow( *samples, &sample, i )) [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
pitch_estimator.h | 23 void WebRtcIsacfix_PitchAnalysis(const WebRtc_Word16 *in, /* PITCH_FRAME_LEN samples */ 24 WebRtc_Word16 *outQ0, /* PITCH_FRAME_LEN+QLOOKAHEAD samples */ 58 WebRtc_Word16 N, /* number of input samples */
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
pitch_estimator.h | 25 void WebRtcIsac_PitchAnalysis(const double *in, /* PITCH_FRAME_LEN samples */ 26 double *out, /* PITCH_FRAME_LEN+QLOOKAHEAD samples */ 68 int N, /* number of input samples */
|
filterbanks.c | 53 in: a length FRAMESAMPLES array of input samples 55 and lookahead samples from the previous encoding 58 LP: a FRAMESAMPLES_HALF array of low-pass filtered samples that 59 have been phase equalized. The first QLOOKAHEAD samples are 60 based on the samples in the two prefiltdata->INLABUFx arrays 62 The remaining FRAMESAMPLES_HALF-QLOOKAHEAD samples are based 63 on the first FRAMESAMPLES_HALF-QLOOKAHEAD samples of the input 65 HP: a FRAMESAMPLES_HALF array of high-pass filtered samples that 66 have been phase equalized. The first QLOOKAHEAD samples are 67 based on the samples in the two prefiltdata->INLABUFx array [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioFormatAdapter.h | 28 // An adapter for an audio processor working on audio_sample_t samples with a 44 // bufSize The maximum number of samples (single channel) to process on a 68 // Process a block of samples. 69 // pIn A buffer of samples with the format specified on 71 // pOut A buffer of samples with the format specified on 73 // numSamples The number of multi-channel samples to process. 118 // maximum number of multi-channel samples that can be stored in the 122 // Converts a buffer of input samples to audio_sample_t format. 127 // numSamples The number of single-channel samples to process. 141 // Converts audio_sample_t samples from the intermediate buffer to th [all...] |
/frameworks/opt/net/voip/src/jni/rtp/ |
AudioCodec.h | 31 virtual int encode(void *payload, int16_t *samples) = 0; 32 // Returns the number of decoded samples. 33 virtual int decode(int16_t *samples, int count, void *payload, int length) = 0;
|
G711Codec.cpp | 41 int encode(void *payload, int16_t *samples); 42 int decode(int16_t *samples, int count, void *payload, int length); 47 int UlawCodec::encode(void *payload, int16_t *samples) 51 int sample = samples[i]; 67 int UlawCodec::decode(int16_t *samples, int count, void *payload, int length) 78 samples[i] = (ulaw < 0 ? -sample : sample); 92 int encode(void *payload, int16_t *samples); 93 int decode(int16_t *samples, int count, void *payload, int length); 98 int AlawCodec::encode(void *payload, int16_t *samples) 102 int sample = samples[i] [all...] |
/external/chromium_org/testing/gtest/ |
CMakeLists.txt | 86 # Samples on how to link user tests with gtest or gtest_main. 93 cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc) 94 cxx_executable(sample2_unittest samples gtest_main samples/sample2.cc) 95 cxx_executable(sample3_unittest samples gtest_main) 96 cxx_executable(sample4_unittest samples gtest_main samples/sample4.cc) 97 cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc [all...] |
/external/ceres-solver/internal/ceres/ |
polynomial_test.cc | 314 vector<FunctionSample> samples; local 319 samples.push_back(sample); 321 const Vector polynomial = FindInterpolatingPolynomial(samples); 330 vector<FunctionSample> samples; local 337 samples.push_back(sample); 339 const Vector polynomial = FindInterpolatingPolynomial(samples); 348 vector<FunctionSample> samples; local 356 samples.push_back(sample); 364 samples.push_back(sample); 367 Vector polynomial = FindInterpolatingPolynomial(samples); 376 vector<FunctionSample> samples; local 407 vector<FunctionSample> samples; local 450 vector<FunctionSample> samples; local 487 vector<FunctionSample> samples; local [all...] |
/external/chromium_org/third_party/icu/source/samples/case/ |
readme.txt | 16 2. In MSVC, open the solution file icu\samples\case\case.sln 17 (or, use the workspace All, in icu\samples\all\all.sln ) 27 cd c:\icu\source\samples\case\debug 44 cd <icu directory>/source/samples/case 48 cd <icu directory>/source/samples/case
|
/external/chromium_org/third_party/icu/source/samples/citer/ |
readme.txt | 15 2. In MSVC, open the workspace file icu\samples\citer\citer.sln 25 cd c:\icu\source\samples\citer\debug 26 (note that it may be in a different relative directory than most of the other samples). 43 cd <icu directory>/source/samples/citer 47 cd <icu directory>/source/samples/citer
|
/external/chromium_org/third_party/webrtc/modules/audio_device/android/ |
fine_audio_buffer.h | 25 // samples. 30 // (not samples) |GetBufferData| should return on success. 33 // of samples can be calculated. 55 // Convenience parameter to avoid converting from samples 58 // Storage for samples that are not yet asked for.
|
/external/icu/icu4c/source/samples/case/ |
readme.txt | 16 2. In MSVC, open the solution file icu\samples\case\case.sln 17 (or, use the workspace All, in icu\samples\all\all.sln ) 27 cd c:\icu\source\samples\case\debug 44 cd <icu directory>/source/samples/case 48 cd <icu directory>/source/samples/case
|
/external/icu/icu4c/source/samples/citer/ |
readme.txt | 15 2. In MSVC, open the workspace file icu\samples\citer\citer.sln 25 cd c:\icu\source\samples\citer\debug 26 (note that it may be in a different relative directory than most of the other samples). 43 cd <icu directory>/source/samples/citer 47 cd <icu directory>/source/samples/citer
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
SyncSampleIntersectFinderImpl.java | 31 * fragments of the same length exactly before the sync samples. Audio tracks are cut 78 throw new RuntimeException("Video Tracks need sync samples. Only tracks other than video may have no sync samples."); 104 long samplesPerFrame = sttsEntry.getDelta(); // Assuming all audio tracks have the same number of samples per frame, which they do for all known types 117 long samplesPerFrame = sttsEntry.getDelta(); // Assuming all audio tracks have the same number of samples per frame, which they do for all known types 128 throw new RuntimeException("There was absolutely no Track with sync samples. I can't work with that!"); 130 // Ok, my track has no sync samples - let's find one with sync samples. 149 throw new RuntimeException("There was absolutely no Track with sync samples. I can't work with that!"); 156 * Calculates the timestamp of all tracks' sync samples [all...] |
/external/chromium_org/tools/python/google/ |
gethash_timer.py | 11 $ ./gethash_timer.py --period=600 --samples=20 --output=resp.csv 17 --samples (or -s): The number of requests to issue. If this parameter is not 67 def RunTimedGetHash(period, samples=None): 74 samples: An integer value indicating the number of requests to make. 86 if samples is not None and sample_count == samples: 122 samples = None 126 ['samples=', 'period=', 'output=']) 128 if option == '-s' or option == '--samples': 129 samples = int(value [all...] |