Home
last modified time | relevance | path

Searched defs:TypeCommon (Results 1 – 2 of 2) sorted by relevance

/external/syzkaller/prog/
Dtypes.go77 type TypeCommon struct { struct
78 TypeName string
79 FldName string // for struct fields and named args
80 TypeSize uint64 // static size of the type, or 0 for variable size types
81 ArgDir Dir
82 IsOptional bool
83 IsVarlen bool
86 func (t *TypeCommon) Name() string {
90 func (t *TypeCommon) FieldName() string {
94 func (t *TypeCommon) Optional() bool {
[all …]
/external/syzkaller/pkg/compiler/
Dgen.go420 func genIntCommon(com prog.TypeCommon, bitLen uint64, bigEndian bool) prog.IntTypeCommon {