Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeFunctionSec (0.14 sec)

  1. src/cmd/link/internal/wasm/asm.go

    		writeUleb128(ctxt.Out, uint64(fn.Type))
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeFunctionSec writes the section that declares the types of functions.
    // The bodies of these functions will later be provided in the "code" section.
    func writeFunctionSec(ctxt *ld.Link, fns []*wasmFunc) {
    	sizeOffset := writeSecHeader(ctxt, sectionFunction)
    
    	writeUleb128(ctxt.Out, uint64(len(fns)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top