OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:powtab
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/lgpl3/gmp/dist/tune/
set_strp.c
36
mpn_pre_set_str (mp_ptr wp, unsigned char *str, size_t str_len, powers_t *
powtab
, mp_ptr tp)
39
mpn_bc_set_str (wp, str, str_len,
powtab
->base);
41
mpn_dc_set_str (wp, str, str_len,
powtab
, tp);
tuneup.c
2751
powers_t
powtab
[GMP_LIMB_BITS];
local
2784
n_pows = mpn_compute_powtab (
powtab
, powtab_mem, un, base);
2785
pt =
powtab
+ n_pows;
/src/external/lgpl3/gmp/dist/mpn/generic/
set_str.c
62
Generalizing that idea, perhaps we should make
powtab
contain successive
110
powers_t
powtab
[GMP_LIMB_BITS];
local
127
n_pows = mpn_compute_powtab (
powtab
, powtab_mem, un, base);
128
pt =
powtab
+ n_pows;
140
const powers_t *
powtab
, mp_ptr tp)
146
len_lo =
powtab
->digits_in_base;
151
return mpn_bc_set_str (rp, str, str_len,
powtab
->base);
153
return mpn_dc_set_str (rp, str, str_len,
powtab
- 1, tp);
160
hn = mpn_bc_set_str (tp, str, len_hi,
powtab
->base);
162
hn = mpn_dc_set_str (tp, str, len_hi,
powtab
- 1, rp)
[
all
...]
get_str.c
63
1. The recursive function of (C) could use less temporary memory. The
powtab
78
powtab
parameter for dividing the current number into a fraction. Convert
81
powtab
instead of the actual powers.
82
6. Decrease
powtab
allocation for even bases. E.g. for base 10 we could save
305
/* Convert {UP,UN} to a string with a base as represented in
POWTAB
, and put
313
const powers_t *
powtab
, mp_ptr tmp)
318
str = mpn_bc_get_str (str, len, up, un,
powtab
->base);
334
pwp =
powtab
->p;
335
pwn =
powtab
->n;
336
sn =
powtab
->shift
368
powers_t
powtab
[GMP_LIMB_BITS];
local
[
all
...]
compute_powtab.c
39
* The exptab and
powtab
vectors are in opposite orders. Probably OK.
65
mpn_compute_powtab_mul (powers_t *
powtab
, mp_ptr powtab_mem, mp_size_t un,
83
powers_t *pt =
powtab
;
205
mpn_compute_powtab_div (powers_t *
powtab
, mp_ptr powtab_mem, mp_size_t un,
217
powers_t *pt =
powtab
;
348
#error "no
powtab
function available"
353
mpn_compute_powtab (powers_t *
powtab
, mp_ptr powtab_mem, mp_size_t un, int base)
362
mpn_compute_powtab_mul (
powtab
, powtab_mem, un, base, exptab, n_pows);
367
mpn_compute_powtab_div (
powtab
, powtab_mem, un, base, exptab, -n_pows);
372
mpn_compute_powtab_mul (
powtab
, powtab_mem, un, base, exptab, n_pows)
[
all
...]
/src/external/bsd/ntp/dist/ntpd/
refclock_nmea.c
1497
static const uint32_t
powtab
[10] = {
local
1510
ts.tv_nsec = fval *
powtab
[(size_t)(cp - sp)];
Completed in 34 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026