Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for vnopts (0.27 sec)

  1. src/cmd/cgo/ast_go118.go

    package main
    
    import (
    	"go/ast"
    	"go/token"
    )
    
    func (f *File) walkUnexpected(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    	switch n := x.(type) {
    	default:
    		error_(token.NoPos, "unexpected type %T in walk", x)
    		panic("unexpected type")
    
    	case *ast.IndexListExpr:
    		f.walk(&n.X, ctxExpr, visit)
    		f.walk(n.Indices, ctxExpr, visit)
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 30 21:45:10 GMT 2022
    - 730 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	VX	V2, V1, V0              // e7021000006d
    	VN	V16, V1                 // e71010000468
    	VNC	V16, V1                 // e71010000469
    	VO	V16, V1                 // e7101000046a
    	VX	V16, V1                 // e7101000046d
    	VNOT	V16, V1                 // e7101000046b
    	VCLZF	V16, V17                // e71000002c53
    	VLVGP	R3, R4, V8              // e78340000062
    	VGEG	$1, 8(R15)(V30*1), V31  // e7fef0081c12
    	VSCEG	$1, V31, 16(R15)(V30*1) // e7fef0101c1a
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast_go1.go

    //go:build compiler_bootstrap
    
    package main
    
    import (
    	"go/ast"
    	"go/token"
    )
    
    func (f *File) walkUnexpected(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    	error_(token.NoPos, "unexpected type %T in walk", x)
    	panic("unexpected type")
    }
    
    func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList {
    	return nil
    }
    
    func typeSpecTypeParams(n *ast.TypeSpec) *ast.FieldList {
    	return nil
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 30 21:45:10 GMT 2022
    - 578 bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		// to users debugging preamble mistakes. See issue 8442.
    		preambleErrors := p.gccErrors([]byte(builtinProlog + f.Preamble))
    		if len(preambleErrors) > 0 {
    			error_(token.NoPos, "\n%s errors for preamble:\n%s", gccBaseCmd[0], preambleErrors)
    		}
    
    		fatalf("unresolved names")
    	}
    
    	return needType
    }
    
    // loadDWARF parses the DWARF debug information generated
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg go/token, const MAP Token
    pkg go/token, const MUL Token
    pkg go/token, const MUL_ASSIGN Token
    pkg go/token, const NEQ Token
    pkg go/token, const NOT Token
    pkg go/token, const NoPos Pos
    pkg go/token, const OR Token
    pkg go/token, const OR_ASSIGN Token
    pkg go/token, const PACKAGE Token
    pkg go/token, const PERIOD Token
    pkg go/token, const QUO Token
    pkg go/token, const QUO_ASSIGN Token
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.1.txt

    pkg go/token, const LowestPrec = 0
    pkg go/token, const MAP = 77
    pkg go/token, const MUL = 14
    pkg go/token, const MUL_ASSIGN = 25
    pkg go/token, const NEQ = 44
    pkg go/token, const NOT = 43
    pkg go/token, const NoPos = 0
    pkg go/token, const OR = 18
    pkg go/token, const OR_ASSIGN = 29
    pkg go/token, const PACKAGE = 78
    pkg go/token, const PERIOD = 53
    pkg go/token, const QUO = 15
    pkg go/token, const QUO_ASSIGN = 26
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. doc/asm.html

    </p>
    
    <p>
    A data symbol marked with the <code>NOPTR</code> flag (see above)
    is treated as containing no pointers to runtime-allocated data.
    A data symbol with the <code>RODATA</code> flag
    is allocated in read-only memory and is therefore treated
    as implicitly marked <code>NOPTR</code>.
    A data symbol with a total size smaller than a pointer
    is also treated as implicitly marked <code>NOPTR</code>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top