HomeSort by: relevance | last modified time | path
    Searched refs:xlen (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/fontconfig/dist/test/
test-migration.c 152 size_t len = strlen (tmp), xlen, dlen; local
162 xlen = strlen (xdg);
164 strcpy (&confd[xlen], "/fontconfig");
  /xsrc/external/mit/xedit/dist/lisp/mp/
mp.c 424 long xlen, tlen, ulen; local
458 xlen = mp_mul(r, t, u, tlen, ulen);
473 xlen = mp_sub(r, r, t, xlen, tlen);
476 xlen = mp_sub(r, r, u, xlen, ulen);
481 xlen = len1 + len2;
482 xlen = mp_add(r, r, u, xlen, ulen);
485 xlen = mp_add(rop, rop, t, xlen, tlen)
    [all...]
mpi.c 375 long xlen; /* maximum result size */ local
379 xlen = MAX(op1->size, op2->size) + 1;
380 if (rop->alloc < xlen) {
381 rop->digs = mp_realloc(rop->digs, sizeof(BNS) * xlen);
382 rop->alloc = xlen;
398 xlen = MAX(op1->size, op2->size);
399 if (rop->alloc < xlen) {
400 rop->digs = mp_realloc(rop->digs, sizeof(BNS) * xlen);
401 rop->alloc = xlen;
  /xsrc/external/mit/xedit/dist/
hook.c 1003 int i, ref, xlen; local
1014 xlen = einfo.mats[ref].rm_eo -
1016 if (xlen < 0)
1019 if (length + xlen >= einfo.bsize) {
1020 einfo.bsize += xlen + 1024 - (xlen % 1024);
1025 line + einfo.mats[ref].rm_so, xlen);
1026 length += xlen;

Completed in 6 milliseconds