Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for XXX64 (0.02 sec)

  1. src/runtime/align_test.go

    	if !ok {
    		return v
    	}
    	if p.Name != "atomic" {
    		return v
    	}
    	if !strings.HasSuffix(f.Sel.Name, "64") {
    		return v
    	}
    
    	a := c.Args[0]
    
    	// This is a call to atomic.XXX64(a, ...). Make sure a is aligned to 8 bytes.
    	// XXX = one of Load, Store, Cas, etc.
    	// The arg we care about the alignment of is always the first one.
    
    	if u, ok := a.(*ast.UnaryExpr); ok && u.Op == token.AND {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top