Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for fpregs (0.14 sec)

  1. src/runtime/stack.go

    	}
    	if asanenabled {
    		asanunpoison(v, uintptr(n))
    	}
    	if stackDebug >= 1 {
    		print("  allocated ", v, "\n")
    	}
    	return stack{uintptr(v), uintptr(v) + uintptr(n)}
    }
    
    // stackfree frees an n byte stack allocation at stk.
    //
    // stackfree must run on the system stack because it uses per-P
    // resources and must not split the stack.
    //
    //go:systemstack
    func stackfree(stk stack) {
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // socket to filter incoming packets.  See 'man 7 socket' for usage information.
    func SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error {
    	return setsockopt(fd, level, opt, unsafe.Pointer(fprog), unsafe.Sizeof(*fprog))
    }
    
    func SetsockoptCanRawFilter(fd, level, opt int, filter []CanFilter) error {
    	var p unsafe.Pointer
    	if len(filter) > 0 {
    		p = unsafe.Pointer(&filter[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. src/context/context.go

    // children, removes the parent's reference to the child, and stops
    // any associated timers. Failing to call the CancelFunc leaks the
    // child and its children until the parent is canceled or the timer
    // fires. The go vet tool checks that CancelFuncs are used on all
    // control-flow paths.
    //
    // The [WithCancelCause] function returns a [CancelCauseFunc], which
    // takes an error and records it as the cancellation cause. Calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    			}
    			if !bytes.Equal(gc, lt.gc) {
    				t.Errorf("funcLayout(%v, %v).gc=%v, want %v", lt.typ, lt.rcvr, gc, lt.gc)
    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    				t.Errorf("funcLayout(%v, %v).inRegs=%v, want %v", lt.typ, lt.rcvr, inRegs, lt.inRegs)
    			}
    			if !bytes.Equal(outRegs, lt.outRegs) {
    				t.Errorf("funcLayout(%v, %v).outRegs=%v, want %v", lt.typ, lt.rcvr, outRegs, lt.outRegs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	return len(tr.Repr) == 0
    }
    
    // Set modifies the type representation.
    // If fargs are provided, repr is used as a format for fmt.Sprintf.
    // Otherwise, repr is used unprocessed as the type representation.
    func (tr *TypeRepr) Set(repr string, fargs ...interface{}) {
    	tr.Repr = repr
    	tr.FormatArgs = fargs
    }
    
    // FinishType completes any outstanding type mapping work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    	}
    
    	// because the probe function can return a list of valid plugins
    	// even when an error is present we still must add the plugins
    	// or they will be skipped because each event only fires once
    	for _, event := range events {
    		if event.Op == ProbeAddOrUpdate {
    			if err := pm.initProbedPlugin(event.Plugin); err != nil {
    				klog.ErrorS(err, "Error initializing dynamically probed plugin",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // DB is a database handle representing a pool of zero or more
    // underlying connections. It's safe for concurrent use by multiple
    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    // a concept of per-connection state, such state can be reliably observed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    	0x48, 0x89, 0x6c, 0x24, 0xf0, // MOVQ BP, -16(SP)
    	0x48, 0x8d, 0x6c, 0x24, 0xf0, // LEAQ -16(SP), BP
    }
    
    var bpduff2 = []byte{
    	0x48, 0x8b, 0x6d, 0x00, // MOVQ 0(BP), BP
    }
    
    // asmevex emits EVEX pregis and opcode byte.
    // In addition to asmvex r/m, vvvv and reg fields also requires optional
    // K-masking register.
    //
    // Expects asmbuf.evex to be properly initialized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    					// resetting the statement mark.
    					//
    					// The reset of s.pp.Pos occurs in (*Progs).Prog() -- if it emits
    					// an instruction, and the instruction's statement mark was set,
    					// and it is not one of the LosesStmtMark instructions,
    					// then Prog() resets the statement mark on the (*Progs).Pos.
    					return
    				}
    				p = p.WithNotStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	// TODO: this is a common one. It'd be nice to return true
    	// here and get into the fast path if we could be clever and
    	// calculate the size fast enough, or at least a conservative
    	// upper bound that usually fires. (Maybe if w.h and
    	// w.trailers are nil, so we don't need to enumerate it.)
    	// Otherwise I'm afraid that just calculating the length to
    	// answer this question would be slower than the ~2µs benefit.
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top