Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fpregs (0.08 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    		if e.ID != vid {
    			continue
    		}
    		if e.regs[0] == r {
    			// Already known and highest priority
    			return
    		}
    		for j := 1; j < len(e.regs); j++ {
    			if e.regs[j] == r {
    				// Move from lower priority to top priority
    				copy(e.regs[1:], e.regs[:j])
    				e.regs[0] = r
    				return
    			}
    		}
    		copy(e.regs[1:], e.regs[:])
    		e.regs[0] = r
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "fires build operation when emitting added callback and reestablishes user code context"() {
            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CPSDR y (FMOVDconst [c])) && math.Signbit(c)  => (LNDFR y)
    
    // absorb negations into set/clear sign bit
    (FNEG  (LPDFR x)) => (LNDFR x)
    (FNEG  (LNDFR x)) => (LPDFR x)
    (FNEGS (LPDFR x)) => (LNDFR x)
    (FNEGS (LNDFR x)) => (LPDFR x)
    
    // no need to convert float32 to float64 to set/clear sign bit
    (LEDBR (LPDFR (LDEBR x))) => (LPDFR x)
    (LEDBR (LNDFR (LDEBR x))) => (LNDFR x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K 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)
Back to top