Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for 0xfeff (0.14 sec)

  1. src/cmd/compile/internal/syntax/source.go

    	s.r += s.chw
    
    	if s.ch == utf8.RuneError && s.chw == 1 {
    		s.error("invalid UTF-8 encoding")
    		goto redo
    	}
    
    	// BOM's are only allowed as the first character in a file
    	const BOM = 0xfeff
    	if s.ch == BOM {
    		if s.line > 0 || s.col > 0 {
    			s.error("invalid BOM in the middle of the file")
    		}
    		goto redo
    	}
    }
    
    // fill reads more source bytes into s.buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    	nlPos      token.Pos // position of newline in preceding comment
    
    	// public state - ok to modify
    	ErrorCount int // number of errors encountered
    }
    
    const (
    	bom = 0xFEFF // byte order mark, only permitted as very first character
    	eof = -1     // end of file
    )
    
    // Read the next Unicode char into s.ch.
    // s.ch < 0 means end-of-file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    		{0xfe45, 0xfe46, 1},
    		{0xfe49, 0xfe4c, 1},
    		{0xfe50, 0xfe52, 1},
    		{0xfe54, 0xfe57, 1},
    		{0xfe5f, 0xfe61, 1},
    		{0xfe68, 0xfe6a, 2},
    		{0xfe6b, 0xff01, 150},
    		{0xff02, 0xff03, 1},
    		{0xff05, 0xff07, 1},
    		{0xff0a, 0xff0e, 2},
    		{0xff0f, 0xff1a, 11},
    		{0xff1b, 0xff1f, 4},
    		{0xff20, 0xff3c, 28},
    		{0xff61, 0xff64, 3},
    		{0xff65, 0xff65, 1},
    	},
    	R32: []Range32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	SHN_HIPROC    SectionIndex = 0xff1f /* Last processor-specific. */
    	SHN_LOOS      SectionIndex = 0xff20 /* First operating system-specific. */
    	SHN_HIOS      SectionIndex = 0xff3f /* Last operating system-specific. */
    	SHN_ABS       SectionIndex = 0xfff1 /* Absolute values. */
    	SHN_COMMON    SectionIndex = 0xfff2 /* Common data. */
    	SHN_XINDEX    SectionIndex = 0xffff /* Escape; index stored elsewhere. */
    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. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xfff2" type="string" offset="0"/> <!-- V2, L3, CRC -->
          <match value="0xfff3" type="string" offset="0"/> <!-- V2, L3      -->
          <match value="0xfff4" type="string" offset="0"/> <!-- V2, L2, CRC -->
          <match value="0xfff5" type="string" offset="0"/> <!-- V2, L2      -->
          <match value="0xfff6" type="string" offset="0"/> <!-- V2, L1, CRC -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. 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)
  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/cmd/internal/obj/arm/a.out.go

    	C_SBRA
    	C_LBRA
    
    	C_HAUTO  /* halfword insn offset (-0xff to 0xff) */
    	C_FAUTO  /* float insn offset (0 to 0x3fc, word aligned) */
    	C_HFAUTO /* both H and F */
    	C_SAUTO  /* -0xfff to 0xfff */
    	C_LAUTO
    
    	C_HOREG
    	C_FOREG
    	C_HFOREG
    	C_SOREG
    	C_ROREG
    	C_SROREG /* both nil and R */
    	C_LOREG
    
    	C_PC
    	C_SP
    	C_HREG
    
    	C_ADDR /* reference to relocatable address */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. test/intcvt.go

    func main() {
    	chki8(int8(i8), ci8&0xff-1<<8)
    	chki8(int8(i16), ci16&0xff)
    	chki8(int8(i32), ci32&0xff-1<<8)
    	chki8(int8(i64), ci64&0xff)
    	chki8(int8(u8), cu8&0xff-1<<8)
    	chki8(int8(u16), cu16&0xff)
    	chki8(int8(u32), cu32&0xff)
    	chki8(int8(u64), cu64&0xff)
    	//	chki8(int8(f32), 0)
    	//	chki8(int8(f64), 0)
    
    	chki16(int16(i8), ci8&0xffff-1<<16)
    	chki16(int16(i16), ci16&0xffff-1<<16)
    	chki16(int16(i32), ci32&0xffff-1<<16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  10. src/runtime/defs_arm_linux.go

    	SIGSYS    = C.SIGSYS
    
    	FPE_INTDIV = C.FPE_INTDIV & 0xFFFF
    	FPE_INTOVF = C.FPE_INTOVF & 0xFFFF
    	FPE_FLTDIV = C.FPE_FLTDIV & 0xFFFF
    	FPE_FLTOVF = C.FPE_FLTOVF & 0xFFFF
    	FPE_FLTUND = C.FPE_FLTUND & 0xFFFF
    	FPE_FLTRES = C.FPE_FLTRES & 0xFFFF
    	FPE_FLTINV = C.FPE_FLTINV & 0xFFFF
    	FPE_FLTSUB = C.FPE_FLTSUB & 0xFFFF
    
    	BUS_ADRALN = C.BUS_ADRALN & 0xFFFF
    	BUS_ADRERR = C.BUS_ADRERR & 0xFFFF
    	BUS_OBJERR = C.BUS_OBJERR & 0xFFFF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top