Searched refs:sd (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/io/ |
D | InputStreamReader.java | 64 private final StreamDecoder sd; field in InputStreamReader 74 sd = StreamDecoder.forInputStreamReader(in, this, (String)null); // ## check lock object in InputStreamReader() 100 sd = StreamDecoder.forInputStreamReader(in, this, charsetName); in InputStreamReader() 116 sd = StreamDecoder.forInputStreamReader(in, this, cs); in InputStreamReader() 132 sd = StreamDecoder.forInputStreamReader(in, this, dec); in InputStreamReader() 156 return sd.getEncoding(); in getEncoding() 168 return sd.read(); in read() 184 return sd.read(cbuf, offset, length); in read() 195 return sd.ready(); in ready() 199 sd.close(); in close()
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | FDBigInteger.java | 599 int[] sd = S.data; in quoRemIteration() local 603 sum += (td[tIndex] & LONG_MASK) + (sd[sIndex] & LONG_MASK); in quoRemIteration() 1294 int[] sd = S.data; in multDiffMe() local 1297 diff += (td[tIndex] & LONG_MASK) - q * (sd[sIndex] & LONG_MASK); in multDiffMe() 1306 int[] sd = S.data; in multDiffMe() local 1308 diff -= q * (sd[sIndex] & LONG_MASK); in multDiffMe() 1315 diff += (td[tIndex] & LONG_MASK) - q * (sd[sIndex] & LONG_MASK); in multDiffMe()
|