Home | History | Annotate | Download | only in renderscript

Lines Matching refs:pgm

88         byte[] pgm;
93 pgm = new byte[1024];
96 int bytesLeft = pgm.length - pgmLength;
98 byte[] buf2 = new byte[pgm.length * 2];
99 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
100 pgm = buf2;
101 bytesLeft = pgm.length - pgmLength;
103 int bytesRead = is.read(pgm, pgmLength, bytesLeft);
119 return rs.nScriptCCreate(resName, RenderScript.getCachePath(), pgm, pgmLength);