Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for 0x0000 (0.3 sec)

  1. src/cmd/internal/obj/ppc64/asm_test.go

    				`0x0000 00000\s\(.*\)\tBC\t\$12,\sCR0EQ,\s8`,
    				`0x0004 00004\s\(.*\)\tJMP\t131128`}},
    		// bdnz (BC 16,0,tgt) <-> bdz (BC 18,0,+4) conversion (insert one jump)
    		{"BC 16,0,",
    			[]string{``,
    				`0x20030 131120\s\(.*\)\tBC\t\$18,\sCR0LT,\s131128`,
    				`0x20034 131124\s\(.*\)\tJMP\t0`},
    			[]string{``,
    				`0x0000 00000\s\(.*\)\tBC\t\$18,\sCR0LT,\s8`,
    				`0x0004 00004\s\(.*\)\tJMP\t131128`}},
    		{"BC 18,0,",
    			[]string{``,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadpe/ldpe.go

    	IMAGE_REL_ARM_BRANCH11           = 0x0004
    	IMAGE_REL_ARM_SECTION            = 0x000E
    	IMAGE_REL_ARM_SECREL             = 0x000F
    	IMAGE_REL_ARM_MOV32              = 0x0010
    	IMAGE_REL_THUMB_MOV32            = 0x0011
    	IMAGE_REL_THUMB_BRANCH20         = 0x0012
    	IMAGE_REL_THUMB_BRANCH24         = 0x0014
    	IMAGE_REL_THUMB_BLX23            = 0x0015
    	IMAGE_REL_ARM_PAIR               = 0x0016
    	IMAGE_REL_ARM64_ABSOLUTE         = 0x0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/Utf8Test.java

        }
      }
    
      // 128 - [chars 0x0000 to 0x007f]
      private static final long ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x007f - 0x0000 + 1;
    
      // 128
      private static final long EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT =
          ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS;
    
      // 1920 [chars 0x0080 to 0x07FF]
      private static final long TWO_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x07FF - 0x0080 + 1;
    
      // 18,304
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/image/image_test.go

    			SetRGBA64(x, y int, c color.RGBA64)
    		}:
    			tc.SetRGBA64(1, 1, color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF})
    
    		case *NYCbCrA:
    			memset(tc.YCbCr.Y, 0x77)
    			memset(tc.YCbCr.Cb, 0x88)
    			memset(tc.YCbCr.Cr, 0x99)
    			memset(tc.A, 0xAA)
    
    		case *Uniform:
    			tc.C = color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF}
    
    		case *YCbCr:
    			memset(tc.Y, 0x77)
    			memset(tc.Cb, 0x88)
    			memset(tc.Cr, 0x99)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        static final byte TRANS2_GET_DFS_REFERRAL       = (byte)0x10;
        static final byte TRANS2_SET_FILE_INFORMATION   = (byte)0x08;
    
        static final int NET_SHARE_ENUM   = 0x0000;
        static final int NET_SERVER_ENUM2 = 0x0068;
        static final int NET_SERVER_ENUM3 = 0x00D7;
    
        static final byte TRANS_PEEK_NAMED_PIPE     = (byte)0x23;
        static final byte TRANS_WAIT_NAMED_PIPE     = (byte)0x53;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  6. src/syscall/types_windows.go

    	DNS_TYPE_SOA     = 0x0006
    	DNS_TYPE_MB      = 0x0007
    	DNS_TYPE_MG      = 0x0008
    	DNS_TYPE_MR      = 0x0009
    	DNS_TYPE_NULL    = 0x000a
    	DNS_TYPE_WKS     = 0x000b
    	DNS_TYPE_PTR     = 0x000c
    	DNS_TYPE_HINFO   = 0x000d
    	DNS_TYPE_MINFO   = 0x000e
    	DNS_TYPE_MX      = 0x000f
    	DNS_TYPE_TEXT    = 0x0010
    	DNS_TYPE_RP      = 0x0011
    	DNS_TYPE_AFSDB   = 0x0012
    	DNS_TYPE_X25     = 0x0013
    	DNS_TYPE_ISDN    = 0x0014
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/image/color/ycbcr.go

    	// 0x80, Cr: 0x80} and c1 := Gray{Y: y} then c0.RGBA() should equal
    	// c1.RGBA(). Specifically, if y == 0 then "R = etc >> 8" should yield
    	// 0x0000 and if y == 0xff then "R = etc >> 8" should yield 0xffff. If we
    	// used a constant rounding adjustment of 1<<15, then it would yield 0x0080
    	// and 0xff80 respectively.
    	//
    	// Note that when cb == 0x80 and cr == 0x80 then the formulae collapse to:
    	//	R = YY1 >> n
    	//	G = YY1 >> n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/unicode/utf8/utf8.go

    		// The following code simulates an additional check for x == xx and
    		// handling the ASCII and invalid cases accordingly. This mask-and-or
    		// approach prevents an additional branch.
    		mask := rune(x) << 31 >> 31 // Create 0x0000 or 0xFFFF.
    		return rune(p[0])&^mask | RuneError&mask, 1
    	}
    	sz := int(x & 7)
    	accept := acceptRanges[x>>4]
    	if n < sz {
    		return RuneError, 1
    	}
    	b1 := p[1]
    	if b1 < accept.lo || accept.hi < b1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top