Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for textbyte (0.19 sec)

  1. src/crypto/tls/handshake_messages.go

    				b.AddUint16(suite)
    			}
    		})
    		b.AddUint8LengthPrefixed(func(b *cryptobyte.Builder) {
    			b.AddBytes(m.compressionMethods)
    		})
    
    		if len(extBytes) > 0 {
    			b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    				b.AddBytes(extBytes)
    			})
    		}
    	})
    
    	return b.Bytes()
    }
    
    func (m *clientHelloMsg) marshal() ([]byte, error) {
    	return m.marshalMsg(false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //go:nosplit
    func get_ChtagAddr() *(func(path string, ccsid uint64, textbit uint64) error)
    
    var Chtag = enter_Chtag
    
    func enter_Chtag(path string, ccsid uint64, textbit uint64) error {
    	funcref := get_ChtagAddr()
    	if validSetxattr() {
    		*funcref = impl_Chtag
    	} else {
    		*funcref = legacy_Chtag
    	}
    	return (*funcref)(path, ccsid, textbit)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/math/big/int_test.go

    	// trim leading zero bytes since Bytes() won't return them
    	// (was issue 12231)
    	for len(b) > 0 && b[0] == 0 {
    		b = b[1:]
    	}
    	b2 := new(Int).SetBytes(b).Bytes()
    	return bytes.Equal(b, b2)
    }
    
    func TestBytes(t *testing.T) {
    	if err := quick.Check(checkBytes, nil); err != nil {
    		t.Error(err)
    	}
    }
    
    func checkQuo(x, y []byte) bool {
    	u := new(Int).SetBytes(x)
    	v := new(Int).SetBytes(y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top