Searched refs:asUlong (Results 1 – 1 of 1) sorted by relevance
52 static unsigned long asUlong(sal_Int8 input) in asUlong() function61 unsigned long value = asUlong(input[0]) << 16; in base64_encode()62 if(input.getLength() > 1) value |= asUlong(input[1]) << 8; in base64_encode()63 if(input.getLength() > 2) value |= asUlong(input[2]); in base64_encode()
Completed in 11 milliseconds