Searched refs:maxIndex (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java253 int maxIndex = addr.length - 1;
254 for (int i = 0; i <= maxIndex; i++) {
256 if (i < maxIndex) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DDecTestBench.c490 u32 maxIndex; local
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/
H A DIHdmiControlService.aidl58 void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex);
H A DHdmiTvClient.java175 * @param maxIndex maximum volume index
177 public void setSystemAudioVolume(int oldIndex, int newIndex, int maxIndex) { argument
179 mService.setSystemAudioVolume(oldIndex, newIndex, maxIndex);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_fixup.cpp539 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, tim
536 trace_glVertexAttribPointerData(GLTraceContext *context, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr, GLuint minIndex, GLuint maxIndex, nsecs_t startTime) argument
611 findMinAndMaxIndices(GLvoid *indices, GLsizei count, GLenum type, GLuint *minIndex, GLuint *maxIndex) argument
633 trace_VertexAttribPointerData(GLTraceContext *context, GLuint minIndex, GLuint maxIndex, nsecs_t time) argument
688 GLuint minIndex, maxIndex; local
[all...]
/frameworks/base/libs/hwui/
H A DDeferredDisplayList.h149 void discardDrawingBatches(const unsigned int maxIndex);
H A DDeferredDisplayList.cpp699 void DeferredDisplayList::discardDrawingBatches(const unsigned int maxIndex) { argument
700 for (unsigned int i = mEarliestUnclearedIndex; i <= maxIndex; i++) {
708 mEarliestUnclearedIndex = maxIndex + 1;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp103 int maxIndex = -1; local
109 if ( index > maxIndex ) {
110 maxIndex = index;
114 if ( maxIndex * 3 > positionsLength) {
118 transformedIndexCount = maxIndex - minIndex + 1;
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1221 private int maxIndex = UNDEFINED; field in class:GridLayout.Axis
1274 if (maxIndex == UNDEFINED) {
1275 maxIndex = max(0, calculateMaxIndex()); // use zero when there are no children
1277 return maxIndex;
1891 maxIndex = UNDEFINED;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1098 private int maxIndex = UNDEFINED; field in class:GridLayout.Axis
1151 if (maxIndex == UNDEFINED) {
1152 maxIndex = max(0, calculateMaxIndex()); // use zero when there are no children
1154 return maxIndex;
1768 maxIndex = UNDEFINED;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java1415 final int maxIndex) {
1425 tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex);
1414 setSystemAudioVolume(final int oldIndex, final int newIndex, final int maxIndex) argument

Completed in 176 milliseconds