Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,502 for tcCopy (0.14 sec)

  1. src/cmd/compile/internal/walk/builtin.go

    		// instantiate memmove(to *any, frm *any, size uintptr)
    		fn = typecheck.LookupRuntime("memmove", t.Elem(), t.Elem())
    		ncopy := mkcall1(fn, nil, init, ir.NewUnaryExpr(base.Pos, ir.OSPTR, s), copyptr, size)
    		init.Append(walkExpr(typecheck.Stmt(ncopy), init))
    
    		return s
    	}
    	// Replace make+copy with runtime.makeslicecopy.
    	// instantiate makeslicecopy(typ *byte, tolen int, fromlen int, from unsafe.Pointer) unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
    		$2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
    		$2 == "LOOP_CONFIGURE" ||
    		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ ||
    		$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
    		$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
    		$2 ~ /^RAW_PAYLOAD_/ ||
    		$2 ~ /^[US]F_/ ||
    		$2 ~ /^TP_STATUS_/ ||
    		$2 ~ /^FALLOC_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/stmt.go

    		visitList(call.Args)
    
    	case ir.OAPPEND, ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:
    		call := call.(*ir.CallExpr)
    		visitList(call.Args)
    		visit(&call.RType)
    
    	case ir.OCOPY:
    		call := call.(*ir.BinaryExpr)
    		visit(&call.X)
    		visit(&call.Y)
    		visit(&call.RType)
    
    	case ir.OCLEAR, ir.OCLOSE, ir.OPANIC:
    		call := call.(*ir.UnaryExpr)
    		visit(&call.X)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    		}
    
    		x.typ = resTyp
    
    	case _Copy:
    		// copy(x, y []T) int
    		dst, _ := coreType(x.typ).(*Slice)
    
    		y := args[1]
    		src0 := coreString(y.typ)
    		if src0 != nil && isString(src0) {
    			src0 = NewSlice(universeByte)
    		}
    		src, _ := src0.(*Slice)
    
    		if dst == nil || src == nil {
    			check.errorf(x, InvalidCopy, invalidArg+"copy expects slice arguments; found %s and %s", x, y)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    		n := n.(*ir.UnaryExpr)
    		l := safeExpr(n.X, init)
    		if l == n.X {
    			return n
    		}
    		a := ir.Copy(n).(*ir.UnaryExpr)
    		a.X = l
    		return walkExpr(typecheck.Expr(a), init)
    
    	case ir.ODOT, ir.ODOTPTR:
    		n := n.(*ir.SelectorExpr)
    		l := safeExpr(n.X, init)
    		if l == n.X {
    			return n
    		}
    		a := ir.Copy(n).(*ir.SelectorExpr)
    		a.X = l
    		return walkExpr(typecheck.Expr(a), init)
    
    	case ir.ODEREF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AFTSQRT, a1: C_FREG, a6: C_U15CON, type_: 93, size: 4},                     /* floating test for sw square root, x-form */
    	{as: ACOPY, a1: C_REG, a6: C_REG, type_: 92, size: 4},                           /* copy/paste facility, x-form */
    	{as: ADARN, a1: C_U15CON, a6: C_REG, type_: 92, size: 4},                        /* deliver random number, x-form */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

        }
    
        RegularSetBuilderImpl(RegularSetBuilderImpl<E> toCopy) {
          super(toCopy);
          this.hashTable = (toCopy.hashTable == null) ? null : toCopy.hashTable.clone();
          this.maxRunBeforeFallback = toCopy.maxRunBeforeFallback;
          this.expandTableThreshold = toCopy.expandTableThreshold;
          this.hashCode = toCopy.hashCode;
        }
    
        @Override
        SetBuilderImpl<E> add(E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    		// instantiate func memmove(to *any, frm *any, length uintptr)
    		fn := typecheck.LookupRuntime("memmove", elemtype, elemtype)
    		ncopy = mkcall1(fn, nil, &nodes, addr, sptr, nwid)
    	}
    	ln := append(nodes, ncopy)
    
    	typecheck.Stmts(ln)
    	walkStmtList(ln)
    	init.Append(ln...)
    	return s
    }
    
    // isAppendOfMake reports whether n is of the form append(x, make([]T, y)...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    }
    
    // MultiplyAdd sets s = x * y + z mod l, and returns s. It is equivalent to
    // using Multiply and then Add.
    func (s *Scalar) MultiplyAdd(x, y, z *Scalar) *Scalar {
    	// Make a copy of z in case it aliases s.
    	zCopy := new(Scalar).Set(z)
    	return s.Multiply(x, y).Add(s, zCopy)
    }
    
    // Add sets s = x + y mod l, and returns s.
    func (s *Scalar) Add(x, y *Scalar) *Scalar {
    	// s = 1 * x + y mod l
    	fiatScalarAdd(&s.s, &x.s, &y.s)
    	return s
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    		adjinfo.sghi = findsghi(gp, old)
    
    		// Synchronize with channel ops and copy the part of
    		// the stack they may interact with.
    		ncopy -= syncadjustsudogs(gp, used, &adjinfo)
    	}
    
    	// Copy the stack (or the rest of it) to the new location
    	memmove(unsafe.Pointer(new.hi-ncopy), unsafe.Pointer(old.hi-ncopy), ncopy)
    
    	// Adjust remaining structures that have pointers into stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top