Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for combine2string (0.12 sec)

  1. test/codegen/writebarrier.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    func combine2string(p *[2]string, a, b string) {
    	// amd64:`.*runtime[.]gcWriteBarrier4\(SB\)`
    	// arm64:`.*runtime[.]gcWriteBarrier4\(SB\)`
    	p[0] = a
    	// amd64:-`.*runtime[.]gcWriteBarrier`
    	// arm64:-`.*runtime[.]gcWriteBarrier`
    	p[1] = b
    }
    
    func combine4string(p *[4]string, a, b, c, d string) {
    	// amd64:`.*runtime[.]gcWriteBarrier8\(SB\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 00:16:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top