Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for HI (0.03 sec)

  1. 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)
  2. src/cmd/internal/obj/util.go

    // hi exclusive (valid registers are lo through hi-1).
    func RegisterRegister(lo, hi int, Rconv func(int) string) {
    	regSpace = append(regSpace, regSet{lo, hi, Rconv})
    }
    
    func Rconv(reg int) string {
    	if reg == REG_NONE {
    		return "NONE"
    	}
    	for i := range regSpace {
    		rs := &regSpace[i]
    		if rs.lo <= reg && reg < rs.hi {
    			return rs.Rconv(reg)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    		fillstack(new, 0xfd)
    	}
    	if stackDebug >= 1 {
    		print("copystack gp=", gp, " [", hex(old.lo), " ", hex(old.hi-used), " ", hex(old.hi), "]", " -> [", hex(new.lo), " ", hex(new.hi-used), " ", hex(new.hi), "]/", newsize, "\n")
    	}
    
    	// Compute adjustment.
    	var adjinfo adjustinfo
    	adjinfo.old = old
    	adjinfo.delta = new.hi - old.hi
    
    	// Adjust sudogs, synchronizing with channel ops if necessary.
    	ncopy := used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/math/rand/v2/rand.go

    	lo1a, lo0 := bits.Mul32(uint32(x), n)
    	hi, lo1b := bits.Mul32(uint32(x>>32), n)
    	lo1, c := bits.Add32(lo1a, lo1b, 0)
    	hi += c
    	if lo1 == 0 && lo0 < uint32(n) {
    		n64 := uint64(n)
    		thresh := uint32(-n64 % n64)
    		for lo1 == 0 && lo0 < thresh {
    			x := r.Uint64()
    			lo1a, lo0 = bits.Mul32(uint32(x), n)
    			hi, lo1b = bits.Mul32(uint32(x>>32), n)
    			lo1, c = bits.Add32(lo1a, lo1b, 0)
    			hi += c
    		}
    	}
    	return hi
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            """
            when:
            withEnvironmentVars(GREETING: "hi")
            configurationCacheRun("greet")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateStored()
    
            when:
            withEnvironmentVars(GREETING: "hi")
            configurationCacheRun("greet")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    TEXT runtime·panicExtendIndex(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R1, lo+4(FP)
    	MOVW	R2, y+8(FP)
    	JMP	runtime·goPanicExtendIndex(SB)
    TEXT runtime·panicExtendIndexU(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R1, lo+4(FP)
    	MOVW	R2, y+8(FP)
    	JMP	runtime·goPanicExtendIndexU(SB)
    TEXT runtime·panicExtendSliceAlen(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R2, lo+4(FP)
    	MOVW	R3, y+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/time/format_test.go

    }
    
    var parseTimeZoneTests = []ParseTimeZoneTest{
    	{"gmt hi there", 0, false},
    	{"GMT hi there", 3, true},
    	{"GMT+12 hi there", 6, true},
    	{"GMT+00 hi there", 6, true},
    	{"GMT+", 3, true},
    	{"GMT+3", 5, true},
    	{"GMT+a", 3, true},
    	{"GMT+3a", 5, true},
    	{"GMT-5 hi there", 5, true},
    	{"GMT-51 hi there", 3, true},
    	{"ChST hi there", 4, true},
    	{"MeST hi there", 4, true},
    	{"MSDx", 3, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. test/codegen/mathbits.go

    }
    
    func Div32(hi, lo, x uint32) (q, r uint32) {
    	// arm64:"ORR","UDIV","MSUB",-"UREM"
    	return bits.Div32(hi, lo, x)
    }
    
    func Div64(hi, lo, x uint64) (q, r uint64) {
    	// amd64:"DIVQ"
    	return bits.Div64(hi, lo, x)
    }
    
    func Div64degenerate(x uint64) (q, r uint64) {
    	// amd64:-"DIVQ"
    	return bits.Div64(0, x, 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/slices/slices_test.go

    		}
    	}
    
    	s1 := []string{"hi", "HI"}
    	if got := IndexFunc(s1, equalToIndex(equal[string], "HI")); got != 1 {
    		t.Errorf("IndexFunc(%v, equalToIndex(equal[string], %q)) = %d, want %d", s1, "HI", got, 1)
    	}
    	if got := IndexFunc(s1, equalToIndex(strings.EqualFold, "HI")); got != 0 {
    		t.Errorf("IndexFunc(%v, equalToIndex(strings.EqualFold, %q)) = %d, want %d", s1, "HI", got, 0)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/image/jpeg/scan.go

    					//	0 1 4 5
    					//	2 3 6 7
    					// The non-interleaved scans will process only 6 Y blocks:
    					//	0 1 2
    					//	3 4 5
    					if nComp != 1 {
    						bx = hi*mx + j%hi
    						by = vi*my + j/hi
    					} else {
    						q := mxx * hi
    						bx = blockCount % q
    						by = blockCount / q
    						blockCount++
    						if bx*8 >= d.width || by*8 >= d.height {
    							continue
    						}
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top