Home | History | Annotate | Download | only in signapk

Lines Matching refs:total_size

740         int total_size = temp.size() + 6;
741 if (total_size > 0xffff) {
745 int signature_start = total_size - message.length - 1;
757 temp.write(total_size & 0xff);
758 temp.write((total_size >> 8) & 0xff);
773 outputStream.write(total_size & 0xff);
774 outputStream.write((total_size >> 8) & 0xff);