Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 16B (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //     one register with arrangement specifier encoded in the "size:Q" field which can have the following values:
    //       8B when size = 00, Q = 0
    //       16B when size = 00, Q = 1
    //       4H when size = 01, Q = 0
    //       8H when size = 01, Q = 1
    //       2S when size = 10, Q = 0
    //       4S when size = 10, Q = 1
    //       2D when size = 11, Q = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  2. src/text/tabwriter/tabwriter_test.go

    			"a\tb\tc\td\n" +
    			"a\tb\tc\td\te\n",
    	},
    
    	{
    		"16b",
    		100, 100, 0, '\t', DiscardEmptyColumns,
    		"a\vb\v\vd\n" +
    			"a\vb\v\vd\ve\n" +
    			"a\n" +
    			"a\vb\vc\vd\n" +
    			"a\vb\vc\vd\ve\n",
    
    		"a\tb\td\n" +
    			"a\tb\td\te\n" +
    			"a\n" +
    			"a\tb\tc\td\n" +
    			"a\tb\tc\td\te\n",
    	},
    
    	{
    		"16b debug",
    		100, 100, 0, '\t', DiscardEmptyColumns | Debug,
    		"a\vb\v\vd\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    	MOVD	0(R10), R11
    	MOVD	g_m(R11), R3
    	MOVD	m_p(R3), R3
    	MOVD	p_raceprocctx(R3), R3
    	MOVD	R3, (R4)
    	RET
    
    rest:
    	// Save registers according to the host PPC64 ABI
    	// and reserve 16B for argument storage.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(16)
    
    	// Load g, and switch to g0 if not already on it.
    	MOVD	runtimeĀ·tls_g(SB), R10
    	MOVD	0(R10), g
    
    	MOVD	g_m(g), R7
    	MOVD	m_g0(R7), R8
    	CMP	g, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm_test.go

    		{[]byte(x16pgm), "align=0x20", false},   // Increased alignment needed
    		{[]byte(x32pgm), "align=0x40", false},   // Worst case alignment needed
    		{[]byte(x64pgm), "align=0x0", true},     // 0 aligned is default (16B) alignment
    		{[]byte(x64pgmA64), "align=0x40", true}, // extra alignment + nop
    		{[]byte(x64pgmA32), "align=0x20", true}, // extra alignment + nop
    	}
    
    	for _, pgm := range pgms {
    		tmpfile := filepath.Join(dir, "x.s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		result := a.r.String()
    		arrange := a.a.String()
    		c := []rune(arrange)
    		switch len(c) {
    		case 3:
    			c[1], c[2] = c[2], c[1] // .8B -> .B8
    		case 4:
    			c[1], c[2], c[3] = c[3], c[1], c[2] // 16B -> B16
    		}
    		arrange = string(c)
    		result += arrange
    		if a.cnt > 0 {
    			result = "[" + result
    			for i := 1; i < int(a.cnt); i++ {
    				cur := V0 + Reg((uint16(a.r)-uint16(V0)+uint16(i))&31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	Arrangement1Q
    )
    
    func (a Arrangement) String() (result string) {
    	switch a {
    	case ArrangementB:
    		result = ".B"
    	case Arrangement8B:
    		result = ".8B"
    	case Arrangement16B:
    		result = ".16B"
    	case ArrangementH:
    		result = ".H"
    	case Arrangement4H:
    		result = ".4H"
    	case Arrangement8H:
    		result = ".8H"
    	case ArrangementS:
    		result = ".S"
    	case Arrangement2S:
    		result = ".2S"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    			// The assembler can generate this opcode in 1 (on Power10) or 2 opcodes.
    
    		// Otherwise, see if the large constant can be generated with 2 instructions. If not, load it from memory.
    		default:
    			// Is this a shifted 16b constant? If so, rewrite it to avoid a creating and loading a constant.
    			val := p.From.Offset
    			shift := bits.TrailingZeros64(uint64(val))
    			mask := int64(0xFFFF) << shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top