Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 0xffe0 (0.09 sec)

  1. src/syscall/zerrors_openbsd_arm64.go

    	EVFILT_WRITE                      = -0x2
    	EVL_ENCAPLEN                      = 0x4
    	EVL_PRIO_BITS                     = 0xd
    	EVL_PRIO_MAX                      = 0x7
    	EVL_VLID_MASK                     = 0xfff
    	EVL_VLID_MAX                      = 0xffe
    	EVL_VLID_MIN                      = 0x1
    	EVL_VLID_NULL                     = 0x0
    	EV_ADD                            = 0x1
    	EV_CLEAR                          = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 66.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xfffa" type="string" offset="0"/> <!-- V1, L3, CRC -->
          <match value="0xfffb" type="string" offset="0"/> <!-- V1, L3      -->
          <match value="0xfffc" type="string" offset="0"/> <!-- V1, L2, CRC -->
          <match value="0xfffd" type="string" offset="0"/> <!-- V1, L2      -->
          <match value="0xffe3" type="string" offset="0"/> <!-- MP3 2.5 from pronom     -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		// Don't show prefixes implied by the instruction text.
    		case p&0xFF00 == PrefixImplicit:
    			continue
    		// Only REP and REPN are recognized repeaters. Plan 9 syntax
    		// treats them as separate opcodes.
    		case p&0xFF == PrefixREP:
    			rep = "REP; "
    		case p&0xFF == PrefixREPN:
    			rep = "REPNE; "
    		default:
    			last = p
    		}
    	}
    
    	prefix := ""
    	switch last & 0xFF {
    	case 0, 0x66, 0x67:
    		// ignore
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	SHN_XINDEX    SectionIndex = 0xffff /* Escape; index stored elsewhere. */
    	SHN_HIRESERVE SectionIndex = 0xffff /* Last of reserved range. */
    )
    
    var shnStrings = []intName{
    	{0, "SHN_UNDEF"},
    	{0xff00, "SHN_LOPROC"},
    	{0xff20, "SHN_LOOS"},
    	{0xfff1, "SHN_ABS"},
    	{0xfff2, "SHN_COMMON"},
    	{0xffff, "SHN_XINDEX"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/debug/macho/file_test.go

    			&Dylib{nil, "/usr/lib/libSystem.B.dylib", 0x2, 0x6f0104, 0x10000},
    		},
    		[]*SectionHeader{
    			{"__text", "__TEXT", 0x1f68, 0x88, 0xf68, 0x2, 0x0, 0x0, 0x80000400},
    			{"__cstring", "__TEXT", 0x1ff0, 0xd, 0xff0, 0x0, 0x0, 0x0, 0x2},
    			{"__data", "__DATA", 0x2000, 0x14, 0x1000, 0x2, 0x0, 0x0, 0x0},
    			{"__dyld", "__DATA", 0x2014, 0x1c, 0x1014, 0x2, 0x0, 0x0, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  6. src/image/color/ycbcr.go

    	// returns values in the range [0, 0xffff] instead of [0, 0xff].
    
    	w := 0xffff - uint32(c.K)*0x101
    	r := (0xffff - uint32(c.C)*0x101) * w / 0xffff
    	g := (0xffff - uint32(c.M)*0x101) * w / 0xffff
    	b := (0xffff - uint32(c.Y)*0x101) * w / 0xffff
    	return r, g, b, 0xffff
    }
    
    // CMYKModel is the [Model] for CMYK colors.
    var CMYKModel Model = ModelFunc(cmykModel)
    
    func cmykModel(c Color) Color {
    	if _, ok := c.(CMYK); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    // Caller must ensure len(b) >= 2.
    func isJamoVT(b []byte) bool {
    	// True if (rune & 0xff00) == jamoLBase
    	return b[0] == jamoLBase0 && (b[1]&0xFC) == jamoLBase1
    }
    
    func isHangulWithoutJamoT(b []byte) bool {
    	c, _ := utf8.DecodeRune(b)
    	c -= hangulBase
    	return c < jamoLVTCount && c%jamoTCount == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    // Caller must ensure len(b) >= 2.
    func isJamoVT(b []byte) bool {
    	// True if (rune & 0xff00) == jamoLBase
    	return b[0] == jamoLBase0 && (b[1]&0xFC) == jamoLBase1
    }
    
    func isHangulWithoutJamoT(b []byte) bool {
    	c, _ := utf8.DecodeRune(b)
    	c -= hangulBase
    	return c < jamoLVTCount && c%jamoTCount == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  9. src/syscall/zerrors_netbsd_386.go

    	F_GETNOSIGPIPE                    = 0xd
    	F_GETOWN                          = 0x5
    	F_MAXFD                           = 0xb
    	F_OK                              = 0x0
    	F_PARAM_MASK                      = 0xfff
    	F_PARAM_MAX                       = 0xfff
    	F_RDLCK                           = 0x1
    	F_SETFD                           = 0x2
    	F_SETFL                           = 0x4
    	F_SETLK                           = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_netbsd_arm64.go

    	F_GETNOSIGPIPE                    = 0xd
    	F_GETOWN                          = 0x5
    	F_MAXFD                           = 0xb
    	F_OK                              = 0x0
    	F_PARAM_MASK                      = 0xfff
    	F_PARAM_MAX                       = 0xfff
    	F_RDLCK                           = 0x1
    	F_SETFD                           = 0x2
    	F_SETFL                           = 0x4
    	F_SETLK                           = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
Back to top