Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for isint32 (0.2 sec)

  1. src/runtime/panic_test.go

    		{"panicCustomInt", `panic: main.MyInt(93)`},
    		{"panicCustomInt8", `panic: main.MyInt8(93)`},
    		{"panicCustomInt16", `panic: main.MyInt16(93)`},
    		{"panicCustomInt32", `panic: main.MyInt32(93)`},
    		{"panicCustomInt64", `panic: main.MyInt64(93)`},
    		{"panicCustomString", `panic: main.MyString("Panic` + "\n\t" + `line two")`},
    		{"panicCustomUint", `panic: main.MyUint(93)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    			output: IntOrString{Type: Int, IntVal: 2147483647},
    		},
    		{
    			input:  "-2147483648", // math.MinInt32
    			output: IntOrString{Type: Int, IntVal: -2147483648},
    		},
    		{
    			input:  "2147483648", // math.MaxInt32+1
    			output: IntOrString{Type: String, StrVal: "2147483648"},
    		},
    		{
    			input:  "-2147483649", // math.MinInt32-1
    			output: IntOrString{Type: String, StrVal: "-2147483649"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/memcombine.go

    	case 42:
    		return b.NewValue1(pos, OpTrunc32to16, types.Types[types.TUINT16], v)
    	default:
    		base.Fatalf("bad sizes %d %d\n", from, to)
    		return nil
    	}
    }
    func zeroExtend(b *Block, pos src.XPos, v *Value, from, to int64) *Value {
    	switch from*10 + to {
    	case 24:
    		return b.NewValue1(pos, OpZeroExt16to32, types.Types[types.TUINT32], v)
    	case 28:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
      FunctionDefLibrary library;
    
      FunctionDef called_func =
          FunctionDefHelper::Create("TransposeCall",
                                    /*in_def=*/{"a:float", "b:int32"},
                                    /*out_def=*/{"c:float"}, {},
                                    {{{"t0"},
                                      "Transpose",
                                      {"a", "b"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_s390x.s

    cas64_fail:
    	MOVB	$0, ret+24(FP)
    	RET
    
    // func Casint32(ptr *int32, old, new int32) bool
    TEXT ·Casint32(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    // func Casint64(ptr *int64, old, new int64) bool
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func Casuintptr(ptr *uintptr, old, new uintptr) bool
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func CasRel(ptr *uint32, old, new uint32) bool
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val javaVersion = JavaVersion.current()
        val isWindows = OperatingSystem.current().isWindows
        val isLinux = OperatingSystem.current().isLinux
        val isMacOsX = OperatingSystem.current().isMacOsX
        val isIntel: Boolean = architecture == "x86_64" || architecture == "x86"
        val isSlowInternetConnection
            get() = System.getProperty("slow.internet.connection", "false")!!.toBoolean()
        val agentNum: Int
            get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/identity.go

    			return (t1 == Types[TUINT8] || t1 == ByteType) && (t2 == Types[TUINT8] || t2 == ByteType)
    		case TINT32:
    			return (t1 == Types[TINT32] || t1 == RuneType) && (t2 == Types[TINT32] || t2 == RuneType)
    		case TINTER:
    			// Make sure named any type matches any unnamed empty interface
    			// (but not a shape type, if identStrict).
    			isUnnamedEface := func(t *Type) bool { return t.IsEmptyInterface() && t.Sym() == nil }
    			if flags&identStrict != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/runtime/softfloat64_test.go

    }
    
    // float64 -hw-> int64 -hw-> float64
    func hwint64(f float64) float64 {
    	return float64(int64(f))
    }
    
    // float64 -hw-> int32 -hw-> float64
    func hwint32(f float64) float64 {
    	return float64(int32(f))
    }
    
    // float64 -sw-> int64 -hw-> float64
    func toint64sw(f float64) float64 {
    	i, ok := F64toint(math.Float64bits(f))
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. src/html/template/context.go

    	case stateHTMLCmt, stateJSBlockCmt, stateJSLineCmt, stateJSHTMLOpenCmt, stateJSHTMLCloseCmt, stateCSSBlockCmt, stateCSSLineCmt:
    		return true
    	}
    	return false
    }
    
    // isInTag return whether s occurs solely inside an HTML tag.
    func isInTag(s state) bool {
    	switch s {
    	case stateTag, stateAttrName, stateAfterName, stateBeforeValue, stateAttr:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/strconv/makeisprint.go

    			if i+1 <= max && unicode.IsPrint(i+1) {
    				except = append(except, uint32(i))
    				continue
    			}
    			rang = append(rang, uint32(lo), uint32(i-1))
    			lo = -1
    		}
    		if i > max {
    			break
    		}
    		if lo < 0 && unicode.IsPrint(i) {
    			lo = i
    		}
    	}
    	return
    }
    
    func to16(x []uint32) []uint16 {
    	var y []uint16
    	for _, v := range x {
    		if uint32(uint16(v)) != v {
    			panic("bad 32->16 conversion")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top