OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fixedpoint
(Results
1 - 14
of
14
) sorted by null
/external/gemmlowp/internal/
fixedpoint.h
15
//
fixedpoint
.h: fixed-point arithmetic, with basic operations and
224
class
FixedPoint
{
237
typedef
FixedPoint
<ScalarRawType, kIntegerBits> ScalarFixedPointType;
255
static
FixedPoint
FromRaw(RawType x) {
256
FixedPoint
retval;
261
static
FixedPoint
FromScalarRaw(ScalarRawType x) {
262
FixedPoint
retval;
267
static
FixedPoint
FromScalarFixedPoint(ScalarFixedPointType x) {
272
static
FixedPoint
ConstantPOT() {
280
static
FixedPoint
Zero() { return FromScalarRaw(0);
[
all
...]
fixedpoint_neon.h
16
// in
fixedpoint
.h.
21
#include "
fixedpoint
.h"
output.h
27
#include "
fixedpoint
.h"
267
typedef
FixedPoint
<DataType, 3> F3;
268
typedef
FixedPoint
<DataType, 0> F0;
299
FixedPoint
<DataType, 0> inverse_amplitude_normalized;
301
FixedPoint
<DataType, 0> amplitude_normalized;
/external/gemmlowp/test/
test_fixedpoint.cc
5
#include "../internal/
fixedpoint
.h"
10
void test_convert(
FixedPoint
<int32_t, tIntegerBits> x) {
11
typedef
FixedPoint
<int32_t, tIntegerBits> F;
17
void test_Rescale(
FixedPoint
<int32_t, tIntegerBits_a> a) {
18
FixedPoint
<int32_t, tIntegerBits_b> actual = Rescale<tIntegerBits_b>(a);
19
FixedPoint
<int32_t, tIntegerBits_b> expected =
27
FixedPoint
<int32_t, tIntegerBits_a> aq;
34
void test_mul(
FixedPoint
<int32_t, tIntegerBits_a> a,
35
FixedPoint
<int32_t, tIntegerBits_b> b) {
37
FixedPoint
<int32_t, IntegerBits_ab> ab
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DigitList.java
405
* @param
fixedPoint
If true, then maximumDigits is the maximum
408
final void set(double source, int maximumDigits, boolean
fixedPoint
)
419
if (
fixedPoint
) {
447
round(
fixedPoint
? (maximumDigits + decimalAt) : maximumDigits == 0 ? -1 : maximumDigits);
686
* @param
fixedPoint
If true, then maximumDigits is the maximum
690
int maximumDigits, boolean
fixedPoint
) {
751
round(
fixedPoint
? (maximumDigits + decimalAt) : maximumDigits == 0 ? -1 : maximumDigits);
761
* @param
fixedPoint
If true, then maximumDigits is the maximum
765
int maximumDigits, boolean
fixedPoint
) {
766
setBigDecimalDigits(source.toString(), maximumDigits,
fixedPoint
);
[
all
...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DigitList.java
404
* @param
fixedPoint
If true, then maximumDigits is the maximum
407
final void set(double source, int maximumDigits, boolean
fixedPoint
)
418
if (
fixedPoint
) {
446
round(
fixedPoint
? (maximumDigits + decimalAt) : maximumDigits == 0 ? -1 : maximumDigits);
685
* @param
fixedPoint
If true, then maximumDigits is the maximum
689
int maximumDigits, boolean
fixedPoint
) {
750
round(
fixedPoint
? (maximumDigits + decimalAt) : maximumDigits == 0 ? -1 : maximumDigits);
760
* @param
fixedPoint
If true, then maximumDigits is the maximum
764
int maximumDigits, boolean
fixedPoint
) {
765
setBigDecimalDigits(source.toString(), maximumDigits,
fixedPoint
);
[
all
...]
/external/skia/src/core/
SkDeviceLooper.h
84
kBW_Delta = 1 << 14, // 16K, gives room to spare for
fixedpoint
SkEdge.cpp
464
// we want to say SkASSERT(oldy <= newy), but our finite
fixedpoint
SkScan_Antihair.cpp
760
XRect (
fixedpoint
), as it won't overflow.
/libcore/ojluni/src/main/java/java/text/
DigitList.java
285
* @param
fixedPoint
If true, then maximumDigits is the maximum
288
final void set(boolean isNegative, double source, int maximumDigits, boolean
fixedPoint
) {
289
set(isNegative, Double.toString(source), maximumDigits,
fixedPoint
);
296
final void set(boolean isNegative, String s, int maximumDigits, boolean
fixedPoint
) {
335
if (
fixedPoint
) {
368
round(
fixedPoint
? (maximumDigits + decimalAt) : maximumDigits);
555
* @param
fixedPoint
If true, then maximumDigits is the maximum
558
final void set(boolean isNegative, BigDecimal source, int maximumDigits, boolean
fixedPoint
) {
562
set(isNegative, s, maximumDigits,
fixedPoint
);
/external/aac/libFDK/include/
common_fix.h
151
/* macros for compile-time conversion of constant float values to
fixedpoint
*/
167
/* macros for runtime conversion of float values to integer
fixedpoint
. NO OVERFLOW CHECK!!! */
172
/* macros for runtime conversion of
fixedpoint
values to other
fixedpoint
. NO ROUNDING!!! */
181
/* macros for runtime conversion of integer
fixedpoint
values to float. */
/external/skia/tests/
DrawPathTest.cpp
15
// test that we can draw an aa-rect at coordinates > 32K (bigger than
fixedpoint
)
/external/robolectric/v1/lib/main/
maps_v16.jar
/external/svox/pico/lib/
picocep.c
101
*
Fixedpoint
arithmetic (might go into a separate module if general enough and needed by other modules)
[
all
...]
Completed in 376 milliseconds