Lines Matching refs:desc
15 const struct LayoutDescription& desc = LayoutDescription(builtin);
16 const uint8_t* result = RawCode() + desc.instruction_offset;
23 const struct LayoutDescription& desc = LayoutDescription(builtin);
24 return desc.instruction_length;
29 const struct LayoutDescription& desc = LayoutDescription(builtin);
30 const uint8_t* result = RawMetadata() + desc.metadata_offset;
31 DCHECK_LE(desc.metadata_offset, data_size_);
37 const struct LayoutDescription& desc = LayoutDescription(builtin);
38 return desc.metadata_length;
43 const struct LayoutDescription& desc = LayoutDescription(builtin);
44 const uint8_t* result = RawMetadata() + desc.metadata_offset;
45 DCHECK_LE(desc.handler_table_offset, data_size_);
51 const struct LayoutDescription& desc = LayoutDescription(builtin);
53 DCHECK_LE(desc.handler_table_offset, desc.constant_pool_offset);
55 DCHECK_LE(desc.handler_table_offset, desc.code_comments_offset_offset);
57 return desc.handler_table_offset;
62 const struct LayoutDescription& desc = LayoutDescription(builtin);
63 const uint8_t* result = RawMetadata() + desc.handler_table_offset;
64 DCHECK_LE(desc.handler_table_offset, data_size_);
70 const struct LayoutDescription& desc = LayoutDescription(builtin);
72 DCHECK_LE(desc.handler_table_offset, desc.constant_pool_offset);
73 return desc.constant_pool_offset - desc.handler_table_offset;
75 DCHECK_LE(desc.handler_table_offset, desc.code_comments_offset_offset);
76 return desc.code_comments_offset_offset - desc.handler_table_offset;
83 const struct LayoutDescription& desc = LayoutDescription(builtin);
84 const uint8_t* result = RawMetadata() + desc.constant_pool_offset;
85 DCHECK_LE(desc.constant_pool_offset, data_size_);
95 const struct LayoutDescription& desc = LayoutDescription(builtin);
96 DCHECK_LE(desc.constant_pool_offset, desc.code_comments_offset_offset);
97 return desc.code_comments_offset_offset - desc.constant_pool_offset;
105 const struct LayoutDescription& desc = LayoutDescription(builtin);
106 const uint8_t* result = RawMetadata() + desc.code_comments_offset_offset;
107 DCHECK_LE(desc.code_comments_offset_offset, data_size_);
113 const struct LayoutDescription& desc = LayoutDescription(builtin);
114 DCHECK_LE(desc.code_comments_offset_offset,
115 desc.unwinding_info_offset_offset);
116 return desc.unwinding_info_offset_offset - desc.code_comments_offset_offset;
121 const struct LayoutDescription& desc = LayoutDescription(builtin);
122 const uint8_t* result = RawMetadata() + desc.unwinding_info_offset_offset;
123 DCHECK_LE(desc.unwinding_info_offset_offset, data_size_);
129 const struct LayoutDescription& desc = LayoutDescription(builtin);
130 DCHECK_LE(desc.unwinding_info_offset_offset, desc.metadata_length);
131 return desc.metadata_length - desc.unwinding_info_offset_offset;