Lines Matching refs:cond_depth
168 unsigned cond_depth = 0; /* current .if nesting level */ variable
1061 if (cond_depth == CurFile_CondMinDepth()) { in Cond_EvalLine()
1067 cond_depth--; in Cond_EvalLine()
1069 return cond_states[cond_depth] & IFS_ACTIVE in Cond_EvalLine()
1086 if (cond_depth == CurFile_CondMinDepth()) { in Cond_EvalLine()
1092 state = cond_states[cond_depth]; in Cond_EvalLine()
1101 cond_states[cond_depth] = state; in Cond_EvalLine()
1117 if (cond_depth == CurFile_CondMinDepth()) { in Cond_EvalLine()
1122 state = cond_states[cond_depth]; in Cond_EvalLine()
1125 cond_states[cond_depth] = in Cond_EvalLine()
1130 cond_states[cond_depth] = IFS_WAS_ACTIVE; in Cond_EvalLine()
1135 if (cond_depth + 1 >= cond_states_cap) { in Cond_EvalLine()
1145 state = cond_states[cond_depth]; in Cond_EvalLine()
1146 cond_depth++; in Cond_EvalLine()
1148 cond_states[cond_depth] = IFS_WAS_ACTIVE; in Cond_EvalLine()
1158 cond_states[cond_depth] = IFS_WAS_ACTIVE; in Cond_EvalLine()
1162 cond_states[cond_depth] = res == CR_TRUE ? IFS_ACTIVE : IFS_INITIAL; in Cond_EvalLine()
1229 unsigned open_conds = cond_depth - CurFile_CondMinDepth(); in Cond_EndFile()
1234 cond_depth = CurFile_CondMinDepth(); in Cond_EndFile()