Searched defs:needleSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/include/media/stagefright/foundation/
H A DAUtils.h77 // [needleStart, needleStart + needleSize) is in range [hayStart, hayStart + haySize)
81 const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) {
84 && (T)(needleStart + needleSize) >= needleStart
85 && (U)(needleStart + needleSize - hayStart) <= haySize;
80 isInRange( const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) argument
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DAUtils.h77 // [needleStart, needleStart + needleSize) is in range [hayStart, hayStart + haySize)
81 const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) {
84 && (T)(needleStart + needleSize) >= needleStart
85 && (U)(needleStart + needleSize - hayStart) <= haySize;
80 isInRange( const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) argument
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DAUtils.h77 // [needleStart, needleStart + needleSize) is in range [hayStart, hayStart + haySize)
81 const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) {
84 && (T)(needleStart + needleSize) >= needleStart
85 && (U)(needleStart + needleSize - hayStart) <= haySize;
80 isInRange( const T &hayStart, const U &haySize, const T &needleStart, const U &needleSize) argument
/frameworks/av/media/libaaudio/examples/loopback/src/
H A DLoopbackAnalyzer.h105 const float *needle, int needleSize,
108 int maxCorrelations = haystackSize - needleSize;
112 double correlation = calculateCorrelation(&haystack[ic], needle, needleSize);
125 const float *needle, int needleSize, double threshold )
129 int numCorrelations = haystackSize - needleSize;
136 double correlation = calculateCorrelation(&haystack[ic], needle, needleSize);
163 const float *needle, int needleSize,
166 printf("measureLatencyFromEchos: haystackSize = %d, needleSize = %d\n",
167 haystackSize, needleSize);
173 needleSize,
104 calculateCorrelations(const float *haystack, int haystackSize, const float *needle, int needleSize, float *results, int resultSize) argument
124 findFirstMatch(const float *haystack, int haystackSize, const float *needle, int needleSize, double threshold ) argument
162 measureLatencyFromEchos(const float *haystack, int haystackSize, const float *needle, int needleSize, LatencyReport *report) argument
486 int needleSize = (int) (sizeof(s_Impulse) / sizeof(float)); variable
[all...]

Completed in 210 milliseconds