Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 13841 (3.94 sec)

  1. src/runtime/pprof/pprof_test.go

    		// See https://golang.org/issue/45170.
    		return true
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		// See https://golang.org/issue/13841.
    		return true
    	case "openbsd":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {
    			// See https://golang.org/issue/13841.
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		exp = (exp << 2) + (((x >> 16) & 1) << 1) + ((x >> 9) & 1)
    		s := ((x >> 18) & 1)
    		return Imm_fp{uint8(s), int8(exp) - 3, uint8(pre)}
    
    	case arg_immediate_exp_3_pre_4_imm8:
    		pre := (x >> 13) & (1<<4 - 1)
    		exp := 1 - ((x >> 19) & 1)
    		exp = (exp << 2) + ((x >> 17) & (1<<2 - 1))
    		s := ((x >> 20) & 1)
    		return Imm_fp{uint8(s), int8(exp) - 3, uint8(pre)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    //   twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) + (z[4] << 256) + (z[5] << 0x140) in
    //
    //                            if x1 & (2^384-1) < 2^383 then x1 & (2^384-1) else (x1 & (2^384-1)) - 2^384
    
    package fiat
    
    import "math/bits"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
Back to top