Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for Pp (0.03 sec)

  1. src/syscall/syscall_linux.go

    	case AF_NETLINK:
    		pp := (*RawSockaddrNetlink)(unsafe.Pointer(rsa))
    		sa := new(SockaddrNetlink)
    		sa.Family = pp.Family
    		sa.Pad = pp.Pad
    		sa.Pid = pp.Pid
    		sa.Groups = pp.Groups
    		return sa, nil
    
    	case AF_PACKET:
    		pp := (*RawSockaddrLinklayer)(unsafe.Pointer(rsa))
    		sa := new(SockaddrLinklayer)
    		sa.Protocol = pp.Protocol
    		sa.Ifindex = int(pp.Ifindex)
    		sa.Hatype = pp.Hatype
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    		sa.Port = int(p[0])<<8 + int(p[1])
    		sa.Addr = pp.Addr
    		return sa, nil
    
    	case AF_INET6:
    		pp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))
    		sa := new(SockaddrInet6)
    		p := (*[2]byte)(unsafe.Pointer(&pp.Port))
    		sa.Port = int(p[0])<<8 + int(p[1])
    		sa.Addr = pp.Addr
    		return sa, nil
    	}
    	return nil, EAFNOSUPPORT
    }
    
    type SockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	pi := l.newPayload(sname, sver)
    	pp := l.payloads[pi]
    	pp.kind = skind
    	pp.ver = sver
    	pp.size = int64(osym.Siz())
    	pp.objidx = r.objidx
    
    	// If this is a def, then copy the guts. We expect this case
    	// to be very rare (one case it may come up is with -X).
    	if li < uint32(r.NAlldef()) {
    
    		// Copy relocations
    		relocs := l.Relocs(symIdx)
    		pp.relocs = make([]goobj.Reloc, relocs.Count())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/runtime/traceevent.go

    func (tl traceLocker) eventWriter(goStatus traceGoStatus, procStatus traceProcStatus) traceEventWriter {
    	w := tl.writer()
    	if pp := tl.mp.p.ptr(); pp != nil && !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

            if (parentProperty == null) {
                return this;
            }
            String pp = getParentProperty(parentProperty);
            additionalData(TypeValidationDataSpec.class, data -> data.parentPropertyName(pp));
            parentPropertyAdditionalData = pp;
            return this;
        }
    
        @Override
        public Problem build() {
            Problem problem = super.build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    		largeStackFramesMu.Unlock()
    		return
    	}
    	pp := objw.NewProgs(fn, worker)
    	defer pp.Free()
    	genssa(f, pp)
    	// Check frame size again.
    	// The check above included only the space needed for local variables.
    	// After genssa, the space needed includes local variables and the callee arg region.
    	// We must do this check prior to calling pp.Flush.
    	// If there are any oversized stack frames,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	// indefinitely.
    	forEachP(waitReasonFlushProcCaches, func(pp *p) {
    		pp.mcache.prepareForSweep()
    		if pp.status == _Pidle {
    			systemstack(func() {
    				lock(&mheap_.lock)
    				pp.pcache.flush(&mheap_.pages)
    				unlock(&mheap_.lock)
    			})
    		}
    		pp.pinnerCache = nil
    	})
    	if sl.valid {
    		// Now that we've swept stale spans in mcaches, they don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    	if !d.heap {
    		return
    	}
    
    	mp := acquirem()
    	pp := mp.p.ptr()
    	if len(pp.deferpool) == cap(pp.deferpool) {
    		// Transfer half of local cache to the central cache.
    		var first, last *_defer
    		for len(pp.deferpool) > cap(pp.deferpool)/2 {
    			n := len(pp.deferpool)
    			d := pp.deferpool[n-1]
    			pp.deferpool[n-1] = nil
    			pp.deferpool = pp.deferpool[:n-1]
    			if first == nil {
    				first = d
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/runtime/tracecpu.go

    	// usually the number of samples with the given stack.) Near syscalls, pp
    	// may be nil. Reporting goid of 0 is fine for either g0 or a nil gp.
    	var hdr [3]uint64
    	if pp != nil {
    		// Overflow records in profBuf have all header values set to zero. Make
    		// sure that real headers have at least one bit set.
    		hdr[0] = uint64(pp.id)<<1 | 0b1
    	} else {
    		hdr[0] = 0b10
    	}
    	if gp != nil {
    		hdr[1] = gp.goid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    }
    
    func RunSchedLocalQueueTest() {
    	pp := new(p)
    	gs := make([]g, len(pp.runq))
    	Escape(gs) // Ensure gs doesn't move, since we use guintptrs
    	for i := 0; i < len(pp.runq); i++ {
    		if g, _ := runqget(pp); g != nil {
    			throw("runq is not empty initially")
    		}
    		for j := 0; j < i; j++ {
    			runqput(pp, &gs[i], false)
    		}
    		for j := 0; j < i; j++ {
    			if g, _ := runqget(pp); g != &gs[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top