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

  /frameworks/base/opengl/java/android/opengl/
ETC1Util.java 157 if (input.read(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE) != ETC1.ETC_PKM_HEADER_SIZE) {
160 ByteBuffer headerBuffer = ByteBuffer.allocateDirect(ETC1.ETC_PKM_HEADER_SIZE)
162 headerBuffer.put(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE).position(0);
212 ByteBuffer header = ByteBuffer.allocateDirect(ETC1.ETC_PKM_HEADER_SIZE).order(ByteOrder.nativeOrder());
215 header.get(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE);
216 output.write(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE);
ETC1.java 47 public static final int ETC_PKM_HEADER_SIZE = 16;
  /frameworks/base/opengl/include/ETC1/
etc1.h 84 #define ETC_PKM_HEADER_SIZE 16
  /development/tools/etc1tool/
etc1tool.cpp 238 etc1_byte header[ETC_PKM_HEADER_SIZE];
343 etc1_byte header[ETC_PKM_HEADER_SIZE];
  /frameworks/base/core/jni/android/opengl/
util.cpp 948 if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
949 env->ThrowNew(gIAEClass, "header's remaining data < ETC_PKM_HEADER_SIZE");
964 if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
965 env->ThrowNew(gIAEClass, "header's remaining data < ETC_PKM_HEADER_SIZE");
981 if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
982 env->ThrowNew(gIAEClass, "header's remaining data < ETC_PKM_HEADER_SIZE");
998 if (headerB.remaining() < ETC_PKM_HEADER_SIZE) {
999 env->ThrowNew(gIAEClass, "header's remaining data < ETC_PKM_HEADER_SIZE");

Completed in 85 milliseconds