Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for COMPLEMENT (0.13 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_LCDBR   uint32 = 0xB313 // FORMAT_RRE        LOAD COMPLEMENT (long BFP)
    	op_LCDFR   uint32 = 0xB373 // FORMAT_RRE        LOAD COMPLEMENT (long)
    	op_LCDR    uint32 = 0x2300 // FORMAT_RR         LOAD COMPLEMENT (long HFP)
    	op_LCEBR   uint32 = 0xB303 // FORMAT_RRE        LOAD COMPLEMENT (short BFP)
    	op_LCER    uint32 = 0x3300 // FORMAT_RR         LOAD COMPLEMENT (short HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BTCL", argLength: 2, reg: gp21, asm: "BTCL", resultInArg0: true, clobberFlags: true},                   // complement bit arg1%32 in arg0
    		{name: "BTCQ", argLength: 2, reg: gp21, asm: "BTCQ", resultInArg0: true, clobberFlags: true},                   // complement bit arg1%64 in arg0
    		{name: "BTRL", argLength: 2, reg: gp21, asm: "BTRL", resultInArg0: true, clobberFlags: true},                   // reset bit arg1%32 in arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	",":                           "\u002c",
    	"@":                          "\u0040",
    	"∁":                            "\u2201",
    	"∘":                          "\u2218",
    	"∁":                      "\u2201",
    	"ℂ":                       "\u2102",
    	"≅":                            "\u2245",
    	"⩭":                         "\u2a6d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"comma;":                           '\U0000002C',
    		"commat;":                          '\U00000040',
    		"comp;":                            '\U00002201',
    		"compfn;":                          '\U00002218',
    		"complement;":                      '\U00002201',
    		"complexes;":                       '\U00002102',
    		"cong;":                            '\U00002245',
    		"congdot;":                         '\U00002A6D',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    // Data is found in Header.Ident[EI_DATA] and Header.Data.
    type Data byte
    
    const (
    	ELFDATANONE Data = 0 /* Unknown data format. */
    	ELFDATA2LSB Data = 1 /* 2's complement little-endian. */
    	ELFDATA2MSB Data = 2 /* 2's complement big-endian. */
    )
    
    var dataStrings = []intName{
    	{0, "ELFDATANONE"},
    	{1, "ELFDATA2LSB"},
    	{2, "ELFDATA2MSB"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    byte        alias for uint8
    rune        alias for int32
    </pre>
    
    <p>
    The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using
    <a href="https://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>.
    </p>
    
    <p>
    There is also a set of predeclared numeric types with implementation-specific sizes:
    </p>
    
    <pre class="grammar">
    uint     either 32 or 64 bits
    int      same size as uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top