Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for t_my_struct1 (0.34 sec)

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

    typedef void t_func_void_of_ptr_char_dots(char*, ...);
    typedef struct my_struct {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	int z[0];
    	long long array[40];
    	int zz[0];
    } t_my_struct;
    typedef struct my_struct1 {
    	int zz [1];
    } t_my_struct1;
    typedef union my_union {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	long long array[40];
    } t_my_union;
    typedef enum my_enum {
    	e1 = 1,
    	e2 = 2,
    	e3 = -5,
    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

    	"t_func_void_of_void":                   "func() void",
    	"t_func_void_of_ptr_char_dots":          "func(*char, ...) void",
    	"t_my_struct":                           "struct my_struct {vi volatile int@0; x char@4 : 1@7; y int@4 : 4@27; z [0]int@8; array [40]long long int@8; zz [0]int@328}",
    	"t_my_struct1":                          "struct my_struct1 {zz [1]int@0}",
    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