Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for Alignment (0.32 sec)

  1. src/runtime/align_test.go

    		varDesc[i] = v[1]
    	}
    
    	// Check all of our alignments. This is the actual core of the test.
    	for i, d := range runtime.AtomicFields {
    		if d%8 != 0 {
    			t.Errorf("field alignment of %s failed: offset is %d", fieldDesc[i], d)
    		}
    	}
    	for i, p := range runtime.AtomicVariables {
    		if uintptr(p)%8 != 0 {
    			t.Errorf("variable alignment of %s failed: address is %x", varDesc[i], p)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/groovy/settings.gradle

    rootProject.name = "dependency-alignment-with-platform"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  3. src/internal/goarch/goarch.go

    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = _PCQuantum
    
    // Int64Align is the required alignment for a 64-bit integer (4 on 32-bit systems, 8 on 64-bit).
    const Int64Align = PtrSize
    
    // MinFrameSize is the size of the system-reserved words at the bottom
    // of a frame (just above the architectural stack pointer).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. src/runtime/symtab_test.go

    }
    
    // Test that CallersFrames handles PCs in the alignment region between
    // functions (int 3 on amd64) without crashing.
    //
    // Go will never generate a stack trace containing such an address, as it is
    // not a valid call site. However, the cgo traceback function passed to
    // runtime.SetCgoTraceback may not be completely accurate and may incorrect
    // provide PCs in Go code or the alignment region between functions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClass.kt

    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 280 bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/l.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package amd64
    
    const (
    	maxAlign  = 32 // max data alignment
    	minAlign  = 1  // min data alignment
    	funcAlign = 32
    )
    
    /* Used by ../internal/ld/dwarf.go */
    const (
    	dwarfRegSP = 7
    	dwarfRegLR = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:02:35 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/x86/l.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package x86
    
    const (
    	maxAlign  = 32 // max data alignment
    	minAlign  = 1  // min data alignment
    	funcAlign = 16
    )
    
    /* Used by ../internal/ld/dwarf.go */
    const (
    	dwarfRegSP = 4
    	dwarfRegLR = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/runtime_mmap_test.go

    	if err == 0 {
    		t.Errorf("Mmap should have failed with half-page alignment %d, but succeeded: %v", ps/2, err)
    	}
    
    	// Mmap should succeed at a full page into the buffer.
    	_, err = runtime.Mmap(unsafe.Pointer(uintptr(b)+ps), ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE|runtime.MAP_FIXED, -1, 0)
    	if err != 0 {
    		t.Errorf("Mmap at full-page alignment %d failed: %v", ps, 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)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromAnotherModule.kt

    // MODULE: dep
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public static class RClass {}
    }
    
    // MODULE: main(dep)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon.RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 321 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy/settings.gradle

    rootProject.name = "dependency-alignment"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
Back to top