Searched refs:upto (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/contrib/diff/src/
H A Difdef.c30 lin from, upto; /* start and limit lines for this group of lines */ member in struct:group
105 groups[0].upto = end0;
108 groups[1].upto = end1;
227 case 'l': return translate_line_number (g->file, g->upto) - 1;
228 case 'm': return translate_line_number (g->file, g->upto);
229 case 'n': return g->upto - g->from;
242 lin from = group->from, upto = group->upto; local
250 if (format[1] == 'l' && format[2] == '\n' && !format[3] && from < upto)
253 linbuf[upto]
[all...]
/freebsd-11.0-release/contrib/dtc/
H A Dfdtput.c78 int upto; /* the number of bytes we have written to buf */ local
81 upto = 0;
89 for (; arg_count > 0; arg++, arg_count--, upto += len) {
97 if (upto + len > value_size) {
98 value_size = (upto + len) + 500;
107 ptr = value + upto;
127 *value_len = upto;
130 fprintf(stderr, "Value size %d\n", upto);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp46 StringRef upto(Cursor C) const { function in class:__anon2473::Cursor
159 StringRef String = Range.upto(R);
170 Token.reset(Type, Range.upto(C))
171 .setStringValue(Range.upto(C).drop_front(PrefixLength));
182 Token.reset(MIToken::IntegerType, Range.upto(C));
238 auto Identifier = Range.upto(C);
261 StringRef Number = NumberRange.upto(C);
271 Range.upto(C))
273 .setStringValue(Range.upto(C).drop_front(StringOffset));
286 Token.reset(Kind, Range.upto(
[all...]
/freebsd-11.0-release/gnu/usr.bin/rcs/lib/
H A Drcsedit.c551 # define copylines(upto,delta) (editline = (upto))
555 copylines(upto, delta)
556 register long upto;
559 * Copy input lines editline+1..upto from fedit to fcopy.
569 if (upto < editline) {
576 if (editline < upto)
581 } while (++editline < upto);
589 } while (++editline < upto);
/freebsd-11.0-release/crypto/openssl/crypto/cms/
H A Dcms_smime.c126 static void do_free_upto(BIO *f, BIO *upto) argument
128 if (upto) {
135 while (f && f != upto);
/freebsd-11.0-release/contrib/gcc/
H A Dtree-ssa-loop-ivopts.c243 unsigned upto; member in struct:iv_ca
4645 gcc_assert (ivs->upto >= use->id);
4647 if (ivs->upto == use->id)
4649 ivs->upto++;
4824 nw->upto = 0;
4886 for (i = 0; i < ivs->upto; i++)

Completed in 325 milliseconds