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

  /src/external/lgpl3/gmp/dist/mpn/x86/
t-zdisp2.pl 110 my @funs;
111 if ($base eq 'aors_n') { @funs = qw(add_n sub_n); }
112 elsif ($base eq 'aorsmul_1') { @funs = qw(addmul_1 submul_1); }
113 elsif ($base eq 'popham') { @funs = qw(popcount hamdist); }
114 elsif ($base eq 'logops_n') { @funs = qw(and_n andn_n nand_n ior_n iorn_n nior_n xor_n xnor_n); }
115 elsif ($base eq 'lorrshift') { @funs = qw(lshift rshift); }
116 else { @funs = ($base); }
118 foreach my $fun (@funs) {
  /src/external/lgpl3/gmp/dist/scanf/
doscan.c 77 across to the standard sscanf or fscanf via funs->scan, for ease of
81 Because funs->scan doesn't get the whole input it can't put the right
85 supports our %n output, but for sscanf it lets funs->step move us
100 For standard % conversions, funs->scan is called once for each
202 (c) = (*funs->get) (data); \
221 gmpscan (const struct gmp_doscan_funs_t *funs, void *data,
233 c = (*funs->get) (data);
425 (*funs->unget) (c, data);
445 it's not necessary to watch for EOF from funs->get, */
447 skip_white (const struct gmp_doscan_funs_t *funs, void *data
    [all...]
  /src/external/lgpl3/gmp/dist/printf/
doprnt.c 134 is a call-by-reference and the funs->format routine modifies it. */
154 given "funs" routines. The data parameter is passed through to those
158 __gmp_doprnt (const struct doprnt_funs_t *funs, void *data,
178 funs->format. Unfortunately that means it has to be copied so each
341 ret = __gmp_doprnt_integer (funs, data, &param, gmp_str);
373 DOPRNT_ACCUMULATE (__gmp_doprnt_mpf (funs, data, &param,
615 if (funs->final != NULL)
616 if ((*funs->final) (data) == -1)
doprnti.c 44 __gmp_doprnt_integer (const struct doprnt_funs_t *funs,
doprntf.c 58 __gmp_doprnt_mpf (const struct doprnt_funs_t *funs,
  /src/external/lgpl3/gmp/dist/tune/
many.pl 271 # funs - functions provided by the file, defaulting to the filename with mpn
398 'funs' => ['divexact_1'],
405 'funs' => ['divexact_by3c'],
415 'funs' => ['divrem_1', 'preinv_divrem_1'],
424 'funs' => ['preinv_divrem_1'],
538 'funs' => ['jacobi', 'legendre', 'kronecker'],
546 'funs' => ['jacobi_base'],
572 'funs' => ['mod_1','preinv_mod_1'],
580 'funs' => ['preinv_mod_1'],
601 'funs' => ['udiv_qrnnd','udiv_qrnnd_r']
    [all...]
  /src/bin/ksh/
table.h 115 struct table funs; /* local functions */ member in struct:block
edit.c 646 glob_table(pat, &w, &l->funs);
exec.c 798 tp = mytsearch(&l->funs, name, h);
802 tp = tenter(&l->funs, name, h);
c_ksh.c 748 for (p = tsort(&l->funs); (vp = *p++); ) {
var.c 60 tinit(&l->funs, &l->area, 0);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
sorting.d 1513 alias funs = less[0 .. $ - 1];
1518 alias funs = less;
1521 static if (funs.length == 0)
1524 static if (funs.length == 1)
1525 return sort!(funs[0], ss, Range)(r);
1528 multiSortImpl!(Range, ss, funs)(r);
1529 return assumeSorted!(multiSortPredFun!(Range, funs))(r);
1545 private bool multiSortPredFun(Range, funs...)(ElementType!Range a, ElementType!Range b)
1547 foreach (f; funs)
1556 private void multiSortImpl(Range, SwapStrategy ss, funs...)(Range r
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/
common.d 464 Forwards each of the methods in `funs` (if defined) to `member`.
466 /*package*/ string forwardToMember(string member, string[] funs...)
469 foreach (fun; funs)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
parallelism.d 307 alias funs = staticMap!(binaryFun, functions);
311 lhs.expand[i] = funs[i](lhs.expand[i], rhs);
329 alias funs = staticMap!(binaryFun, functions);
333 lhs.expand[i] = funs[i](lhs.expand[i], rhs.expand[i]);
functional.d 1163 alias funs = staticMap!(unaryFun, "a", "a * 2", "a * 3", "a * a", "-a");
1164 alias afun = adjoin!funs;
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 4560 DOPRNT_ACCUMULATE_FUN (funs->format, (data, fmt, ap))
4562 DOPRNT_ACCUMULATE_FUN (funs->memory, (data, ptr, len))
4564 DOPRNT_ACCUMULATE_FUN (funs->reps, (data, c, n))

Completed in 32 milliseconds