Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for elseif (0.15 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

                    dst[di++] = (byte)ch;
                } else if (ch > 0x07FF) {
                    if((dlim - di) < 3 ) {
                        break;
                    }
                    dst[di++] = (byte)(0xE0 | ((ch >> 12) & 0x0F)); 
                    dst[di++] = (byte)(0x80 | ((ch >>  6) & 0x3F)); 
                    dst[di++] = (byte)(0x80 | ((ch >>  0) & 0x3F)); 
                } else {
                    if((dlim - di) < 2 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            for ( int i = 0; di < dlim && i < strlen; i++ ) {
                ch = str.charAt(i);
                if ( ( ch >= 0x0001 ) && ( ch <= 0x007F ) ) {
                    dst[ di++ ] = (byte) ch;
                }
                else if ( ch > 0x07FF ) {
                    if ( ( dlim - di ) < 3 ) {
                        break;
                    }
                    dst[ di++ ] = (byte) ( 0xE0 | ( ( ch >> 12 ) & 0x0F ) );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
Back to top