Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for encloses (0.33 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    }
    
    // perLoopStep is part of the encoding of loop-spanning control flow
    // for function range iterators.  Each multiple of two encodes a "return false"
    // passing control to an enclosing iterator; a terminal value of 1 encodes
    // "return true" (i.e., local continue) from the body function, and a terminal
    // value of 0 encodes executing the remainder of the body function.
    const perLoopStep = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	if tw.err != nil {
    		return 0, tw.err
    	}
    	n, err := tw.curr.ReadFrom(r)
    	if err != nil && err != ErrWriteTooLong {
    		tw.err = err
    	}
    	return n, err
    }
    
    // Close closes the tar archive by flushing the padding, and writing the footer.
    // If the current file (from a prior call to [Writer.WriteHeader]) is not fully written,
    // then this returns an error.
    func (tw *Writer) Close() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/s390x/ssa.go

    		s.Call(v)
    	case ssa.OpS390XCALLtail:
    		s.TailCall(v)
    	case ssa.OpS390XLoweredWB:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		// AuxInt encodes how many buffer entries we need.
    		p.To.Sym = ir.Syms.GCWriteBarrier[v.AuxInt-1]
    	case ssa.OpS390XLoweredPanicBoundsA, ssa.OpS390XLoweredPanicBoundsB, ssa.OpS390XLoweredPanicBoundsC:
    		p := s.Prog(obj.ACALL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		// TODO: add size-mismatched indexed loads, like MOVBstoreidx4.
    
    		// For storeconst ops, the AuxInt field encodes both
    		// the value to store and an address offset of the store.
    		// Cast AuxInt to a ValAndOff to extract Val and Off fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    // For example, the following string:
    //
    //	`a b:"c d" 'e''f'  "g\""`
    //
    // Would be parsed as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    			q.To.Type = obj.TYPE_REG
    			q.To.Reg = ppc64.REG_R2
    		}
    
    	case ssa.OpPPC64LoweredWB:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		// AuxInt encodes how many buffer entries we need.
    		p.To.Sym = ir.Syms.GCWriteBarrier[v.AuxInt-1]
    
    	case ssa.OpPPC64LoweredPanicBoundsA, ssa.OpPPC64LoweredPanicBoundsB, ssa.OpPPC64LoweredPanicBoundsC:
    		p := s.Prog(obj.ACALL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    				// Tests of packages in the main module are in "all", in the sense that
    				// they cause the packages they import to also be in "all". So are tests
    				// of packages in "all" if "all" closes over test dependencies.
    				testFlags |= pkgInAll
    			}
    			ld.pkgTest(ctx, pkg, testFlags)
    		}
    	}
    
    	if new.has(pkgInAll) && !old.has(pkgInAll|pkgImportsLoaded) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BSRL", argLength: 1, reg: gp11, asm: "BSRL", typ: "UInt32", clobberFlags: true}, // # of high-order zeroes in 32-bit arg
    
    		// CMOV instructions: 64, 32 and 16-bit sizes.
    		// if arg2 encodes a true result, return arg1, else arg0
    		{name: "CMOVQEQ", argLength: 3, reg: gp21, asm: "CMOVQEQ", resultInArg0: true},
    		{name: "CMOVQNE", argLength: 3, reg: gp21, asm: "CMOVQNE", resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    	tailCall          bool      // is a tail call
    	nilCheck          bool      // this op is a nil check on arg0
    	faultOnNilArg0    bool      // this op will fault if arg0 is nil (and aux encodes a small offset)
    	faultOnNilArg1    bool      // this op will fault if arg1 is nil (and aux encodes a small offset)
    	usesScratch       bool      // this op requires scratch memory space
    	hasSideEffects    bool      // for "reasons", not to be eliminated.  E.g., atomic store, #19182.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/main.go

    }
    
    type regInfo struct {
    	// inputs[i] encodes the set of registers allowed for the i'th input.
    	// Inputs that don't use registers (flags, memory, etc.) should be 0.
    	inputs []regMask
    	// clobbers encodes the set of registers that are overwritten by
    	// the instruction (other than the output registers).
    	clobbers regMask
    	// outputs[i] encodes the set of registers allowed for the i'th output.
    	outputs []regMask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top