Home | History | Annotate | Download | only in exif

Lines Matching refs:intBuf

99             int intBuf[] = new int[count];
105 intBuf[i] = 0;
120 checkTypeUnsignedShort(tag, intBuf);
121 checkTypeUnsignedLong(tag, intBuf, longBuf);
122 checkTypeLong(tag, intBuf);
140 private void checkTypeUnsignedShort(ExifTag tag, int[] intBuf) {
143 tag.setValue(intBuf)
149 private void checkTypeUnsignedLong(ExifTag tag, int[] intBuf, long[] longBuf) {
152 int count = intBuf.length;
153 intBuf[count - 1] = MAX_LONG;
154 tag.setValue(intBuf);
160 intBuf[count - 1] = 0;
167 private void checkTypeLong(ExifTag tag, int[] intBuf) {
168 int count = intBuf.length;
169 intBuf[count - 1] = MAX_LONG;
170 tag.setValue(intBuf);
171 intBuf[count - 1] = MIN_LONG;
173 assertFalse("\nTag: " + tag.toString(), tag.setValue(intBuf)
175 intBuf[count - 1] = 0;