Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 261 for b1 (0.03 sec)

  1. src/encoding/binary/binary_test.go

    			}
    
    			// read should ignore blank fields in b2
    			var b2 BlankFields
    			if err := Read(bytes.NewReader(buf), LittleEndian, &b2); err != nil {
    				t.Error(err)
    			}
    			if b1.A != b2.A || b1.B != b2.B || b1.C != b2.C {
    				t.Errorf("%#v != %#v", b1, b2)
    			}
    		})
    	}
    }
    
    func TestSizeStructCache(t *testing.T) {
    	// Reset the cache, otherwise multiple test runs fail.
    	structSize = sync.Map{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/go/ast/filter.go

    	case *FuncType:
    		b1 := filterParamList(t.Params, f, export)
    		b2 := filterParamList(t.Results, f, export)
    		return b1 || b2
    	case *InterfaceType:
    		if filterFieldList(t.Methods, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Methods.List) > 0
    	case *MapType:
    		b1 := filterType(t.Key, f, export)
    		b2 := filterType(t.Value, f, export)
    		return b1 || b2
    	case *ChanType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    			d.buf.Reset()
    			var b0, b1 byte
    			for {
    				if b, ok = d.mustgetc(); !ok {
    					return nil, d.err
    				}
    				d.buf.WriteByte(b)
    				if b0 == '-' && b1 == '-' {
    					if b != '>' {
    						d.err = d.syntaxError(
    							`invalid sequence "--" not allowed in comments`)
    						return nil, d.err
    					}
    					break
    				}
    				b0, b1 = b1, b
    			}
    			data := d.buf.Bytes()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000280  18 aa 03 ea 06 75 22 dd  78 d2 a5 89 b8 c9 23 64  |.....u".x.....#d|
    00000290  e1 28 38 ce 34 6c 6e 06  7b 51 f1 a7 e6 f4 b3 7f  |.(8.4ln.{Q......|
    000002a0  fa b1 3f 14 11 89 66 79  d1 8e 88 0e 0b a0 9e 30  |..?...fy.......0|
    000002b0  2a c0 67 ef ca 46 02 88  e9 53 81 22 69 22 97 ad  |*.g..F...S."i"..|
    000002c0  80 93 d4 f7 dd 70 14 24  d7 70 0a 46 a1 16 03 03  |.....p.$.p.F....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/unicode/utf8/utf8.go

    	if n < sz {
    		return RuneError, 1
    	}
    	b1 := p[1]
    	if b1 < accept.lo || accept.hi < b1 {
    		return RuneError, 1
    	}
    	if sz <= 2 { // <= instead of == to help the compiler eliminate some bounds checks
    		return rune(p0&mask2)<<6 | rune(b1&maskx), 2
    	}
    	b2 := p[2]
    	if b2 < locb || hicb < b2 {
    		return RuneError, 1
    	}
    	if sz <= 3 {
    		return rune(p0&mask3)<<12 | rune(b1&maskx)<<6 | rune(b2&maskx), 3
    	}
    	b3 := p[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384

    000002e0  20 53 87 e6 77 26 be 45  e4 6d 31 e3 bf 02 42 01  | S..w&.E.m1...B.|
    000002f0  70 c5 97 3a e4 7b 80 2b  1b eb c9 b2 0a 79 92 2e  |p..:.{.+.....y..|
    00000300  3d b1 4d 13 69 d2 60 a9  fd e9 66 56 83 e4 f5 6a  |=.M.i.`...fV...j|
    00000310  ae cd 8b 94 9f 0b 70 81  b1 ed c6 0d 5f 33 42 04  |......p....._3B.|
    00000320  3d f7 b6 d3 e9 09 b8 bf  43 8c 19 d5 7d 60 d6 a9  |=.......C...}`..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. test/codegen/memcombine.go

    	// ppc64x:`MOVH`
    	b2[1], b2[0] = 0, 0
    }
    
    func zero_byte_4(b1, b2 []byte) {
    	_, _ = b1[3], b2[3]
    	// arm64:"MOVW\tZR",-"MOVB",-"MOVH"
    	// amd64:`MOVL\s[$]0,\s\([A-Z]+\)`
    	// 386:`MOVL\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVW\s`
    	b1[0], b1[1], b1[2], b1[3] = 0, 0, 0, 0
    	// arm64:"MOVW\tZR",-"MOVB",-"MOVH"
    	// ppc64x:`MOVW\s`
    	b2[2], b2[3], b2[1], b2[0] = 0, 0, 0, 0
    }
    
    func zero_byte_8(b []byte) {
    	_ = b[7]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-HelloRetryRequest

    000001c0  56 8c 86 f9 15 d2 a8 0c  48 4e 0e 81 df e0 31 52  |V.......HN....1R|
    000001d0  c9 2e b4 39 f3 cf ae e2  29 72 01 ed 34 4f 09 ce  |...9....)r..4O..|
    000001e0  64 de a9 9b 84 61 3a bb  0b ac 4e b1 6d 37 41 10  |d....a:...N.m7A.|
    000001f0  5b cf 99 b1 3e e6 f5 7b  1c d4 d0 d5 34 fc ab c6  |[...>..{....4...|
    00000200  29 8e 0b 53 e4 7b 35 33  e4 e3 f6 77 9b f6 c6 ae  |)..S.{53...w....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-P256-ECDHE

    00000260  3d 43 d3 2d d9 0b f2 97  df d3 20 64 38 92 24 3a  |=C.-...... d8.$:|
    00000270  00 bc cf 9c 7d b7 40 20  01 5f aa d3 16 61 09 a2  |....}.@ ._...a..|
    00000280  76 fd 13 c3 cc e1 0c 5c  ee b1 87 82 f1 6c 04 ed  |v......\.....l..|
    00000290  73 bb b3 43 77 8d 0c 1c  f1 0f a1 d8 40 83 61 c9  |s..Cw.......@.a.|
    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-X25519-ECDHE

    00000260  3d 43 d3 2d d9 0b f2 97  df d3 20 64 38 92 24 3a  |=C.-...... d8.$:|
    00000270  00 bc cf 9c 7d b7 40 20  01 5f aa d3 16 61 09 a2  |....}.@ ._...a..|
    00000280  76 fd 13 c3 cc e1 0c 5c  ee b1 87 82 f1 6c 04 ed  |v......\.....l..|
    00000290  73 bb b3 43 77 8d 0c 1c  f1 0f a1 d8 40 83 61 c9  |s..Cw.......@.a.|
    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top