Home
last modified time | relevance | path

Searched refs:last_row (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp72 const UnwindPlan::Row *last_row = unwind_plan.GetLastRow(); in AugmentUnwindPlanFromCallSite() local
76 if (!process_sp || !first_row || !last_row) in AugmentUnwindPlanFromCallSite()
112 if (first_row != last_row && in AugmentUnwindPlanFromCallSite()
113 first_row->GetOffset() != last_row->GetOffset()) { in AugmentUnwindPlanFromCallSite()
121 last_row->GetCFAValue().GetValueType() && in AugmentUnwindPlanFromCallSite()
123 last_row->GetCFAValue().GetRegisterNumber() && in AugmentUnwindPlanFromCallSite()
125 last_row->GetCFAValue().GetOffset()) { in AugmentUnwindPlanFromCallSite()
130 if (last_row->GetRegisterInfo( in AugmentUnwindPlanFromCallSite()
/freebsd/contrib/mandoc/
H A Dtbl_layout.c300 tbl->first_row = tbl->last_row = in tbl_layout()
332 tbl->last_row = rp; in tbl_layout()
346 if (tbl->last_row == NULL || in tbl_layout()
347 tbl->last_row->first != NULL) { in tbl_layout()
349 if (tbl->last_row) in tbl_layout()
350 tbl->last_row->next = rp; in tbl_layout()
353 tbl->last_row = rp; in tbl_layout()
355 rp = tbl->last_row; in tbl_layout()
H A Dtbl_int.h33 struct tbl_row *last_row; /* Last layout row. */ member