HomeSort by relevance Sort by last modified time
    Searched refs:maxIndex (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp 12 MatrixXf::Index maxIndex;
13 float maxNorm = mat.colwise().sum().maxCoeff(&maxIndex);
15 std::cout << "Maximum sum at position " << maxIndex << std::endl;
18 std::cout << mat.col( maxIndex ) << std::endl;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Correlation.java 52 int maxIndex = -1;
65 maxIndex = i;
71 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex=%d",maxValue, maxIndex,
87 mEstimatedLatencySamples = maxIndex*groupSize;
Util.java 124 int maxIndex = startIndex;
126 if (data[i] > data[maxIndex]) {
127 maxIndex = i;
130 return maxIndex;
  /external/skia/bench/
ColorCubeBench.cpp 80 const int maxIndex = fCubeDimension - 1;
84 lut[i] = ((maxIndex - i) * 255) / maxIndex;
  /external/skia/gm/
colorcube.cpp 80 const int maxIndex = size - 1;
82 lut[i] = (i * 255) / maxIndex;
83 invLut[i] = ((maxIndex - i) * 255) / maxIndex;
  /external/icu/icu4c/source/test/cintltst/
uenumtst.c 39 int32_t maxIndex;
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
82 if(cont->currIndex >= cont->maxIndex) {
145 int32_t maxIndex;
161 return ucont->maxIndex;
166 if(ucont->currIndex >= ucont->maxIndex) {
202 cont->maxIndex = size;
273 ucont->maxIndex = size;
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 253 int maxIndex = addr.length - 1;
254 for (int i = 0; i <= maxIndex; i++) {
256 if (i < maxIndex) {
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
EncodedStringValue.java 253 int maxIndex = addr.length - 1;
254 for (int i = 0; i <= maxIndex; i++) {
256 if (i < maxIndex) {
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
TriStrip.java 128 int maxIndex = 0;
132 if (in_indices[i] > maxIndex)
133 maxIndex = in_indices[i];
142 stripifier.stripify(tempIndices, cacheSize, minStripSize, maxIndex, tempStrips, tempFaces);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 192 int maxIndex = minIndex;
196 maxIndex = Math.max(d.index, maxIndex);
201 int to = Math.min(maxIndex + 5, n);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
DecTestBench.c 490 u32 maxIndex;
502 maxIndex = (u32)(streamStop - stream);
504 if (maxIndex == 0)
511 } while (byte != 1 && index < maxIndex);
514 if (index == maxIndex || index < 3)
524 maxIndex -= index;
559 if (index == maxIndex)
  /frameworks/base/core/java/android/hardware/hdmi/
IHdmiControlService.aidl 58 void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex);
HdmiTvClient.java 190 * @param maxIndex maximum volume index
192 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
194 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 193 int maxIndex = horizontal ? 1 : 0;
198 if (max == -1 || max < p[maxIndex]) {
199 max = p[maxIndex];
202 resultPadding[maxIndex] = max;
  /external/skia/src/codec/
SkCodec_libico.cpp 168 uint32_t maxIndex = 0;
174 maxIndex = i;
177 SkImageInfo info = codecs->operator[](maxIndex)->getInfo();
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_fixup.cpp 539 GLuint minIndex, GLuint maxIndex, nsecs_t startTime) {
542 int minIndex, int maxIndex) */
585 for (GLuint i = minIndex; i < maxIndex; i++) {
601 arg_max->add_intvalue(maxIndex);
612 GLuint *minIndex, GLuint *maxIndex) {
615 *maxIndex = 0;
629 if (index > *maxIndex) *maxIndex = index;
634 GLuint minIndex, GLuint maxIndex, nsecs_t time) {
656 minIndex, maxIndex, time)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
EncodedStringValue.java 268 int maxIndex = addr.length - 1;
269 for (int i = 0; i <= maxIndex; i++) {
271 if (i < maxIndex) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 327 int maxIndex = -1;
333 maxIndex = entry.getIndex();
337 return maxIndex;
344 final int maxIndex = getMaxIndex();
345 return maxIndex < 0 ? Double.NaN : getEntry(maxIndex);
  /frameworks/base/libs/hwui/
DeferredDisplayList.h 149 void discardDrawingBatches(const unsigned int maxIndex);
DeferredDisplayList.cpp 665 void DeferredDisplayList::discardDrawingBatches(const unsigned int maxIndex) {
666 for (unsigned int i = mEarliestUnclearedIndex; i <= maxIndex; i++) {
673 mEarliestUnclearedIndex = maxIndex + 1;
  /external/clang/utils/ABITest/
ABITestGen.py 362 parser.add_option("", "--max", dest="maxIndex", metavar="N",
595 if opts.maxIndex is None:
597 opts.maxIndex = 10000000
599 opts.maxIndex = ftg.cardinality
600 opts.maxIndex = min(opts.maxIndex, ftg.cardinality)
601 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
603 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
663 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 134 private final int maxIndex = keyToIndex().size();
138 for (index++; index < maxIndex; index++) {
  /external/skia/samplecode/
SampleFilterFuzz.cpp 221 const int maxIndex = size - 1;
223 lut[i] = (i * 255) / maxIndex;
224 invLut[i] = ((maxIndex - i) * 255) / maxIndex;
  /external/deqp/modules/gles2/functional/
es2fNegativeShaderApiTests.cpp 395 GLuint maxIndex = m_context.getContextInfo().getInt(GL_MAX_VERTEX_ATTRIBS);
399 glBindAttribLocation(program, maxIndex, "test");
404 glBindAttribLocation(program, maxIndex-1, "gl_test");
409 glBindAttribLocation(-1, maxIndex-1, "test");
414 glBindAttribLocation(shader, maxIndex-1, "test");
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 104 int maxIndex = -1;
110 if ( index > maxIndex ) {
111 maxIndex = index;
115 if ( maxIndex * 3 > positionsLength) {
119 transformedIndexCount = maxIndex - minIndex + 1;
    [all...]

Completed in 1005 milliseconds

1 2 3 4