Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for checkSize (0.13 sec)

  1. src/cmd/compile/internal/types/size.go

    // is needed immediately.  CheckSize makes sure the
    // size is evaluated eventually.
    
    var deferredTypeStack []*Type
    
    func CheckSize(t *Type) {
    	if t == nil {
    		return
    	}
    
    	// function arg structs should not be checked
    	// outside of the enclosing function.
    	if t.IsFuncArgStruct() {
    		base.Fatalf("CheckSize %v", t)
    	}
    
    	if defercalc == 0 {
    		CalcSize(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/io/ioutil/ioutil_test.go

    // license that can be found in the LICENSE file.
    
    package ioutil_test
    
    import (
    	"bytes"
    	. "io/ioutil"
    	"os"
    	"path/filepath"
    	"runtime"
    	"testing"
    )
    
    func checkSize(t *testing.T, path string, size int64) {
    	dir, err := os.Stat(path)
    	if err != nil {
    		t.Fatalf("Stat %q (looking for size %d): %s", path, size, err)
    	}
    	if dir.Size() != size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/universe.go

    	Types[TINTER] = NewInterface(nil)
    	CheckSize(Types[TINTER])
    
    	defBasic := func(kind Kind, pkg *Pkg, name string) *Type {
    		typ := newType(kind)
    		obj := defTypeName(pkg.Lookup(name), typ)
    		typ.obj = obj
    		if kind != TANY {
    			CheckSize(typ)
    		}
    		return typ
    	}
    
    	for _, s := range &basicTypes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	defer Remove(f.Name())
    	defer f.Close()
    
    	checkSize(t, f, 0)
    	f.Write([]byte("hello, world\n"))
    	checkSize(t, f, 13)
    	f.Truncate(10)
    	checkSize(t, f, 10)
    	f.Truncate(1024)
    	checkSize(t, f, 1024)
    	f.Truncate(0)
    	checkSize(t, f, 0)
    	_, err := f.Write([]byte("surprise!"))
    	if err == nil {
    		checkSize(t, f, 13+9) // wrote at offset past where hello, world was.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    	base.Errorf("cannot use promoted field %v in struct literal of type %v", strings.Join(ep, "."), typ)
    	return nil
    }
    
    // tcConv typechecks an OCONV node.
    func tcConv(n *ir.ConvExpr) ir.Node {
    	types.CheckSize(n.Type()) // ensure width is calculated for backend
    	n.X = Expr(n.X)
    	n.X = convlit1(n.X, n.Type(), true, nil)
    	t := n.X.Type()
    	if t == nil || n.Type() == nil {
    		n.SetType(nil)
    		return n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	// It is 19K on linux/amd64, with separate-code in binutils ld and 64k being most common alignment
    	// 4*64k should be enough, but this might need revision eventually.
    	checkSize(t, "./trivial.pie", 256000)
    }
    
    // Check that the file size does not exceed a limit.
    func checkSize(t *testing.T, f string, limit int64) {
    	fi, err := os.Stat(f)
    	if err != nil {
    		t.Fatalf("stat failed: %v", err)
    	}
    	if sz := fi.Size(); sz > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/func.go

    		n.SetType(l.Type())
    		return tcConv(n)
    	}
    
    	RewriteNonNameCall(n)
    	typecheckargs(n)
    	t := l.Type()
    	if t == nil {
    		n.SetType(nil)
    		return n
    	}
    	types.CheckSize(t)
    
    	switch l.Op() {
    	case ir.ODOTINTER:
    		n.SetOp(ir.OCALLINTER)
    
    	case ir.ODOTMETH:
    		l := l.(*ir.SelectorExpr)
    		n.SetOp(ir.OCALLMETH)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/expr.go

    	// Eagerly compute sizes of all expressions for the back end.
    	if typ := n.Type(); typ != nil && typ.Kind() != types.TBLANK && !typ.IsFuncArgStruct() {
    		types.CheckSize(typ)
    	}
    	if n, ok := n.(*ir.Name); ok && n.Heapaddr != nil {
    		types.CheckSize(n.Heapaddr.Type())
    	}
    	if ir.IsConst(n, constant.String) {
    		// Emit string symbol now to avoid emitting
    		// any concurrently during the backend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/stmt.go

    		return
    	}
    
    	lhs, rhs := []ir.Node{n.X}, []ir.Node{n.Y}
    	assign(n, lhs, rhs)
    	n.X, n.Y = lhs[0], rhs[0]
    
    	// TODO(mdempsky): This seems out of place.
    	if !ir.IsBlank(n.X) {
    		types.CheckSize(n.X.Type()) // ensure width is calculated for backend
    	}
    }
    
    func tcAssignList(n *ir.AssignListStmt) {
    	if base.EnableTrace && base.Flag.LowerT {
    		defer tracePrint("tcAssignList", n)(nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    		delete(p.height, re)
    	}
    	re.Sub0[0] = p.free
    	p.free = re
    }
    
    func (p *parser) checkLimits(re *Regexp) {
    	if p.numRunes > maxRunes {
    		panic(ErrLarge)
    	}
    	p.checkSize(re)
    	p.checkHeight(re)
    }
    
    func (p *parser) checkSize(re *Regexp) {
    	if p.size == nil {
    		// We haven't started tracking size yet.
    		// Do a relatively cheap check to see if we need to start.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top