Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for f4 (0.02 sec)

  1. src/crypto/tls/testdata/Client-TLSv13-ExportKeyingMaterial

    000000d0  52 c7 c2 84 cb 48 81 a3  da bd a1 50 5c ec 5c a7  |R....H.....P\.\.|
    000000e0  10 01 58 cc 03 c3 53 04  03 69 80 f4 ad 4d ce 72  |..X...S..i...M.r|
    000000f0  26 4e 6c c7 2c 31 69 2b  fd 97 67 5e 7d e0 05 b3  |&Nl.,1i+..g^}...|
    00000100  f4 40 64 a1 bd a3 fd a8  f9 7b 18 82 89 8f 25 f9  |.@d......{....%.|
    00000110  ca ca c4 8f e4 90 7b 26  7a d5 b2 1e fa 05 db ad  |......{&z.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. test/checkbce.go

    	useInt(a[i]) // ERROR "Found IsInBounds$"
    	j := i & 34
    	useInt(a[j])
    	j = i & 17
    	useInt(a[j])
    }
    
    func f3(a [256]int, i uint8) {
    	useInt(a[i])
    	useInt(a[i+10])
    	useInt(a[i+14])
    }
    
    func f4(a [27]int, i uint8) {
    	useInt(a[i%15])
    	useInt(a[i%19])
    	useInt(a[i%27])
    }
    
    func f5(a []int) {
    	if len(a) > 5 {
    		useInt(a[5])
    		useSlice(a[6:])
    		useSlice(a[:6])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-HelloRetryRequest

    00000130  cd 3b bd 8c dc e8 55 a9  2f 65 d1 7f c1 28 33 f9  |.;....U./e...(3.|
    00000140  70 e1 af d8 2d 64 4c ac  5a 3a 16 6d 3e 97 a7 0e  |p...-dL.Z:.m>...|
    00000150  cd 28 05 1c ea 28 8d 63  a3 41 e2 3a 24 27 f4 43  |.(...(.c.A.:$'.C|
    00000160  97 c8 89 09 ed 8b 96 74  b3 dc 98 f4 0c c2 6f 25  |.......t......o%|
    00000170  fc 30 8a f8 25 49 e1 91  fb c6 39 23 ca d5 16 08  |.0..%I....9#....|
    00000180  5f bf 10 88 71 a4 c5 ac  e7 ad 9e 5a 4d e8 d3 1f  |_...q......ZM...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-ClientCert-Ed25519

    000001a0  ac 23 41 10 a4 d4 1a 40  28 4d ea db 32 d5 06 de  |.#A....@(M..2...|
    000001b0  1e 37 91 77 34 ed b4 c8  f2 1c 44 de ee 2f dd af  |.7.w4.....D../..|
    000001c0  61 cc 1e 59 87 a6 be 36  b0 8e a3 61 01 aa f4 60  |a..Y...6...a...`|
    000001d0  1e c8 3a 3c 53 57 31 28  3e 40 32 95 67 02 41 9c  |..:<SW1(>@2.g.A.|
    000001e0  58 28 50 51 5e 06 1d f1  57 e1 39 ba e0 ab 30 26  |X(PQ^...W.9...0&|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. test/nilptr3.go

    	y := fx10k()
    	_ = &x[9] // ERROR "generated nil check"
    	y = x
    	_ = &x[9] // ERROR "removed.* nil check"
    	x = y
    	_ = &x[9] // ERROR "removed.* nil check"
    }
    
    func fx10() *[10]int
    
    func f4(x *[10]int) {
    	// Most of these have no checks because a real memory reference follows,
    	// and the offset is small enough that if x is nil, the address will still be
    	// in the first unmapped page of memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. test/escape5.go

    	var x int
    	p := noleak(&x)
    	_ = p
    }
    
    func f2() {
    	var x int
    	p := leaktoret(&x)
    	_ = p
    }
    
    func f3() {
    	var x int // ERROR "moved to heap: x"
    	p := leaktoret(&x)
    	gp = p
    }
    
    func f4() {
    	var x int // ERROR "moved to heap: x"
    	p, q := leaktoret2(&x)
    	gp = p
    	gp = q
    }
    
    func f5() {
    	var x int
    	leaktoret22(leaktoret2(&x))
    }
    
    func f6() {
    	var x int // ERROR "moved to heap: x"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top