Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bytereg (0.12 sec)

  1. src/math/big/int_test.go

    			}
    
    			// Perfectly sized buffer.
    			byteLen := (x.BitLen() + 7) / 8
    			buf := make([]byte, byteLen)
    			checkResult(t, x.FillBytes(buf), x)
    
    			// Way larger, checking all bytes get zeroed.
    			buf = make([]byte, 100)
    			for i := range buf {
    				buf[i] = 0xff
    			}
    			checkResult(t, x.FillBytes(buf), x)
    
    			// Too small.
    			if byteLen > 0 {
    				buf = make([]byte, byteLen-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top