Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libunwind/src/
H A DDwarfParser.hpp179 pint_t cfiLength = (pint_t)addressSpace.get32(p); in decodeFDE() local
181 if (cfiLength == 0xffffffff) { in decodeFDE()
183 cfiLength = (pint_t)addressSpace.get64(p); in decodeFDE()
186 if (cfiLength == 0) in decodeFDE()
191 pint_t nextCFI = p + cfiLength; in decodeFDE()
247 pint_t cfiLength = addressSpace.get32(p); in findFDE() local
249 if (cfiLength == 0xffffffff) { in findFDE()
251 cfiLength = (pint_t)addressSpace.get64(p); in findFDE()
254 if (cfiLength == 0) in findFDE()
259 p += cfiLength; in findFDE()
[all …]