Searched refs:xlen (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/fontconfig/dist/test/
H A Dtest-migration.c152 size_t len = strlen (tmp), xlen, dlen; local in function:main
162 xlen = strlen (xdg);
164 strcpy (&confd[xlen], "/fontconfig");
/xsrc/external/mit/xedit/dist/lisp/mp/
H A Dmp.c424 long xlen, tlen, ulen; local in function:mp_karatsuba_mul
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
[all...]
H A Dmpi.c375 long xlen; /* maximum result size */ local in function:mpi_addsub
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/
H A Dhook.c1003 int i, ref, xlen; local in function:LineEdit
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 8 milliseconds