/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
libbitmask.c | 276 * the matched unsigned number. If it is 2, then 'nextc' is the first 284 static int scan_was_ok(int sret, char nextc, const char *ok_next_chars) 286 return sret == 1 || (sret == 2 && strchr(ok_next_chars, nextc) != NULL); 311 char nextc; /* char after sscanf %u match */ local 314 sret = sscanf(p, "%u%c", &a, &nextc); 315 if (!scan_was_ok(sret, nextc, ",-")) 322 sret = sscanf(c1, "%u%c", &b, &nextc); 323 if (!scan_was_ok(sret, nextc, ",:")) 327 sret = sscanf(c1, "%u%c", &s, &nextc); 328 if (!scan_was_ok(sret, nextc, ",")) [all...] |
/external/openssh/openbsd-compat/ |
vis.c | 62 vis(char *dst, int c, int flag, int nextc) 110 if (isoctal(nextc)) {
|
/external/bcc/src/lua/bcc/vendor/ |
json.lua | 101 local nextc = str:sub(pos + 1, pos + 1) 102 if not nextc then error(early_end_error) end 103 return parse_str_val(str, pos + 2, val .. (esc_map[nextc] or nextc))
|
/external/lua/src/ |
liolib.c | 401 static int nextc (RN *rn) { function 419 return nextc(rn); 429 while ((hex ? isxdigit(rn->c) : isdigit(rn->c)) && nextc(rn))
|
/external/mksh/src/ |
misc.c | 978 nextc: 1149 goto nextc; [all...] |
/external/icu/icu4c/source/i18n/ |
rematch.cpp | 3444 UChar32 nextc = UTEXT_CURRENT32(fInputText); local [all...] |