Lines Matching refs:end
128 const char *end = &line[llen]; in ReadItemValue() local
138 while (line < end && isspace(*line)) in ReadItemValue()
144 while (line < end && isspace(*line)) in ReadItemValue()
147 if (end - line > vlen) in ReadItemValue()
150 while (isspace(*(end - 1))) in ReadItemValue()
151 end--; in ReadItemValue()
153 if (end <= line) in ReadItemValue()
158 strncpy(value, line, (size_t)(end - line)); in ReadItemValue()
1047 char *blkname = NULL, *end = &buf[len]; in DetectBlock() local
1052 while (buf < end && isspace(*buf)) in DetectBlock()
1064 while (buf < end && isspace(*buf)) in DetectBlock()
1068 if (buf >= end || *buf != '{') in DetectBlock()
1072 while (buf < end && isspace(*buf)) in DetectBlock()
1078 for (len = 0; &buf[len] < end; len++) { in DetectBlock()
1126 char *word, *str, *end; in PatchCONFIG() local
1162 end = str + strlen(str); in PatchCONFIG()
1163 while (DetectWord(str, end - str, &word, &wlen) == 0) { in PatchCONFIG()