Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 450 for HI (0.05 sec)

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

    		v.AuxInt = boolToAuxInt(c)
    		v.AddArg2(x, lo)
    		return true
    	}
    	// match: (Lsh16x64 x (Int64Make hi lo))
    	// cond: hi.Op != OpConst32
    	// result: (Lsh16x32 x (Or32 <typ.UInt32> (Zeromask hi) lo))
    	for {
    		x := v_0
    		if v_1.Op != OpInt64Make {
    			break
    		}
    		lo := v_1.Args[1]
    		hi := v_1.Args[0]
    		if !(hi.Op != OpConst32) {
    			break
    		}
    		v.reset(OpLsh16x32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/kotlin/build.gradle.kts

        @TaskAction
        fun printMessage() {
            logger.quiet(message.get())
        }
    }
    
    tasks.register<Greeting>("greeting") {
        greeting.set("Hi") // <4>
        greeting = "Hi" // <5>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 395 bytes
    - Viewed (0)
  3. test/typeparam/geninline.dir/a.go

    	check(want T)
    }
    
    type Val[T comparable] struct {
    	val T
    }
    
    //go:noinline
    func (l *Val[T]) check(want T) {
    	if l.val != want {
    		panic("hi")
    	}
    }
    
    func Test1() {
    	var l Val[int]
    	if l.val != 0 {
    		panic("hi")
    	}
    	_ = IVal[int](&l)
    }
    
    func Test2() {
    	var l Val[float64]
    	l.val = 3.0
    	l.check(float64(3))
    	_ = IVal[float64](&l)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 15 16:57:36 UTC 2021
    - 799 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    	}
    	if hi < sr.lo() || lo > sr.hi() {
    		// The two regions don't overlap or abut, so we would
    		// have to keep track of multiple disjoint ranges.
    		// Because we can only keep one, keep the larger one.
    		if sr.hi()-sr.lo() >= hi-lo {
    			return sr
    		}
    		return shadowRange(lo + hi<<16)
    	}
    	// Regions overlap or abut - compute the union.
    	return shadowRange(min(lo, sr.lo()) + max(hi, sr.hi())<<16)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/runtime/vlop_arm_test.go

    const numeratorsSize = 1 << 21
    
    var numerators = randomNumerators()
    
    type randstate struct {
    	hi, lo uint32
    }
    
    func (r *randstate) rand() uint32 {
    	r.hi = r.hi<<16 + r.hi>>16
    	r.hi += r.lo
    	r.lo += r.hi
    	return r.hi
    }
    
    func randomNumerators() []uint32 {
    	numerators := make([]uint32, numeratorsSize)
    	random := &randstate{2147483563, 2147483563 ^ 0x49616E42}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  6. src/runtime/internal/math/math.go

    	return a * b, overflow
    }
    
    // Mul64 returns the 128-bit product of x and y: (hi, lo) = x * y
    // with the product bits' upper half returned in hi and the lower
    // half returned in lo.
    // This is a copy from math/bits.Mul64
    // On supported platforms this is an intrinsic lowered by the compiler.
    func Mul64(x, y uint64) (hi, lo uint64) {
    	const mask32 = 1<<32 - 1
    	x0 := x & mask32
    	x1 := x >> 32
    	y0 := y & mask32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/math/bits/example_math_test.go

    	hi, lo := bits.Mul32(n1[1], n2[1])
    	nsum := []uint32{hi, lo}
    	fmt.Printf("%v * %v = %v\n", n1[1], n2[1], nsum)
    
    	// First number is 0<<32 + 2147483648
    	n1 = []uint32{0, 0x80000000}
    	// Second number is 0<<32 + 2
    	n2 = []uint32{0, 2}
    	// Multiply them together producing overflow.
    	hi, lo = bits.Mul32(n1[1], n2[1])
    	nsum = []uint32{hi, lo}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 21:27:05 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  8. test/cannotassign.go

    	n = 2        // ERROR "cannot assign to .* (\(declared const\))?"
    	cs = "hi"    // ERROR "cannot assign to .* (\(declared const\))?"
    	true = false // ERROR "cannot assign to .* (\(declared const\))?"
    
    	var m map[int]struct{ n int }
    	m[0].n = 7 // ERROR "cannot assign to struct field .* in map$"
    
    	1 = 7         // ERROR "cannot assign to 1"
    	"hi" = 7      // ERROR `cannot assign to "hi"`
    	nil = 7       // ERROR "cannot assign to nil"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 1K bytes
    - Viewed (0)
  9. src/compress/lzw/reader_test.go

    			t.Fatalf("i=%d: %v", i, err)
    		}
    		// The hi code should never decrease.
    		if d.hi < oldHi {
    			t.Fatalf("i=%d: hi=%d decreased from previous value %d", i, d.hi, oldHi)
    		}
    		oldHi = d.hi
    	}
    }
    
    // TestNoLongerSavingPriorExpansions tests the decoder state when codes other
    // than clear codes continue to be seen after decoder.hi and decoder.width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/other.gradle.kts

    class GreetingScriptPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            project.task("hi") {
                doLast {
                    println("Hi from the GreetingScriptPlugin")
                }
            }
        }
    }
    
    // Apply the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 283 bytes
    - Viewed (0)
Back to top