Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 286 for aligned2 (0.12 sec)

  1. test/fixedbugs/issue19137.go

    	_ = x
    	return b // b is not 8-byte aligned to SP
    }
    func zero() ([20]byte, [20]byte) {
    	var x [1000]int // a large stack frame
    	_ = x
    	return [20]byte{}, [20]byte{} // the second return value is not 8-byte aligned to SP
    }
    
    // Issue 21992: unaligned offset between 256 and 504 and handled
    // incorrectly.
    type T2 struct {
    	a [257]byte
    	// fields below are not 8-, 4-, 2-byte aligned
    	b [8]byte
    	c [4]byte
    	d [2]byte
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 22:28:17 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/path/DefaultPathTranslatorTest.java

            String aligned = new DefaultPathTranslator().alignToBaseDirectory("${basedir}", basedir);
    
            assertEquals(basedir.getAbsolutePath(), aligned);
        }
    
        @Test
        void testAlignToBasedirWhereBasedirExpressionIsTheValuePrefix() {
            File basedir = new File(System.getProperty("java.io.tmpdir"), "test").getAbsoluteFile();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/runtime/memclr_arm64.s

    	STP	(ZR, ZR), (R0)
    	RET
    
    zero_by_16:
    	// n greater than 16 bytes, check if the start address is aligned
    	NEG	R0, R4
    	ANDS	$15, R4, R4
    	// Try zeroing using zva if the start address is aligned with 16
    	BEQ	try_zva
    
    	// Non-aligned store
    	STP	(ZR, ZR), (R0)
    	// Make the destination aligned
    	SUB	R4, R1, R1
    	ADD	R4, R0, R0
    	B	try_zva
    
    tail_maybe_long:
    	CMP	$64, R1
    	BHS	no_zva
    
    tail63:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/subtle/xor_generic.go

    	y := unsafe.Slice(yb, n)
    
    	if supportsUnaligned || aligned(dstb, xb, yb) {
    		xorLoop(words(dst), words(x), words(y))
    		if uintptr(n)%wordSize == 0 {
    			return
    		}
    		done := n &^ int(wordSize-1)
    		dst = dst[done:]
    		x = x[done:]
    		y = y[done:]
    	}
    	xorLoop(dst, x, y)
    }
    
    // aligned reports whether dst, x, and y are all word-aligned pointers.
    func aligned(dst, x, y *byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 31 23:25:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/go/printer/testdata/statements.golden

    		// this comment should be indented
    	case 2:
    		x = 0
    	// this comment should not be indented, it is aligned with the next case
    	case 3:
    		x = 0
    		/* indented comment
    		   aligned
    		   aligned
    		*/
    		// bla
    		/* and more */
    	case 4:
    		x = 0
    	/* not indented comment
    	   aligned
    	   aligned
    	*/
    	// bla
    	/* and more */
    	case 5:
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 12 18:18:12 UTC 2014
    - 8K bytes
    - Viewed (0)
  6. src/go/printer/testdata/statements.input

    		// this comment should be indented
    	case 2:
    		x = 0
    	// this comment should not be indented, it is aligned with the next case
    	case 3:
    		x = 0
    		/* indented comment
    		   aligned
    		   aligned
    		*/
    		// bla
    		/* and more */
    	case 4:
    		x = 0
    	/* not indented comment
    	   aligned
    	   aligned
    	*/
    	// bla
    	/* and more */
    	case 5:
    	}
    }
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 8.3K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.input

    var _ = T{0: 0} // not aligned
    var _ = T{0: 0, // not aligned
    	1: 1, // aligned
    	22: 22, // aligned
    	333: 333, 1234: 12, 12345: 0, // first on line aligned
    }
    
    
    // test cases form issue 8685
    // not aligned
    var _ = map[int]string{1: "spring", 2: "summer",
    					3:             "autumn", 4: "winter"}
    
    // not aligned
    var _ = map[string]string{"a": "spring", "b": "summer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  8. src/go/printer/testdata/declarations.golden

    var _ = T{0: 0}	// not aligned
    var _ = T{0: 0,	// not aligned
    	1:	1,				// aligned
    	22:	22,				// aligned
    	333:	333, 1234: 12, 12345: 0,	// first on line aligned
    }
    
    // test cases form issue 8685
    // not aligned
    var _ = map[int]string{1: "spring", 2: "summer",
    	3:	"autumn", 4: "winter"}
    
    // not aligned
    var _ = map[string]string{"a": "spring", "b": "summer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  9. src/runtime/tls_arm.s

    // To do that, the stack pointer must be 8-byte-aligned
    // on some systems, notably FreeBSD.
    // The ARM ABI says the stack pointer must be 8-byte-aligned
    // on entry to any function, but only FreeBSD's C library seems to care.
    // The caller was 8-byte aligned, but we push an LR.
    // Declare a dummy word ($4, not $0) to make sure the
    // frame is 8 bytes and stays 8-byte-aligned.
    TEXT runtimeĀ·_initcgo(SB),NOSPLIT,$4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. src/runtime/runtime_mmap_test.go

    	}
    }
    
    func TestPhysPageSize(t *testing.T) {
    	// Mmap fails if the address is not page aligned, so we can
    	// use this to test if the page size is the true page size.
    	ps := runtime.GetPhysPageSize()
    
    	// Get a region of memory to play with. This should be page-aligned.
    	b, err := runtime.Mmap(nil, 2*ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0)
    	if err != 0 {
    		t.Fatalf("Mmap: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top