Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for progx (0.09 sec)

  1. src/runtime/mheap.go

    type spanAllocType uint8
    
    const (
    	spanAllocHeap          spanAllocType = iota // heap span
    	spanAllocStack                              // stack span
    	spanAllocPtrScalarBits                      // unrolled GC prog bitmap span
    	spanAllocWorkBuf                            // work buf span
    )
    
    // manual returns true if the span allocation is manually managed.
    func (s spanAllocType) manual() bool {
    	return s != spanAllocHeap
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Annotate Ref in Prog with C types by parsing gcc debug output.
    // Conversion of debug output to Go types.
    
    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top