Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for t_ptr_volatile_int (0.2 sec)

  1. src/debug/dwarf/testdata/typedef.c

    OS X Mach-O:
    gcc -gdwarf-2 -m64 -c typedef.c -o typedef.macho
    gcc -gdwarf-4 -m64 -c typedef.c -o typedef.macho4
    */
    #include <complex.h>
    
    typedef volatile int* t_ptr_volatile_int;
    typedef const char *t_ptr_const_char;
    typedef long t_long;
    typedef unsigned short t_ushort;
    typedef int t_func_int_of_float_double(float, double);
    typedef int (*t_ptr_func_int_of_float_double)(float, double);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/debug/dwarf/type_test.go

    package dwarf_test
    
    import (
    	. "debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"strconv"
    	"testing"
    )
    
    var typedefTests = map[string]string{
    	"t_ptr_volatile_int":                    "*volatile int",
    	"t_ptr_const_char":                      "*const char",
    	"t_long":                                "long int",
    	"t_ushort":                              "short unsigned int",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top