Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for typSize (0.14 sec)

  1. test/asmhdr.dir/main.go

    	// We also include boolean consts in go_asm.h, but they're
    	// defined to be "true" or "false", and it's not clear how to
    	// use that in assembly.
    
    	if want := unsafe.Sizeof(typ{}); want != uintptr(typSize) {
    		println("typSize", want, "!=", typSize)
    	}
    	if want := unsafe.Offsetof(typ{}.a); want != uintptr(typA) {
    		println("typA", want, "!=", typA)
    	}
    	if want := unsafe.Offsetof(typ{}.b); want != uintptr(typB) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 21:27:19 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. test/asmhdr.dir/main.s

    GLOBL ·bigIntAsm(SB),RODATA,$8
    
    DATA ·stringAsm(SB)/4, $const_stringVal
    GLOBL ·stringAsm(SB),RODATA,$4
    
    DATA ·longStringAsm(SB)/91, $const_longStringVal
    GLOBL ·longStringAsm(SB),RODATA,$91
    
    DATA ·typSize(SB)/8, $typ__size
    GLOBL ·typSize(SB),RODATA,$8
    
    DATA ·typA(SB)/8, $typ_a
    GLOBL ·typA(SB),RODATA,$8
    
    DATA ·typB(SB)/8, $typ_b
    GLOBL ·typB(SB),RODATA,$8
    
    DATA ·typC(SB)/8, $typ_c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 21:27:19 UTC 2022
    - 733 bytes
    - Viewed (0)
Back to top