Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,590 for cas6 (0.07 sec)

  1. src/internal/runtime/atomic/atomic_s390x.go

    //go:noescape
    func Xchg(ptr *uint32, new uint32) uint32
    
    //go:noescape
    func Xchg64(ptr *uint64, new uint64) uint64
    
    //go:noescape
    func Xchguintptr(ptr *uintptr, new uintptr) uintptr
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. internal/s3select/sql/funceval.go

    	case sqlFnCoalesce:
    		return coalesce(argVals)
    
    	case sqlFnNullIf:
    		return nullif(argVals[0], argVals[1])
    
    	case sqlFnCharLength, sqlFnCharacterLength:
    		return charlen(argVals[0])
    
    	case sqlFnLower:
    		return lowerCase(argVals[0])
    
    	case sqlFnUpper:
    		return upperCase(argVals[0])
    
    	case sqlFnUTCNow:
    		return handleUTCNow()
    
    	case sqlFnToString, sqlFnToTimestamp:
    		// TODO: implement
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/select.go

    	ncas := len(cases)
    	sellineno := base.Pos
    
    	// optimization: zero-case select
    	if ncas == 0 {
    		return []ir.Node{mkcallstmt("block")}
    	}
    
    	// optimization: one-case select: single op.
    	if ncas == 1 {
    		cas := cases[0]
    		ir.SetPos(cas)
    		l := cas.Init()
    		if cas.Comm != nil { // not default:
    			n := cas.Comm
    			l = append(l, ir.TakeInit(n)...)
    			switch n.Op() {
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_loong64.s

    	BEQ	R7, cas_again
    	MOVV	$1, R4
    	MOVB	R4, ret+16(FP)
    	DBAR
    	RET
    cas_fail:
    	MOVV	$0, R4
    	JMP	-4(PC)
    
    // bool	cas64(uint64 *ptr, uint64 old, uint64 new)
    // Atomically:
    //	if(*ptr == old){
    //		*ptr = new;
    //		return 1;
    //	} else {
    //		return 0;
    //	}
    TEXT ยทCas64(SB), NOSPLIT, $0-25
    	MOVV	ptr+0(FP), R4
    	MOVV	old+8(FP), R5
    	MOVV	new+16(FP), R6
    	DBAR
    cas64_again:
    	MOVV	R6, R7
    	LLV	(R4), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            // 1) Both attributes are strongly typed and match, usually the case if both are sourced from the local build
            // 2) Both attributes are desugared, usually the case if both are sourced from published metadata
            if (otherAttributeType.isAssignableFrom(attribute.getType())) {
                return Cast.uncheckedCast(get());
            }
    
            // Attempt to coerce myself into the other attribute's type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arm64.go

    	}
    	switch arng {
    	case "B8":
    		curSize = 0
    		curQ = 0
    	case "B16":
    		curSize = 0
    		curQ = 1
    	case "H4":
    		curSize = 1
    		curQ = 0
    	case "H8":
    		curSize = 1
    		curQ = 1
    	case "S2":
    		curSize = 2
    		curQ = 0
    	case "S4":
    		curSize = 2
    		curQ = 1
    	case "D1":
    		curSize = 3
    		curQ = 0
    	case "D2":
    		curSize = 3
    		curQ = 1
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/gen/arithConstGen.go

    	case "*":
    		ans = i * j
    	case "/":
    		if j != 0 {
    			ans = i / j
    		}
    	case "%":
    		if j != 0 {
    			ans = i % j
    		}
    	case "<<":
    		ans = i << uint64(j)
    	case ">>":
    		ans = i >> uint64(j)
    	case "&":
    		ans = i & j
    	case "|":
    		ans = i | j
    	case "^":
    		ans = i ^ j
    	}
    	switch t {
    	case "int32":
    		ans = int64(int32(ans))
    	case "int16":
    		ans = int64(int16(ans))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/anames.go

    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    	"BRK",
    	"BVC",
    	"BVS",
    	"CASAD",
    	"CASALB",
    	"CASALD",
    	"CASALH",
    	"CASALW",
    	"CASAW",
    	"CASB",
    	"CASD",
    	"CASH",
    	"CASLD",
    	"CASLW",
    	"CASPD",
    	"CASPW",
    	"CASW",
    	"CBNZ",
    	"CBNZW",
    	"CBZ",
    	"CBZW",
    	"CCMN",
    	"CCMNW",
    	"CCMP",
    	"CCMPW",
    	"CINC",
    	"CINCW",
    	"CINV",
    	"CINVW",
    	"CLREX",
    	"CLS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					cast = nil
    				}
    				a = nil
    				next = tmpl
    			case 'T':
    				next = st.templateParam()
    			case 'E':
    				if a == nil {
    					st.fail("expected prefix")
    				}
    				if cast != nil {
    					var toTmpl *Template
    					if castTempl, ok := cast.To.(*Template); ok {
    						toTmpl = castTempl
    					}
    					st.setTemplate(cast, toTmpl)
    				}
    				return a
    			case 'M':
    				if a == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/cycles2.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    // Test case for issue 5090
    
    type t interface {
    	f(u)
    }
    
    type u interface {
    	t
    }
    
    func _() {
    	var t t
    	var u u
    
    	t.f(t)
    	t.f(u)
    
    	u.f(t)
    	u.f(u)
    }
    
    
    // Test case for issues #6589, #33656.
    
    type A interface {
    	a() interface {
    		AB
    	}
    }
    
    type B interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top