Home | History | Annotate | Download | only in renderscript

Lines Matching refs:pgm

74         byte[] pgm;
79 pgm = new byte[1024];
82 int bytesLeft = pgm.length - pgmLength;
84 byte[] buf2 = new byte[pgm.length * 2];
85 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
86 pgm = buf2;
87 bytesLeft = pgm.length - pgmLength;
89 int bytesRead = is.read(pgm, pgmLength, bytesLeft);
111 return rs.nScriptCCreate(resName, mCachePath, pgm, pgmLength);