Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 470 for 0x3F (0.05 sec)

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

                    dst[ di++ ] = (byte) ( 0x80 | ( ( ch >> 0 ) & 0x3F ) );
                }
                else {
                    if ( ( dlim - di ) < 2 ) {
                        break;
                    }
                    dst[ di++ ] = (byte) ( 0xC0 | ( ( ch >> 6 ) & 0x1F ) );
                    dst[ di++ ] = (byte) ( 0x80 | ( ( ch >> 0 ) & 0x3F ) );
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  2. src/syscall/zerrors_darwin_amd64.go

    	IP_NAT__XXX                       = 0x37
    	IP_OFFMASK                        = 0x1fff
    	IP_OLD_FW_ADD                     = 0x32
    	IP_OLD_FW_DEL                     = 0x33
    	IP_OLD_FW_FLUSH                   = 0x34
    	IP_OLD_FW_GET                     = 0x36
    	IP_OLD_FW_RESETLOG                = 0x38
    	IP_OLD_FW_ZERO                    = 0x35
    	IP_OPTIONS                        = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/Encdec.java

                    dst[di++] = (byte)(0x80 | ((ch >>  6) & 0x3F)); 
                    dst[di++] = (byte)(0x80 | ((ch >>  0) & 0x3F)); 
                } else {
                    if((dlim - di) < 2 ) {
                        break;
                    }
                    dst[di++] = (byte)(0xC0 | ((ch >>  6) & 0x1F)); 
                    dst[di++] = (byte)(0x80 | ((ch >>  0) & 0x3F)); 
                }
            }
    
            return di - start;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Murmur3_32HashFunction.java

        return ((0xFL << 4) | (codePoint >>> 18))
            | ((0x80L | (0x3F & (codePoint >>> 12))) << 8)
            | ((0x80L | (0x3F & (codePoint >>> 6))) << 16)
            | ((0x80L | (0x3F & codePoint)) << 24);
      }
    
      private static long charToThreeUtf8Bytes(char c) {
        return ((0x7L << 5) | (c >>> 12))
            | ((0x80 | (0x3F & (c >>> 6))) << 8)
            | ((0x80 | (0x3F & c)) << 16);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	IP_NAT__XXX                             = 0x37
    	IP_OFFMASK                              = 0x1fff
    	IP_OLD_FW_ADD                           = 0x32
    	IP_OLD_FW_DEL                           = 0x33
    	IP_OLD_FW_FLUSH                         = 0x34
    	IP_OLD_FW_GET                           = 0x36
    	IP_OLD_FW_RESETLOG                      = 0x38
    	IP_OLD_FW_ZERO                          = 0x35
    	IP_OPTIONS                              = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

        return ((0xFL << 4) | (codePoint >>> 18))
            | ((0x80L | (0x3F & (codePoint >>> 12))) << 8)
            | ((0x80L | (0x3F & (codePoint >>> 6))) << 16)
            | ((0x80L | (0x3F & codePoint)) << 24);
      }
    
      private static long charToThreeUtf8Bytes(char c) {
        return ((0x7L << 5) | (c >>> 12))
            | ((0x80 | (0x3F & (c >>> 6))) << 8)
            | ((0x80 | (0x3F & c)) << 16);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	SO_BUSY_POLL                     = 0x30
    	SO_BUSY_POLL_BUDGET              = 0x49
    	SO_CNX_ADVICE                    = 0x37
    	SO_COOKIE                        = 0x3b
    	SO_DETACH_REUSEPORT_BPF          = 0x47
    	SO_DOMAIN                        = 0x1029
    	SO_DONTROUTE                     = 0x10
    	SO_ERROR                         = 0x1007
    	SO_INCOMING_CPU                  = 0x33
    	SO_INCOMING_NAPI_ID              = 0x3a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/compress/gzip/gunzip_test.go

    			0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e,
    			0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
    			0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e,
    			0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,
    			0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,
    			0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,
    			0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e,
    			0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.pb.go

    	0x54, 0x65, 0x49, 0xc2, 0x25, 0x93, 0x11, 0x4f, 0x32, 0xf3, 0xd0, 0x2a, 0xd9, 0x55, 0xb7, 0xe5,
    	0x28, 0xd7, 0xd9, 0x79, 0x95, 0xd3, 0xdd, 0x60, 0x34, 0x91, 0x22, 0xf7, 0x7f, 0x0f, 0x62, 0x1f,
    	0x35, 0xfe, 0xaa, 0x3f, 0xe7, 0x29, 0x98, 0x65, 0x4b, 0xb3, 0x4f, 0xdc, 0xe6, 0x96, 0xe4, 0x16,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go

    	AF_VENDOR04                    = 0x2f
    	AF_VENDOR05                    = 0x31
    	AF_VENDOR06                    = 0x33
    	AF_VENDOR07                    = 0x35
    	AF_VENDOR08                    = 0x37
    	AF_VENDOR09                    = 0x39
    	AF_VENDOR10                    = 0x3b
    	AF_VENDOR11                    = 0x3d
    	AF_VENDOR12                    = 0x3f
    	AF_VENDOR13                    = 0x41
    	AF_VENDOR14                    = 0x43
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
Back to top