Searched defs:sz (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DBufferedWriter.java96 * @param sz Output-buffer size, a positive integer
98 * @exception IllegalArgumentException If {@code sz <= 0}
100 public BufferedWriter(Writer out, int sz) { argument
102 if (sz <= 0)
105 cb = new char[sz];
106 nChars = sz;
H A DLineNumberReader.java82 * @param sz
85 public LineNumberReader(Reader in, int sz) { argument
86 super(in, sz);
H A DBufferedReader.java97 * @param sz Input-buffer size
99 * @exception IllegalArgumentException If {@code sz <= 0}
101 public BufferedReader(Reader in, int sz) { argument
103 if (sz <= 0)
106 cb = new char[sz];
/libcore/ojluni/src/main/java/java/util/
H A DTreeMap.java2631 private static int computeRedLevel(int sz) { argument
2633 for (int m = sz - 1; m >= 0; m = m / 2 - 1)
/libcore/ojluni/src/main/native/
H A Dzip_util.c1076 jint sz = SH(extra, off + 2); local
1081 if (sz < 8 || (off + 8) > elen)
1084 sz -= 8;
1088 if (sz < 8 || (off + 8) > elen)
1091 sz -= 8;
1095 if (sz < 8 || (off + 8) > elen)
1098 sz -= 8;
1103 off += (sz + 4);

Completed in 172 milliseconds