Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,716 for tall (0.05 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    	callee := cs.Callee
    	csflags := cs.Flags
    	call := cs.Call
    
    	// Start with the size-based score for the callee.
    	score := int(callee.Inl.Cost)
    	var tmask scoreAdjustTyp
    
    	if debugTrace&debugTraceScoring != 0 {
    		fmt.Fprintf(os.Stderr, "=-= scoring call to %s at %s , initial=%d\n",
    			callee.Sym().Name, fmtFullPos(call.Pos()), score)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/internal/poll/splice_linux.go

    // EAGAIN.
    //
    // If splicePump cannot move all the data in a single call to
    // splice(2), it loops over the buffered data until it has written
    // all of it to the socket. This behavior is similar to the Write
    // step of an io.Copy in userspace.
    func splicePump(sock *FD, pipefd int, inPipe int) (int, error) {
    	if err := sock.writeLock(); err != nil {
    		return 0, err
    	}
    	defer sock.writeUnlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/runtime/mgcstack.go

    // pointer. We call these variables "stack objects".
    //
    // We begin by determining all the stack objects on the stack and all
    // the statically live pointers that may point into the stack. We then
    // process each pointer to see if it points to a stack object. If it
    // does, we scan that stack object. It may contain pointers into the
    // heap, in which case those pointers are passed to the main garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/runtime/asm_arm.s

    // Arguments are passed in registers, but the space for those arguments are allocated
    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex(SB),NOSPLIT,$0-8
    	MOVW	R0, x+0(FP)
    	MOVW	R1, y+4(FP)
    	JMP	runtime·goPanicIndex(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/aes.go

    		return nil, fail("EVP_AEAD_CTX_init")
    	}
    	// Note: Because of the finalizer, any time g.ctx is passed to cgo,
    	// that call must be followed by a call to runtime.KeepAlive(g),
    	// to make sure g is not collected (and finalized) before the cgo
    	// call returns.
    	runtime.SetFinalizer(g, (*aesGCM).finalize)
    	if g.NonceSize() != gcmStandardNonceSize {
    		panic("boringcrypto: internal confusion about nonce size")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/peer-rest-client.go

    	all = make([]*peerRESTClient, len(hosts))
    	for i, host := range hosts {
    		if host == nil {
    			continue
    		}
    		all[i] = newPeerRESTClient(host, endpoints.FindGridHostsFromPeer(host))
    		remote = append(remote, all[i])
    	}
    	if len(all) != len(remote)+1 {
    		peersLogIf(context.Background(), fmt.Errorf("Expected number of all hosts (%v) to be remote +1 (%v)", len(all), len(remote)), logger.WarningKind)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/sync/pool.go

    // free list.
    //
    // A Pool must not be copied after first use.
    //
    // In the terminology of [the Go memory model], a call to Put(x) “synchronizes before”
    // a call to [Pool.Get] returning that same value x.
    // Similarly, a call to New returning x “synchronizes before”
    // a call to Get returning that same value x.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Pool struct {
    	noCopy noCopy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  8. src/runtime/cgo/gcc_signal_ios_arm64.c

    	if (ret) {
    		fprintf(stderr, "runtime/cgo: thread_get_state failed: %d\n", ret);
    		abort();
    	}
    
    	// Bounce call to sigpanic through asm that makes it look like
    	// we call sigpanic directly from the faulting code.
    #ifdef __arm64__
    	thread_state.ts_64.__x[1] = thread_state.ts_64.__lr;
    	thread_state.ts_64.__x[2] = thread_state.ts_64.__pc;
    	thread_state.ts_64.__pc = x_cgo_panicmem;
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/expand_calls.go

    	for _, v := range selects {
    		if v.Op == OpInvalid {
    			continue
    		}
    
    		call := v.Args[0]
    		aux := call.Aux.(*AuxCall)
    		mem := x.memForCall[call.ID]
    		if mem == nil {
    			mem = call.Block.NewValue1I(call.Pos, OpSelectN, types.TypeMem, int64(aux.abiInfo.OutRegistersUsed()), call)
    			x.memForCall[call.ID] = mem
    		}
    
    		i := v.AuxInt
    		regs := aux.RegsOfResult(i)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "InterCall", argLength: -1, aux: "CallOff", call: true},   // interface call.  arg0=code pointer, arg1..argN-1 are register inputs, argN=memory, auxint=arg size.  Returns Result of register results, plus memory.
    	{name: "TailCall", argLength: -1, aux: "CallOff", call: true},    // tail call function aux.(*obj.LSym), arg0..argN-1 are register inputs, argN=memory.  auxint=arg size.  Returns Result of register results, plus memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top