Lines Matching refs:offsetof
151 #define offsetof(st, m) __builtin_offsetof(st, m) in main()
155 printf("@id: %lu\n", offsetof(cs_insn, id)); in main()
156 printf("@address: %lu\n", offsetof(cs_insn, address)); in main()
157 printf("@size: %lu\n", offsetof(cs_insn, size)); in main()
158 printf("@bytes: %lu\n", offsetof(cs_insn, bytes)); in main()
159 printf("@mnemonic: %lu\n", offsetof(cs_insn, mnemonic)); in main()
160 printf("@op_str: %lu\n", offsetof(cs_insn, op_str)); in main()
161 printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read)); in main()
162 printf("@regs_read_count: %lu\n", offsetof(cs_insn, regs_read_count)); in main()
163 printf("@regs_write: %lu\n", offsetof(cs_insn, regs_write)); in main()
164 printf("@regs_write_count: %lu\n", offsetof(cs_insn, regs_write_count)); in main()
165 printf("@groups: %lu\n", offsetof(cs_insn, groups)); in main()
166 printf("@groups_count: %lu\n", offsetof(cs_insn, groups_count)); in main()
167 printf("@arch: %lu\n", offsetof(cs_insn, x86)); in main()