Home | History | Annotate | Download | only in params

Lines Matching refs:length

51      * The inner array always contains {@code [format, length, ...]} where ... has length elements.
64 * (missing output format length or too few output formats)
77 int left = entry.length;
78 for (int i = 0; i < entry.length; ) {
86 String.format("Input %x had no output format length listed", inputFormat));
89 final int length = entry[i];
93 for (int j = 0; j < length; ++j) {
98 if (length > 0) {
99 if (left < length) {
103 "expected: %d)", inputFormat, left, length));
106 i += length;
107 left -= length;
132 int left = mEntry.length;
133 for (int i = 0, j = 0; i < mEntry.length; j++) {
141 String.format("Input %x had no output format length listed", format));
144 final int length = mEntry[i];
148 if (length > 0) {
149 if (left < length) {
153 "expected: %d)", format, left, length));
156 i += length;
157 left -= length;
180 int left = mEntry.length;
181 for (int i = 0; i < mEntry.length; ) {
189 String.format("Input %x had no output format length listed", format));
192 final int length = mEntry[i];
196 if (length > 0) {
197 if (left < length) {
201 "expected: %d)", format, left, length));
206 int[] outputs = new int[length];
209 for (int k = 0; k < length; ++k) {
216 i += length;
217 left -= length;