Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 422 for Hex (0.04 sec)

  1. src/runtime/signal_amd64.go

    )
    
    func dumpregs(c *sigctxt) {
    	print("rax    ", hex(c.rax()), "\n")
    	print("rbx    ", hex(c.rbx()), "\n")
    	print("rcx    ", hex(c.rcx()), "\n")
    	print("rdx    ", hex(c.rdx()), "\n")
    	print("rdi    ", hex(c.rdi()), "\n")
    	print("rsi    ", hex(c.rsi()), "\n")
    	print("rbp    ", hex(c.rbp()), "\n")
    	print("rsp    ", hex(c.rsp()), "\n")
    	print("r8     ", hex(c.r8()), "\n")
    	print("r9     ", hex(c.r9()), "\n")
    	print("r10    ", hex(c.r10()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/defs_plan9_386.go

    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    	print("dx    ", hex(u.dx), "\n")
    	print("di    ", hex(u.di), "\n")
    	print("si    ", hex(u.si), "\n")
    	print("bp    ", hex(u.bp), "\n")
    	print("sp    ", hex(u.sp), "\n")
    	print("pc    ", hex(u.pc), "\n")
    	print("flags ", hex(u.flags), "\n")
    	print("cs    ", hex(u.cs), "\n")
    	print("fs    ", hex(u.fs), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    limitations under the License.
    */
    
    package modes_test
    
    import (
    	"encoding/hex"
    	"fmt"
    	"math"
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes"
    
    	"github.com/fxamacker/cbor/v2"
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestDecode(t *testing.T) {
    	hex := func(h string) []byte {
    		b, err := hex.DecodeString(h)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return b
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. src/runtime/signal_386.go

    func dumpregs(c *sigctxt) {
    	print("eax    ", hex(c.eax()), "\n")
    	print("ebx    ", hex(c.ebx()), "\n")
    	print("ecx    ", hex(c.ecx()), "\n")
    	print("edx    ", hex(c.edx()), "\n")
    	print("edi    ", hex(c.edi()), "\n")
    	print("esi    ", hex(c.esi()), "\n")
    	print("ebp    ", hex(c.ebp()), "\n")
    	print("esp    ", hex(c.esp()), "\n")
    	print("eip    ", hex(c.eip()), "\n")
    	print("eflags ", hex(c.eflags()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/defs_plan9_amd64.go

    func dumpregs(u *ureg) {
    	print("ax    ", hex(u.ax), "\n")
    	print("bx    ", hex(u.bx), "\n")
    	print("cx    ", hex(u.cx), "\n")
    	print("dx    ", hex(u.dx), "\n")
    	print("di    ", hex(u.di), "\n")
    	print("si    ", hex(u.si), "\n")
    	print("bp    ", hex(u.bp), "\n")
    	print("sp    ", hex(u.sp), "\n")
    	print("r8    ", hex(u.r8), "\n")
    	print("r9    ", hex(u.r9), "\n")
    	print("r10   ", hex(u.r10), "\n")
    	print("r11   ", hex(u.r11), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/defs_plan9_arm.go

    func dumpregs(u *ureg) {
    	print("r0    ", hex(u.r0), "\n")
    	print("r1    ", hex(u.r1), "\n")
    	print("r2    ", hex(u.r2), "\n")
    	print("r3    ", hex(u.r3), "\n")
    	print("r4    ", hex(u.r4), "\n")
    	print("r5    ", hex(u.r5), "\n")
    	print("r6    ", hex(u.r6), "\n")
    	print("r7    ", hex(u.r7), "\n")
    	print("r8    ", hex(u.r8), "\n")
    	print("r9    ", hex(u.r9), "\n")
    	print("r10   ", hex(u.r10), "\n")
    	print("r11   ", hex(u.r11), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/defs_windows_arm64.go

    	print("r12  ", hex(r.x[12]), "\n")
    	print("r13  ", hex(r.x[13]), "\n")
    	print("r14  ", hex(r.x[14]), "\n")
    	print("r15  ", hex(r.x[15]), "\n")
    	print("r16  ", hex(r.x[16]), "\n")
    	print("r17  ", hex(r.x[17]), "\n")
    	print("r18  ", hex(r.x[18]), "\n")
    	print("r19  ", hex(r.x[19]), "\n")
    	print("r20  ", hex(r.x[20]), "\n")
    	print("r21  ", hex(r.x[21]), "\n")
    	print("r22  ", hex(r.x[22]), "\n")
    	print("r23  ", hex(r.x[23]), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/signal_arm64.go

    	print("r12     ", hex(c.r12()), "\n")
    	print("r13     ", hex(c.r13()), "\n")
    	print("r14     ", hex(c.r14()), "\n")
    	print("r15     ", hex(c.r15()), "\n")
    	print("r16     ", hex(c.r16()), "\n")
    	print("r17     ", hex(c.r17()), "\n")
    	print("r18     ", hex(c.r18()), "\n")
    	print("r19     ", hex(c.r19()), "\n")
    	print("r20     ", hex(c.r20()), "\n")
    	print("r21     ", hex(c.r21()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/crypto/tls/prf_test.go

    	for i, test := range testKeysFromTests {
    		in, _ := hex.DecodeString(test.preMasterSecret)
    		clientRandom, _ := hex.DecodeString(test.clientRandom)
    		serverRandom, _ := hex.DecodeString(test.serverRandom)
    
    		masterSecret := masterFromPreMasterSecret(test.version, test.suite, in, clientRandom, serverRandom)
    		if s := hex.EncodeToString(masterSecret); s != test.masterSecret {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 27 22:24:05 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  10. src/encoding/hex/example_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package hex_test
    
    import (
    	"encoding/hex"
    	"fmt"
    	"log"
    	"os"
    )
    
    func ExampleEncode() {
    	src := []byte("Hello Gopher!")
    
    	dst := make([]byte, hex.EncodedLen(len(src)))
    	hex.Encode(dst, src)
    
    	fmt.Printf("%s\n", dst)
    
    	// Output:
    	// 48656c6c6f20476f7068657221
    }
    
    func ExampleDecode() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 10 21:40:16 UTC 2016
    - 2.3K bytes
    - Viewed (0)
Back to top