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

1 2 3

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
vq3.c 34 int16_t pos, minindex=0; local
52 minindex = j;
59 Xq[i] = CB[minindex*3 + i];
61 *index = minindex;
vq4.c 34 int16_t pos, minindex=0; local
52 minindex = j;
59 Xq[i] = CB[minindex*4 + i];
61 *index = minindex;
  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 387 ssize_t minIndex = -1;
432 minIndex = i;
436 return minIndex;
443 ssize_t minIndex = fetchTrackSamples(timeUs, mode);
445 if (minIndex < 0) {
455 ssize_t minIndex = fetchTrackSamples();
457 if (minIndex < 0) {
461 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex);
526 ssize_t minIndex = fetchTrackSamples();
528 if (minIndex < 0)
    [all...]
MPEG2TSWriter.cpp 648 size_t minIndex = 0;
663 minIndex = i;
673 minTimeUs / 1E6, minIndex);
675 source = mSources.editItemAt(minIndex);
681 writeAccessUnit(minIndex, buffer);
  /external/guava/guava-tests/benchmark/com/google/common/collect/
BinaryTreeTraverserBenchmark.java 98 int minIndex = 0;
100 if (keys.get(i) < keys.get(minIndex)) {
101 minIndex = i;
104 Optional<BinaryNode> leftChild = createTreap(keys.subList(0, minIndex));
105 Optional<BinaryNode> rightChild = createTreap(keys.subList(minIndex + 1, keys.size()));
106 return Optional.of(new BinaryNode(keys.get(minIndex), leftChild, rightChild));
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_GetVLCInfo.c 85 OMX_INT i, MinIndex;
112 MinIndex = (bAC == 0 && MaxNumCoef == 15) ? 1 : 0;
113 for (i = MinIndex; i < (MaxNumCoef + MinIndex); i++)
116 Buf [i - MinIndex] = pSrcCoeff [pScanMatrix [i]];
  /external/jdiff/src/jdiff/
RootDocToXML.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Correlation.java 57 int minIndex = (int)(0.5 + minLatencyMs * mSamplingRate / (groupSize*1000));
62 for (int i=minIndex; i<mDataAutocorrelated.length; i++) {
73 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex=%d",maxValue, maxIndex,
74 mDataAutocorrelated.length, data.length, minIndex));
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 65 int32_t minIndex=-1;
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
69 minIndex=i;
72 return minIndex;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 191 int minIndex = mCurrent.get(0).index;
192 int maxIndex = minIndex;
195 minIndex = Math.min(d.index, minIndex);
200 int from = Math.max(minIndex - 5, 0);
  /device/generic/goldfish/opengl/system/GLESv1_enc/
GLEncoder.cpp 582 int minIndex = 0, maxIndex = 0;
587 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
588 if (minIndex != 0) {
592 count, -minIndex);
597 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
598 if (minIndex != 0) {
602 count, -minIndex);
607 GLUtils::minmax<unsigned int>((unsigned int *)indices, count, &minIndex, &maxIndex);
608 if (minIndex != 0) {
612 count, -minIndex);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextArea.java 218 int minIndex = Math.min(cursor, selectionStart);
225 if (!((minIndex < lineStart && minIndex < lineEnd && maxIndex < lineStart && maxIndex < lineEnd)
226 || (minIndex > lineStart && minIndex > lineEnd && maxIndex > lineStart && maxIndex > lineEnd))) {
228 int start = Math.max(linesBreak.get(i), minIndex);
TextField.java 258 int minIndex = Math.min(cursor, selectionStart);
260 float minX = Math.max(glyphPositions[minIndex], -renderOffset);
467 int minIndex = Math.min(from, to);
469 String newText = (minIndex > 0 ? text.substring(0, minIndex) : "")
476 return minIndex;
    [all...]
  /external/skia/src/codec/
SkIcoCodec.cpp 201 int32_t minIndex = -1;
208 minIndex = i;
211 SkASSERT(minIndex >= 0);
213 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
VertexAttribPointerDataDetailProvider.java 61 // GLsizei stride, const GLvoid* ptr, int minIndex, int maxIndex)
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 174 minIndex := pos - windowSize
195 if i == minIndex {
199 if i = d.hashPrev[i&windowMask] - d.hashOffset; i < minIndex || i < 0 {
278 minIndex := d.index - windowSize
279 if minIndex < 0 {
280 minIndex = 0
283 if d.chainHead-d.hashOffset >= minIndex &&
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 174 minIndex := pos - windowSize
195 if i == minIndex {
199 if i = d.hashPrev[i&windowMask] - d.hashOffset; i < minIndex || i < 0 {
278 minIndex := d.index - windowSize
279 if minIndex < 0 {
280 minIndex = 0
283 if d.chainHead-d.hashOffset >= minIndex &&
  /device/generic/goldfish/opengl/system/GLESv2_enc/
GL2Encoder.cpp 612 int minIndex = 0, maxIndex = 0;
617 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
618 if (minIndex != 0) {
622 count, -minIndex);
627 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
628 if (minIndex != 0) {
632 count, -minIndex);
637 GLUtils::minmax<unsigned int>((unsigned int *)indices, count, &minIndex, &maxIndex);
638 if (minIndex != 0) {
642 count, -minIndex);
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
DividerSnapAlgorithm.java 227 int minIndex = -1;
237 minIndex = i;
241 return mTargets.get(minIndex);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_draw_arrays.c 55 * When the min/max element indexes aren't known, minIndex should be 0
  /frameworks/base/core/jni/android/opengl/
util.cpp 103 int minIndex = 65536;
107 if ( index < minIndex ) {
108 minIndex = index;
119 transformedIndexCount = maxIndex - minIndex + 1;
128 const float* pSrc = pPositions + 3 * minIndex;
141 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
142 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
143 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 301 int minIndex = -1;
307 minIndex = entry.getIndex();
311 return minIndex;
318 final int minIndex = getMinIndex();
319 return minIndex < 0 ? Double.NaN : getEntry(minIndex);
  /external/clang/utils/ABITest/
ABITestGen.py 359 parser.add_option("", "--min", dest="minIndex", metavar="N",
601 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
603 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
661 index = opts.minIndex + i
663 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 150 int minIndex = 0;
159 minIndex = i;
162 return minIndex;
  /external/icu/icu4c/source/test/letest/
cletest.c 699 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
708 if (ix < minIndex) {
709 minIndex = ix;
713 if (minIndex != charIndex) {
714 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
715 run, lineNumber, charIndex, minIndex);

Completed in 5561 milliseconds

1 2 3