Lines Matching refs:cfiLength
125 pint_t cfiLength = (pint_t)addressSpace.get32(p); in decodeFDE() local
127 if (cfiLength == 0xffffffff) { in decodeFDE()
129 cfiLength = (pint_t)addressSpace.get64(p); in decodeFDE()
132 if (cfiLength == 0) in decodeFDE()
137 pint_t nextCFI = p + cfiLength; in decodeFDE()
186 pint_t cfiLength = addressSpace.get32(p); in findFDE() local
188 if (cfiLength == 0xffffffff) { in findFDE()
190 cfiLength = (pint_t)addressSpace.get64(p); in findFDE()
193 if (cfiLength == 0) in findFDE()
198 p += cfiLength; in findFDE()
201 pint_t nextCFI = p + cfiLength; in findFDE()