Searched refs:resultLen (Results 1 – 2 of 2) sorted by relevance
740 int resultLen = (intLen > addend.intLen ? intLen : addend.intLen); in add() local741 int[] result = (value.length < resultLen ? new int[resultLen] : value); in add()773 resultLen++; in add()774 if (result.length < resultLen) { in add()775 int temp[] = new int[resultLen]; in add()787 intLen = resultLen; in add()788 offset = result.length - resultLen; in add()803 int resultLen = (intLen > y ? intLen : y); in addShifted() local804 int[] result = (value.length < resultLen ? new int[resultLen] : value); in addShifted()839 resultLen++; in addShifted()[all …]
59 int resultLen = 4*((aLen + 2)/3); in byteArrayToBase64() local60 StringBuffer result = new StringBuffer(resultLen); in byteArrayToBase64()