HomeSort by relevance Sort by last modified time
    Searched defs:sample2 (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
AudioResamplerKernel.cpp 106 double sample2 = source[readIndex + 1]; local
108 double sample = (1.0 - interpolationFactor) * sample1 + interpolationFactor * sample2;
  /external/webkit/Source/WebCore/webaudio/
DelayDSPKernel.cpp 124 double sample2 = buffer[readIndex2]; local
126 double output = (1.0 - interpolationFactor) * sample1 + interpolationFactor * sample2;
  /external/chromium/base/metrics/
histogram_unittest.cc 62 Histogram::SampleSet sample2; local
65 sample1 = sample2;
  /external/icu4c/samples/ucnv/
convsamp.cpp 683 const char *sample2 = "abc_def"; local
695 if(convsample_20_didSubstitute(sample2))
842 const char *sample2 = "abc_def"; local
853 if(convsample_21_didSubstitute(sample2))
  /external/v8/test/cctest/
test-profile-generator.cc 596 // aaa -> bbb -> ccc - sample2
604 TickSample sample2; local
605 sample2.pc = ToAddress(0x1925);
606 sample2.tos = ToAddress(0x1900);
607 sample2.stack[0] = ToAddress(0x1780);
608 sample2.stack[1] = ToAddress(0x10000); // non-existent.
609 sample2.stack[2] = ToAddress(0x1620);
610 sample2.frames_count = 3;
611 generator.RecordTickSample(sample2);
  /external/qemu/hw/
goldfish_audio.c 347 int sample2 = src[2] | (src[3] << 8); local
348 int sample = (sample1 + sample2) >> 1;
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 196 Sample sample2 = hprofData.getSamples().iterator().next(); local
197 assertEquals(sampleCount + 42, sample2.count);

Completed in 1910 milliseconds