/ast/src/cmd/cs/vcs_src/ |
H A D | vcs_message.c | 26 static void tracev(int level, va_list ap) argument 30 if (!level || debug && level <= debug) 32 if (level) 33 sfprintf(sfstdout, "[%d] ", level); 40 void trace(int level, ...) argument 44 va_start(ap, level); 45 tracev(level, ap);
|
/ast/src/lib/libpp/ |
H A D | ppincref.c | 35 int level; local 41 level = 0; 44 level++; 45 if (level > 0) 46 level--; 47 error(0, "%-*s%s", level * 4, "", file);
|
H A D | pperror.c | 31 pperror(int level, ...) argument 35 va_start(ap, level); 36 errorv(pp.pass, level, ap);
|
/ast/src/lib/libast/misc/ |
H A D | errorf.c | 33 errorf(void* handle, void* discipline, int level, ...) argument 37 va_start(ap, level); 38 errorv((discipline && handle) ? *((char**)handle) : (char*)handle, (discipline || level < 0) ? level : (level | ERROR_LIBRARY), ap);
|
H A D | errormsg.c | 33 errormsg(const char* dictionary, int level, ...) argument 37 va_start(ap, level); 38 errorv(dictionary, level, ap);
|
H A D | sigcrit.c | 88 * op>0 new region according to SIG_REG_*, return region level 89 * op==0 pop region, return region level 100 static int level; local 114 if (!level++) 118 level--; 143 return level; 172 if (--level <= 0) 174 level = 0; 197 return level;
|
H A D | error.c | 29 * level is the error level 30 * level >= error_info.core!=0 dumps core 31 * level >= ERROR_FATAL calls error_info.exit 32 * level < 0 is for debug tracing 345 error(int level, ...) argument 349 va_start(ap, level); 350 errorv(NiL, level, ap); 355 errorv(const char* id, int level, va_list ap) argument 379 if (level > [all...] |
/ast/src/lib/libast/astsa/ |
H A D | error.c | 33 errorv(const char* id, int level, va_list ap) argument 39 if (level < 0) 43 flags = level & ~ERROR_LEVEL; 44 level &= ERROR_LEVEL; 47 if (level && ((s = error_info.id) || (s = (char*)id))) 56 else if (level < 0) 57 sfprintf(sfstderr, "debug%d: ", level); 58 else if (level) 60 if (level == ERROR_WARNING) 68 if (level 85 error(int level, ...) argument 95 errorf(void* handle, void* discipline, int level, ...) argument [all...] |
/ast/src/lib/libast/regex/ |
H A D | regfatal.c | 33 regfatalpat(regex_t* p, int level, int code, const char* pat) argument 40 error(level, "regular expression: %s: %s", pat, buf); 42 error(level, "regular expression: %s", buf); 46 regfatal(regex_t* p, int level, int code) argument 48 regfatalpat(p, level, code, NiL);
|
/ast/src/cmd/mam/ |
H A D | mamdag.sh | 60 integer level=0 line=0 75 make) case " ${list[level]} " in 77 *) list[level]="${list[level]} \"$arg\"" ;; 79 level=level+1 80 list[level]=\"$arg\" 82 prev) case " ${list[level]} " in 84 *) list[level]="${list[level]} \" [all...] |
H A D | mamdot.sh | 52 integer level=0 86 make) [[ $rule == $ignore ]] || list[level]=${list[level]}$'\n'\"$arg\" 87 level=level+1 88 list[level]= 90 prev) [[ $rule == $ignore ]] || list[level]=${list[level]}$'\n'\"$arg\" 92 done) [[ $rule == $ignore || ! ${list[level]} ]] || 93 print "\"$arg\" -> {${list[level]} }" [all...] |
H A D | mamold.sh | 42 typeset -i level=0 nvariables=0 57 make|prev) rule=${target[level]} 62 target[++level]=$arg 65 exec) [[ $arg == - ]] && arg=${target[level]} 70 done) level=level-1
|
/ast/src/cmd/3d/ |
H A D | error.c | 30 * level is the error level 31 * level >= error_info.core!=0 dumps core 32 * level >= ERROR_FATAL calls error_info.exit 33 * level < 0 is for debug tracing 92 errorv(const char* lib, int level, va_list ap) argument 112 if (level > 0) 114 flags = level & ~ERROR_LEVEL; 115 level &= ERROR_LEVEL; 118 if ((fd = fsfd(&state.fs[FS_option])) <= 0 || level < error_inf 213 error(int level, ...) argument 223 errormsg(const char* dictionary, int level, ...) argument 234 errorf(void* handle, void* discipline, int level, ...) argument [all...] |
H A D | chdir3d.c | 42 state.level = 1; 49 if (state.level > 0 && state.pwd && !CHDIR(state.pwd)) 50 state.level = 0; 72 state.path.level = 0; 78 state.level = state.path.level; 79 message((-1, "chdir: %s [%d]", state.pwd, state.level));
|
H A D | open3d.c | 139 int level; local 183 if (state.path.level && LSTAT(sp, &st)) 205 level = state.path.level; 210 if ((oflag & O_CREAT) && (!sp || level || (oflag & O_EXCL)) || (sp || level) && ((oflag & O_TRUNC) || (oflag & O_ACCMODE) != O_RDONLY)) 216 if (!level) 245 else if (state.level <= 0 || *sp == '/') 248 if (r < 0 && errno == ENOENT && (sp = pathreal(path, P_DOTDOT, NiL)) && state.path.level) 267 if (level [all...] |
H A D | stat3d.c | 68 IVIEW(((struct stat64*)st), state.path.level); 75 IVIEW(st, state.path.level); 92 IVIEW(((struct stat64*)st), state.path.level); 95 IVIEW(st, state.path.level); 123 IVIEW(st, state.path.level);
|
H A D | pathreal.c | 109 message((-5, "pathreal: -- %s level=%d links=%d", path, state.path.level, state.path.nlinks)); 141 state.path.level = state.path.synthesize = state.path.nlinks = 0; 150 if (!st || (!state.level || *path == '/') && !LSTAT(path, st)) 152 if (state.level && streq(path, ".") && !CHDIR(state.pwd)) 154 state.level = 0; 193 if (state.level > 0 && state.pwd && ((type & (P_PATHONLY|P_TOP)) && *sp != '/' || *sp == '.' && sp[1] == 0)) 196 state.level = 0; 200 state.path.level += (state.path.synthesize = state.level); [all...] |
/ast/src/cmd/nmake/ |
H A D | TABLE.mk | 126 local I K P X all level=0 no= 132 .TABLE.options.$(level). := $(options) 133 .TABLE.no.$(level). := 136 let level = level + 1 137 .TABLE.options.$(level). := $(options) 138 .TABLE.no.$(level). := $(no) 159 let level = level - 1 160 .TABLE.options.$(level) [all...] |
/ast/src/lib/libast/comp/ |
H A D | ftw.h | 45 int level; member in struct:FTW
|
/ast/src/lib/libz/ |
H A D | compress.c | 12 Compresses the source buffer into the destination buffer. The level 20 Z_STREAM_ERROR if the level parameter is invalid. 22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) 27 int level; 46 err = deflateInit(&stream, level);
|
/ast/src/cmd/re/ |
H A D | testmatch.c | 316 note(int level, int skip, char* msg) argument 325 return skip | level; 616 int level = 1; local 732 level = 1; 807 if (!query && !(skip & level)) 811 if (!(skip & level)) 812 skip = note(level, skip, "locales not supported by old strmatch()"); 818 if (!(skip & level)) 825 skip = note(level, skip, s); 829 locale = level; [all...] |
/ast/src/cmd/mailx/port/ |
H A D | dtstat.c | 77 static void dttstat(Dtstat_t* ds, Dtlink_t* root, int depth, int* level) argument 79 static void dttstat(ds,root,depth,level) 83 int* level; 87 dttstat(ds,root->left,depth+1,level); 89 dttstat(ds,root->right,depth+1,level); 92 if(level) 93 level[depth] += 1;
|
/ast/src/cmd/codexlib/bzip/ |
H A D | bzip.c | 21 int level; member in struct:State_s 45 int level = MAXLEVEL; local 68 (*p->disc->errorf)(NiL, p->disc, 2, "%s: compression level must be in [%d..%d]", s, MINLEVEL, MAXLEVEL); 71 level = v; 94 state->level = level; 113 *m++ = '0' + state->level; 144 "bzip2 compression. The first parameter is the compression level,"
|
/ast/src/cmd/codexlib/gzip/ |
H A D | gzip.c | 22 int level; member in struct:State_s 47 int level = MAXLEVEL; local 70 (*p->disc->errorf)(NiL, p->disc, 2, "%s: compression level must be in [%d..%d]", s, MINLEVEL, MAXLEVEL); 73 level = v; 99 state->level = level; 120 *m++ = '0' + state->level; 151 "gzip compression. The first parameter is the compression level,"
|
/ast/src/lib/libast/uwin/ |
H A D | err.c | 48 errmsg(int level, int code, const char* fmt, va_list ap) argument 63 errorv(fmt, level|ERROR_NOID, ap); 64 if ((level & ERROR_LEVEL) >= ERROR_ERROR)
|