OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:powers
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/v8/tools/
generate-ten-powers.scm
30
;; bigloo -static-bigloo -o generate-ten-
powers
generate-ten-
powers
.scm
34
(module gen-ten-
powers
88
(define (generate-
powers
from to mantissa-size)
135
(define (print-c
powers
from to struct-type
149
(define (print-
powers
-reduced n)
158
((>= i (vector-length
powers
))
164
(let* ((power (vector-ref
powers
i))
187
"// hold the cached
powers
of ten. Each entry will hold a 64-bit\n"
205
(print-
powers
-reduced 1
[
all
...]
/external/chromium_org/third_party/icu/source/i18n/
ucol_wgt.cpp
330
uint32_t
powers
[5];
local
332
powers
[0] = 1;
333
powers
[1] = countBytes;
334
powers
[2] = countBytes*countBytes;
335
powers
[3] = countBytes*countBytes*countBytes;
336
powers
[4] = countBytes*countBytes*countBytes*countBytes;
353
maxCount+=(uint32_t)ranges[i].count*
powers
[4-ranges[i].length];
403
power_1=
powers
[minLength-ranges[0].length];
decNumber.c
191
#define
powers
DECPOWERS /* old internal name */
macro
221
/*
Powers
of ten (
powers
[n]==10**n, 0<=n<=9) */
232
/* multiply, after removing
powers
of 2 by shifting, and final shift */
418
for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*
powers
[d-1];
454
for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*
powers
[d-1];
[
all
...]
/external/chromium_org/v8/test/cctest/
test-macro-assembler-x64.cc
2187
int
powers
[] = { 0, 1, 2, 3, 8, 16, 24, 31 };
local
[
all
...]
/external/icu/icu4c/source/i18n/
decNumber.c
191
#define
powers
DECPOWERS /* old internal name */
macro
223
/*
Powers
of ten (
powers
[n]==10**n, 0<=n<=9) */
234
/* multiply, after removing
powers
of 2 by shifting, and final shift */
420
for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*
powers
[d-1];
456
for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*
powers
[d-1];
[
all
...]
Completed in 875 milliseconds