Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 142 for 0xfff (0.04 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	}
    
    	o1 |= uint32((t >> 16) & 0xFFFF)
    
    	switch r.Type() {
    	case objabi.R_ADDRPOWER_TOCREL_DS:
    		if useAddi {
    			o2 |= uint32(t) & 0xFFFF
    		} else {
    			if t&3 != 0 {
    				ldr.Errorf(s, "bad DS reloc for %s: %d", ldr.SymName(s), ldr.SymValue(rs))
    			}
    			o2 |= uint32(t) & 0xFFFC
    		}
    	case objabi.R_ADDRPOWER_TOCREL:
    		o2 |= uint32(t) & 0xffff
    	default:
    		return -1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    			writeConsoleUTF16(handle, utf16tmp[:w])
    			w = 0
    		}
    		if r < 0x10000 {
    			utf16tmp[w] = uint16(r)
    			w++
    		} else {
    			r -= 0x10000
    			utf16tmp[w] = surrogateMin + uint16(r>>10)&0x3ff
    			utf16tmp[w+1] = surr2 + uint16(r)&0x3ff
    			w += 2
    		}
    	}
    	writeConsoleUTF16(handle, utf16tmp[:w])
    	unlock(&utf16ConsoleBackLock)
    	return total
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    		default:
    			return C_GOK
    		}
    
    		if c.instoffset >= 0 {
    			if c.instoffset == 0 {
    				return C_ZCON
    			}
    			if c.instoffset <= 0x7fff {
    				return C_SCON
    			}
    			if c.instoffset <= 0xffff {
    				return C_ANDCON
    			}
    			if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */
    				return C_UCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	0x1f0: 0x0113, 0x1f1: 0x0112, 0x1f2: 0x0113, 0x1f3: 0x0112, 0x1f4: 0x0014, 0x1f5: 0x0004,
    	0x1f6: 0x0113, 0x1f7: 0x0112, 0x1fa: 0x0015, 0x1fb: 0x4d52,
    	0x1fc: 0x5052, 0x1fd: 0x5052, 0x1ff: 0x5353,
    	// Block 0x8, offset 0x200
    	0x204: 0x0004, 0x205: 0x0004,
    	0x206: 0x2a13, 0x207: 0x0054, 0x208: 0x2513, 0x209: 0x2713, 0x20a: 0x2513,
    	0x20c: 0x5653, 0x20e: 0x5953, 0x20f: 0x5c53, 0x210: 0x138a, 0x211: 0x2013,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    	0x1f0: 0x0113, 0x1f1: 0x0112, 0x1f2: 0x0113, 0x1f3: 0x0112, 0x1f4: 0x0014, 0x1f5: 0x0004,
    	0x1f6: 0x0113, 0x1f7: 0x0112, 0x1fa: 0x0015, 0x1fb: 0x4d52,
    	0x1fc: 0x5052, 0x1fd: 0x5052, 0x1ff: 0x5353,
    	// Block 0x8, offset 0x200
    	0x204: 0x0004, 0x205: 0x0004,
    	0x206: 0x2a13, 0x207: 0x0054, 0x208: 0x2513, 0x209: 0x2713, 0x20a: 0x2513,
    	0x20c: 0x5653, 0x20e: 0x5953, 0x20f: 0x5c53, 0x210: 0x138a, 0x211: 0x2013,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	SOCK_SEQPACKET                = 0x6
    	SOCK_STREAM                   = 0x2
    	SOCK_TYPE_MASK                = 0xffff
    	SOL_FILTER                    = 0xfffc
    	SOL_PACKET                    = 0xfffd
    	SOL_ROUTE                     = 0xfffe
    	SOL_SOCKET                    = 0xffff
    	SOMAXCONN                     = 0x80
    	SO_ACCEPTCONN                 = 0x2
    	SO_ALL                        = 0x3f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	IN_CLASSA_NET                     = 0xff000000
    	IN_CLASSA_NSHIFT                  = 0x18
    	IN_CLASSB_HOST                    = 0xffff
    	IN_CLASSB_MAX                     = 0x10000
    	IN_CLASSB_NET                     = 0xffff0000
    	IN_CLASSB_NSHIFT                  = 0x10
    	IN_CLASSC_HOST                    = 0xff
    	IN_CLASSC_NET                     = 0xffffff00
    	IN_CLASSC_NSHIFT                  = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  8. src/syscall/zerrors_dragonfly_amd64.go

    	IN_CLASSA_NET                     = 0xff000000
    	IN_CLASSA_NSHIFT                  = 0x18
    	IN_CLASSB_HOST                    = 0xffff
    	IN_CLASSB_MAX                     = 0x10000
    	IN_CLASSB_NET                     = 0xffff0000
    	IN_CLASSB_NSHIFT                  = 0x10
    	IN_CLASSC_HOST                    = 0xff
    	IN_CLASSC_NET                     = 0xffffff00
    	IN_CLASSC_NSHIFT                  = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x00, 0x00, 0x01, 0x43, 0x19, 0x24, 0x08, 0x00,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    	// Entry 580 - 5BF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	return imm<<12 | rd<<7 | enc.opcode
    }
    
    // encodeJImmediate encodes an immediate for a J-type RISC-V instruction.
    func encodeJImmediate(imm uint32) uint32 {
    	return (imm>>20)<<31 | ((imm>>1)&0x3ff)<<21 | ((imm>>11)&0x1)<<20 | ((imm>>12)&0xff)<<12
    }
    
    // encodeJ encodes a J-type RISC-V instruction.
    func encodeJ(ins *instruction) uint32 {
    	imm := immI(ins.as, ins.imm, 21)
    	rd := regI(ins.rd)
    	enc := encode(ins.as)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top