HomeSort by relevance Sort by last modified time
    Searched defs:intBuf (Results 1 - 4 of 4) sorted by null

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/
ExifTagTest.java 43 int intBuf[] = new int[count];
49 intBuf[i] = 0;
60 checkTypeUnsignedShort(tag, intBuf);
61 checkTypeUnsignedLong(tag, intBuf, longBuf);
62 checkTypeLong(tag, intBuf);
92 private void checkTypeUnsignedShort(ExifTag tag, int[] intBuf) {
96 tag.setValue(intBuf);
105 private void checkTypeUnsignedLong(ExifTag tag, int[] intBuf, long[] longBuf) {
109 int count = intBuf.length;
111 intBuf[count - 1] = MAX_LONG
    [all...]
  /dalvik/tests/070-nio-buffer/src/
Main.java 125 IntBuffer intBuf = directBuf.asIntBuffer();
147 if (intBuf.put(2, intValue).get(2) != intValue) {
  /frameworks/base/libs/androidfw/
ObbFile.cpp 258 unsigned char intBuf[sizeof(uint32_t)+1];
259 memset(&intBuf, 0, sizeof(intBuf));
261 put4LE(intBuf, kSigVersion);
262 if (write(fd, &intBuf, sizeof(uint32_t)) != (ssize_t)sizeof(uint32_t)) {
267 put4LE(intBuf, mVersion);
268 if (write(fd, &intBuf, sizeof(uint32_t)) != (ssize_t)sizeof(uint32_t)) {
273 put4LE(intBuf, mFlags);
274 if (write(fd, &intBuf, sizeof(uint32_t)) != (ssize_t)sizeof(uint32_t)) {
285 put4LE(intBuf, packageNameLen)
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 31 private IntBuffer intBuf;
132 Screenshots.convertScreenShot2(intBuf, img);
141 Screenshots.convertScreenShot2(intBuf, img);
208 intBuf = byteBuf.asIntBuffer();

Completed in 118 milliseconds