Searched refs:totalBytes (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DCharacterDecoder.java153 int totalBytes = 0;
164 totalBytes += bytesPerAtom();
168 totalBytes += bytesPerAtom();
171 totalBytes += (length - i);
/openjdk7/jdk/test/sun/net/www/http/ChunkedOutputStream/
H A DcheckError.java44 static int totalBytes = 1048576; // 1M field in class:checkError
80 System.out.println("sending " + totalBytes + " bytes");
84 int sendingBytes = totalBytes;
94 // System.out.println((totalBytes - sendingBytes) + " was sent");
/openjdk7/jdk/test/sun/net/ftp/
H A DFtpGetContent.java464 int totalBytes = 0;
467 totalBytes += bytesRead;
471 if (totalBytes != filesize)
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java936 int totalBytes = 0;
944 totalBytes += tables[k].length * s;
953 totalBytes += ((((tables[n - 1].length * (identifiers ? 2 : 32)) + 31) >> 5) << 2);
956 result.append(totalBytes).append(" bytes.").append(commentEnd);
959 + totalBytes + " bytes.");
979 int totalBytes = 0;
981 totalBytes += tables[k].length * bytes[k];
983 totalBytes += ((((tables[n - 1].length * (identifiers ? 2 : 32))
985 return totalBytes;
1882 int totalBytes
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java1591 int totalBytes = 0;
1593 totalBytes += codeHist[bc];
1600 String pct = "" + (codeHist[bc] * 10000 / totalBytes);
1608 System.out.println("Bytecode histogram ["+totalBytes+"]");
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp8020 size_t totalBytes = (_numWordsFreed + _numWordsLive + _numWordsAlreadyFree)
8022 gclog_or_tty->print_cr("Total sweep: "SIZE_FORMAT" bytes", totalBytes);

Completed in 83 milliseconds