Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 287 for 0xffff (0.15 sec)

  1. 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)
  2. src/syscall/zerrors_linux_amd64.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            int n = ((i + m) & ~m) - i;
            advance(n);
            return n;
        }
        public void enc_ndr_small(int s) {
            buf[index] = (byte)(s & 0xFF);
            advance(1);
        }
        public int dec_ndr_small() {
            int val = buf[index] & 0xFF;
            advance(1);
            return val;
        }
        public void enc_ndr_short(int s) {
            align(2);
            Encdec.enc_uint16le((short)s, buf, index);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    			return nil, &FormatError{shoff, "invalid ELF shnum contained in sh_size", shnum}
    		}
    
    		// If the section name string table section index is greater than or
    		// equal to SHN_LORESERVE (0xff00), this member has the value
    		// SHN_XINDEX (0xffff) and the actual index of the section name
    		// string table section is contained in the sh_link field of the
    		// section header at index 0.
    		if shstrndx == int(SHN_XINDEX) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_ppc64.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_s390x.go

    	IN_ACCESS                        = 0x1
    	IN_ALL_EVENTS                    = 0xfff
    	IN_ATTRIB                        = 0x4
    	IN_CLASSA_HOST                   = 0xffffff
    	IN_CLASSA_MAX                    = 0x80
    	IN_CLASSA_NET                    = 0xff000000
    	IN_CLASSA_NSHIFT                 = 0x18
    	IN_CLASSB_HOST                   = 0xffff
    	IN_CLASSB_MAX                    = 0x10000
    	IN_CLASSB_NET                    = 0xffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

          checkArgument(
              (port >= 0) && (port <= 0xffff), "port '%s' is out of range (0 <= port <= 0xffff)", port);
          checkArgument(
              (flags >= 0) && (flags <= 0xffff),
              "flags '%s' is out of range (0 <= flags <= 0xffff)",
              flags);
    
          this.server = MoreObjects.firstNonNull(server, ANY4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/SocksProxy.kt

        val version = fromSource.readByte() and 0xff
        if (version != VERSION_5) throw ProtocolException("unexpected version: $version")
    
        val command = fromSource.readByte() and 0xff
    
        val reserved = fromSource.readByte() and 0xff
        if (reserved != 0) throw ProtocolException("unexpected reserved: $reserved")
    
        val addressType = fromSource.readByte() and 0xff
        val toAddress =
          when (addressType) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/shift_test.go

    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x60", v, w, z)
    	}
    	if v, w, z := variableShiftOverflow64x16(-64, makeU16(0xffff), 2); v != -32 || w != -128 || z != 0x7fffffffffffffe0 {
    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fffffffffffffe0", v, w, z)
    	}
    	if v, w, z := variableShiftOverflow32x16(-64, makeU16(0xffff), 2); v != -32 || w != -128 || z != 0x7fffffe0 {
    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fffffe0,", v, w, z)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. 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)
Back to top