Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 150 for 0xfffd (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0x7FFFFFFF => y
    
    // small and of zero-extend => either zero-extend or small and
    (ANDconst [c] y:(MOVBZreg _)) && c&0xFF == 0xFF => y
    (ANDconst [0xFF] (MOVBreg x)) => (MOVBZreg x)
    (ANDconst [c] y:(MOVHZreg _))  && c&0xFFFF == 0xFFFF => y
    (ANDconst [0xFFFF] (MOVHreg x)) => (MOVHZreg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    string containing the UTF-8 representation of the integer. Values outside
    the range of valid Unicode code points are converted to <code>"\uFFFD"</code>.
    
    <pre>
    string('a')       // "a"
    string(-1)        // "\ufffd" == "\xef\xbf\xbd"
    string(0xf8)      // "\u00f8" == "ø" == "\xc3\xb8"
    type MyString string
    MyString(0x65e5)  // "\u65e5" == "日" == "\xe6\x97\xa5"
    </pre>
    </li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        private int pad1 = 0;
        private boolean hasMore = true;
        private boolean isPrimary = true;
        private int bufParameterOffset;
        private int bufDataOffset;
    
        static final int TRANSACTION_BUF_SIZE = 0xFFFF;
    
        static final byte TRANS2_FIND_FIRST2            = (byte)0x01;
        static final byte TRANS2_FIND_NEXT2             = (byte)0x02;
        static final byte TRANS2_QUERY_FS_INFORMATION   = (byte)0x03;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java

        // we can get away with i++ because the whole point of this method is to return false if we find
        // a code point that doesn't fit in a char.
        for (int i = 0; i < string.length(); i++) {
          if (string.codePointAt(i) > 0xffff) {
            return false;
          }
        }
        return true;
      }
    
      @SuppressWarnings("deprecation")
      public void testSimpleStringUtf8() {
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 08 13:56:22 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/PropertyConfiguration.java

            this.winsServer = Config.getInetAddressArray(p, "jcifs.netbios.wins", ",", new InetAddress[0]);
    
            this.transactionBufferSize = Config.getInt(p, "jcifs.smb.client.transaction_buf_size", 0xFFFF) - 512;
            this.bufferCacheSize = Config.getInt(p, "jcifs.smb.maxBuffers", 16);
    
            this.smbListSize = Config.getInt(p, "jcifs.smb.client.listSize", 65435);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/image/draw/bench_test.go

    					uint8((7*x + 5*y) % 0x100),
    					0xff,
    				})
    			}
    		}
    		dst = dst1
    	case color.RGBA64Model:
    		dst1 := image.NewRGBA64(image.Rect(0, 0, dstw, dsth))
    		for y := 0; y < dsth; y++ {
    			for x := 0; x < dstw; x++ {
    				dst1.SetRGBA64(x, y, color.RGBA64{
    					uint16(53 * x % 0x10000),
    					uint16(59 * y % 0x10000),
    					uint16((59*x + 53*y) % 0x10000),
    					0xffff,
    				})
    			}
    		}
    		dst = dst1
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. test/codegen/bitfield.go

    	return ((x & 0xfffff) << 4) >> 3
    }
    
    func ubfiz13(x uint64) uint64 {
    	// arm64:"UBFIZ\t[$]5, R[0-9]+, [$]13",-"LSL",-"LSR",-"AND"
    	return ((x << 3) & 0xffff) << 2
    }
    
    func ubfiz14(x uint64) uint64 {
    	// arm64:"UBFIZ\t[$]7, R[0-9]+, [$]12",-"LSL",-"LSR",-"AND"
    	// s390x:"RISBGZ\t[$]45, [$]56, [$]7, ",-"SLD",-"SRD",-"AND"
    	return ((x << 5) & (0xfff << 5)) << 2
    }
    
    // ubfx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_bsd.go

    //sysnb	getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
    //sys	Shutdown(s int, how int) (err error)
    
    func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	if sa.Port < 0 || sa.Port > 0xFFFF {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = SizeofSockaddrInet4
    	sa.raw.Family = AF_INET
    	p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
    	p[0] = byte(sa.Port >> 8)
    	p[1] = byte(sa.Port)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loong64/asm.go

    	if isRequestingLowPageBits(t) {
    		// corresponding immediate field is 12 bits wide
    		return tgt & 0xfff
    	}
    
    	pageDelta := (tgt >> 12) - (pc >> 12)
    	if tgt&0xfff >= 0x800 {
    		// adjust for sign-extended addition of the low bits
    		pageDelta += 1
    	}
    	// corresponding immediate field is 20 bits wide
    	return pageDelta & 0xfffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/html/template/css_test.go

    		{'z', true},
    		{'_', true},
    		{'-', true},
    		{':', false},
    		{';', false},
    		{' ', false},
    		{0x7f, false},
    		{0x80, true},
    		{0x1234, true},
    		{0xd800, false},
    		{0xdc00, false},
    		{0xfffe, false},
    		{0x10000, true},
    		{0x110000, false},
    	}
    	for _, test := range tests {
    		got := isCSSNmchar(test.rune)
    		if got != test.want {
    			t.Errorf("%q: want %t but got %t", string(test.rune), test.want, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top