Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 198 for Hi (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/compress/lzw/writer.go

    var errOutOfCodes = errors.New("lzw: out of codes")
    
    // incHi increments e.hi and checks for both overflow and running out of
    // unused codes. In the latter case, incHi sends a clear code, resets the
    // writer state and returns errOutOfCodes.
    func (w *Writer) incHi() error {
    	w.hi++
    	if w.hi == w.overflow {
    		w.width++
    		w.overflow <<= 1
    	}
    	if w.hi == maxCode {
    		clear := uint32(1) << w.litWidth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/text/Tokenizer.java

         * @param low
         *            最小の文字コード
         * @param hi
         *            最大の文字コード
         */
        protected static void whitespaceChars(final byte[] ctype2, int low, int hi) {
            if (low < 0) {
                low = 0;
            }
            if (hi >= ctype2.length) {
                hi = ctype2.length - 1;
            }
            while (low <= hi) {
                ctype2[low++] = CT_WHITESPACE;
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/groovy/build.gradle

        @TaskAction
        void 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
    - 397 bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/templates/home.html

                if (this.status == 200) { // request succeeded
                    var hi = JSON.parse(this.responseText);
                    document.getElementById("HeapSize").innerText = hi.HeapSize.toLocaleString() + " bytes";
                    document.getElementById("NumGC").innerText = hi.NumGC.toLocaleString();
    
                    var d = new Date(hi.CurrentTime / 1000000).toLocaleString();
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top