Lines Matching refs:cfiLength
176 pint_t cfiLength = (pint_t)addressSpace.get32(p); in decodeFDE() local
178 if (cfiLength == 0xffffffff) { in decodeFDE()
180 cfiLength = (pint_t)addressSpace.get64(p); in decodeFDE()
183 if (cfiLength == 0) in decodeFDE()
188 pint_t nextCFI = p + cfiLength; in decodeFDE()
244 pint_t cfiLength = addressSpace.get32(p); in findFDE() local
246 if (cfiLength == 0xffffffff) { in findFDE()
248 cfiLength = (pint_t)addressSpace.get64(p); in findFDE()
251 if (cfiLength == 0) in findFDE()
256 p += cfiLength; in findFDE()
259 pint_t nextCFI = p + cfiLength; in findFDE()