Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Loss (0.02 sec)

  1. src/cmd/compile/internal/syntax/pos.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "fmt"
    
    // PosMax is the largest line or column value that can be represented without loss.
    // Incoming values (arguments) larger than PosMax will be set to PosMax.
    //
    // Keep this consistent with maxLineCol in go/scanner.
    const PosMax = 1 << 30
    
    // A Pos represents an absolute (line, col) source position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    // then compact the set of argument bitmaps separately from the set of
    // local variable bitmaps. As of 2014-04-02, doing this to the godoc binary
    // is actually a net loss: we save about 50k of argument bitmaps but the new
    // PCDATA tables cost about 100k. So for now we keep using a single index for
    // both bitmap lists.
    func (lv *liveness) compact(b *ssa.Block) {
    	pos := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top