Lines Matching refs:source
6 * Redistribution and use in source and binary forms, with or *
10 * 1. Redistributions of source code must retain the above *
38 * Redistribution and use in source and binary forms, with or without *
41 * 1. Redistributions of source code must retain the above copyright *
180 * The following code deals with input stacking to do source
191 source(char** arglist)
197 if (state.source.sp >= NOFILE - 1) {
202 state.source.stack[state.source.sp].input = state.input;
203 state.source.stack[state.source.sp].cond = state.cond;
204 state.source.stack[state.source.sp].loading = state.loading;
205 state.source.sp++;
220 if (state.source.sp <= 0) {
228 state.source.sp--;
229 state.cond = state.source.stack[state.source.sp].cond;
230 state.loading = state.source.stack[state.source.sp].loading;
231 state.input = state.source.stack[state.source.sp].input;
232 if (state.source.sp == 0)