Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for 0x0100 (0.3 sec)

  1. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		v       int32
    		shift   int
    		wantErr bool
    		wantHi  int32
    		wantLo  int32
    	}{
    		{
    			v:      0,
    			shift:  0,
    			wantHi: 0,
    			wantLo: 0,
    		},
    		{
    			v:      0x1001,
    			shift:  0,
    			wantHi: 0x1000,
    			wantLo: 0x1,
    		},
    		{
    			v:      0xffffff,
    			shift:  0,
    			wantHi: 0xfff000,
    			wantLo: 0xfff,
    		},
    		{
    			v:       0xffffff,
    			shift:   1,
    			wantErr: true,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/unicode/utf8/utf8.go

    var first = [256]uint8{
    	//   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x00-0x0F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x10-0x1F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x20-0x2F
    	as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, as, // 0x30-0x3F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    	0x4d,
    	0x5a,
    	0x90,
    	0x00,
    	0x03,
    	0x00,
    	0x00,
    	0x00,
    	0x04,
    	0x00,
    	0x00,
    	0x00,
    	0xff,
    	0xff,
    	0x00,
    	0x00,
    	0x8b,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x40,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/archive/tar/format.go

    	return unsigned, signed
    }
    
    // reset clears the block with all zeros.
    func (b *block) reset() {
    	*b = block{}
    }
    
    type headerV7 [blockSize]byte
    
    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    func (h *headerV7) uid() []byte      { return h[108:][:8] }
    func (h *headerV7) gid() []byte      { return h[116:][:8] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -       case 7:								      \
    -	 __u->__ui = __c * 0x01010101;					      \
    -	 __u = __extension__ ((void *) __u + 4);			      \
    -       case 3:								      \
    -	 __u->__usi = (unsigned short int) __c * 0x0101;		      \
    -	 __u = __extension__ ((void *) __u + 2);			      \
    -	 __u->__uc = (unsigned char) __c;				      \
    -	 break;								      \
    -									      \
    -       case 14:								      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. src/image/draw/draw_test.go

    		opaqueGray       = color.NRGBA{0x99, 0x99, 0x99, 0xff}
    		transparentBlue  = color.NRGBA{0x00, 0x00, 0xff, 0x00}
    		transparentGreen = color.NRGBA{0x00, 0xff, 0x00, 0x00}
    		transparentRed   = color.NRGBA{0xff, 0x00, 0x00, 0x00}
    
    		opaqueGray64        = color.NRGBA64{0x9999, 0x9999, 0x9999, 0xffff}
    		transparentPurple64 = color.NRGBA64{0xfedc, 0x0000, 0x7654, 0x0000}
    	)
    
    	// dst and src are 1x3 images but the dr rectangle (and hence the overlap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/image/png/reader.go

    			// is an error", but some real-world PNG files have out-of-range pixel
    			// values. We fall back to opaque black, the same as libpng 1.5.13;
    			// ImageMagick 6.5.7 returns an error.
    			d.palette[i] = color.RGBA{0x00, 0x00, 0x00, 0xff}
    		}
    		d.palette = d.palette[:np]
    	case cbTC8, cbTCA8, cbTC16, cbTCA16:
    		// As per the PNG spec, a PLTE chunk is optional (and for practical purposes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        protected static final short SMB2_WRITE = 0x0009;
        protected static final short SMB2_LOCK = 0x000A;
        protected static final short SMB2_IOCTL = 0x000B;
        protected static final short SMB2_CANCEL = 0x000C;
        protected static final short SMB2_ECHO = 0x000D;
        protected static final short SMB2_QUERY_DIRECTORY = 0x000E;
        protected static final short SMB2_CHANGE_NOTIFY = 0x000F;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    	// XOR.
    	if msbSet {
    		double.low ^= 0xe100000000000000
    	}
    
    	return
    }
    
    var gcmReductionTable = []uint16{
    	0x0000, 0x1c20, 0x3840, 0x2460, 0x7080, 0x6ca0, 0x48c0, 0x54e0,
    	0xe100, 0xfd20, 0xd940, 0xc560, 0x9180, 0x8da0, 0xa9c0, 0xb5e0,
    }
    
    // mul sets y to y*H, where H is the GCM key, fixed during NewGCMWithNonceSize.
    func (g *gcm) mul(y *gcmFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/syscall/fs_wasip1.go

    }
    
    const (
    	LOOKUP_SYMLINK_FOLLOW = 0x00000001
    )
    
    const (
    	OFLAG_CREATE    = 0x0001
    	OFLAG_DIRECTORY = 0x0002
    	OFLAG_EXCL      = 0x0004
    	OFLAG_TRUNC     = 0x0008
    )
    
    const (
    	FDFLAG_APPEND   = 0x0001
    	FDFLAG_DSYNC    = 0x0002
    	FDFLAG_NONBLOCK = 0x0004
    	FDFLAG_RSYNC    = 0x0008
    	FDFLAG_SYNC     = 0x0010
    )
    
    const (
    	RIGHT_FD_DATASYNC = 1 << iota
    	RIGHT_FD_READ
    	RIGHT_FD_SEEK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top