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

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/
ExifTagTest.java 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
    [all...]
  /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();
  /dalvik/tests/070-nio-buffer/src/
Main.java 125 IntBuffer intBuf = directBuf.asIntBuffer();
147 if (intBuf.put(2, intValue).get(2) != intValue) {
  /system/core/include/cutils/
log.h 477 int intBuf = _value; \
478 (void) android_btWriteLog(_tag, EVENT_TYPE_INT, &intBuf, \
479 sizeof(intBuf)); \

Completed in 104 milliseconds