- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for dec_ucs2le (0.12 sec)
-
src/main/java/jcifs/util/Encdec.java
* @param slim the limit index in the source array * @param buf the character buffer for decoding * @return the decoded String */ public static String dec_ucs2le(final byte[] src, int si, final int slim, final char[] buf) { int bi; for (bi = 0; si + 1 < slim; bi++, si += 2) { buf[bi] = (char) dec_uint16le(src, si); if (buf[bi] == '\0') {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
* @param buf the character buffer for decoding * @return the decoded String * @throws IOException if a decoding error occurs */ public static String dec_ucs2le(final byte[] src, int si, final int slim, final char[] buf) throws IOException { int bi; for (bi = 0; si + 1 < slim; bi++, si += 2) { buf[bi] = (char) dec_uint16le(src, si);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0)