Lines Matching refs:encoding
61 uint size_of_encoded_value(ubyte encoding) in size_of_encoded_value() argument
63 if (encoding == DW_EH_PE_omit) in size_of_encoded_value()
66 final switch (encoding & 0x07) in size_of_encoded_value()
84 _Unwind_Ptr base_of_encoded_value(ubyte encoding, _Unwind_Context* context) in base_of_encoded_value() argument
86 if (encoding == DW_EH_PE_omit) in base_of_encoded_value()
89 final switch (encoding & 0x70) in base_of_encoded_value()
157 _Unwind_Ptr read_encoded_value_with_base(ubyte encoding, _Unwind_Ptr base, in read_encoded_value_with_base() argument
163 if (encoding == DW_EH_PE_aligned) in read_encoded_value_with_base()
172 switch (encoding & 0x0f) in read_encoded_value_with_base()
220 result += ((encoding & 0x70) == DW_EH_PE_pcrel in read_encoded_value_with_base()
222 if (encoding & DW_EH_PE_indirect) in read_encoded_value_with_base()
233 _Unwind_Ptr read_encoded_value(_Unwind_Context* context, ubyte encoding, in read_encoded_value() argument
236 auto base = base_of_encoded_value(encoding, context); in read_encoded_value()
237 return read_encoded_value_with_base(encoding, base, p); in read_encoded_value()