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

1 2 3

  /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;
  /external/skia/src/core/
SkTileGrid.h 110 int maxIndex = 0;
119 maxIndex = tile;
123 maxIndex = tile;
129 for (int tile = minIndex; tile <= maxIndex; ++tile) {
SkPath.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexRangeCache.cpp 24 unsigned int maxIndex = indices[0];
29 if (maxIndex < indices[i]) maxIndex = indices[i];
32 return RangeUI(minIndex, maxIndex);
  /external/chromium_org/third_party/icu/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;
  /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/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 175 * @param maxIndex maximum volume index
177 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) {
179 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;
  /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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CSSMetadata.js     [all...]
  /frameworks/base/libs/hwui/
DeferredDisplayList.h 149 void discardDrawingBatches(const unsigned int maxIndex);
DeferredDisplayList.cpp 699 void DeferredDisplayList::discardDrawingBatches(const unsigned int maxIndex) {
700 for (unsigned int i = mEarliestUnclearedIndex; i <= maxIndex; i++) {
708 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/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 103 int maxIndex = -1;
109 if ( index > maxIndex ) {
110 maxIndex = index;
114 if ( maxIndex * 3 > positionsLength) {
118 transformedIndexCount = maxIndex - minIndex + 1;
  /external/chromium_org/third_party/icu/source/test/letest/
cletest.c 696 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
701 if (ix > maxIndex) {
702 maxIndex = ix;
716 charIndex = maxIndex + 1;
  /external/icu/icu4c/source/test/letest/
cletest.c 697 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
702 if (ix > maxIndex) {
703 maxIndex = ix;
717 charIndex = maxIndex + 1;
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parse.y     [all...]
  /external/mesa3d/src/mesa/program/
program_parse.y     [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
filter.js 110 var maxIndex = 4 * imageData.width * imageData.height;
111 for (var index = 0; index != maxIndex;) {
299 var maxIndex = 4 * width * height;
300 for (var i = 0; i != maxIndex;) {

Completed in 1208 milliseconds

1 2 3