Searched refs:tok1 (Results 1 – 3 of 3) sorted by relevance
| /freebsd-11-stable/sys/geom/linux_lvm/ |
| HD | g_linux_lvm.c | 830 #define GRAB_INT(key, tok1, tok2, v) \ argument 831 if (tok1 && tok2 && strncmp(tok1, key, sizeof(key)) == 0) { \ 832 v = strtol(tok2, &tok1, 10); \ 833 if (tok1 == tok2) \ 839 #define GRAB_STR(key, tok1, tok2, v, len) \ argument 840 if (tok1 && tok2 && strncmp(tok1, key, sizeof(key)) == 0) { \ 844 tok1 = strsep(&tok2, "\""); \ 847 strncpy(v, tok1, len); \
|
| /freebsd-11-stable/contrib/bmake/ |
| HD | job.c | 2881 char tok = JOB_TOKENS[aborting], tok1; in JobTokenAdd() local 2890 while (tok != '+' && read(tokenWaitJob.inPipe, &tok1, 1) == 1) in JobTokenAdd() 2981 char tok, tok1; in Job_TokenWithdraw() local 3009 while (read(tokenWaitJob.inPipe, &tok1, 1) == 1) in Job_TokenWithdraw()
|
| /freebsd-11-stable/contrib/llvm-project/lld/ELF/ |
| HD | ScriptParser.cpp | 88 bool readSectionDirective(OutputSection *cmd, StringRef tok1, StringRef tok2); 731 bool ScriptParser::readSectionDirective(OutputSection *cmd, StringRef tok1, StringRef tok2) { in readSectionDirective() argument 732 if (tok1 != "(") in readSectionDirective()
|