Home
last modified time | relevance | path

Searched refs:rounder (Results 1 – 16 of 16) sorted by relevance

/external/webp/src/dsp/
Drescaler_sse2.c120 const __m128i rounder = _mm_set_epi32(0, ROUNDER, 0, ROUNDER); in RescalerImportRowShrink_SSE2() local
156 const __m128i E1 = _mm_add_epi64(D1, rounder); in RescalerImportRowShrink_SSE2()
157 const __m128i E2 = _mm_add_epi64(D2, rounder); in RescalerImportRowShrink_SSE2()
201 const __m128i rounder = _mm_set_epi32(0, ROUNDER, 0, ROUNDER); in ProcessRow_SSE2() local
207 const __m128i C0 = _mm_add_epi64(B0, rounder); in ProcessRow_SSE2()
208 const __m128i C1 = _mm_add_epi64(B1, rounder); in ProcessRow_SSE2()
209 const __m128i C2 = _mm_add_epi64(B2, rounder); in ProcessRow_SSE2()
210 const __m128i C3 = _mm_add_epi64(B3, rounder); in ProcessRow_SSE2()
257 const __m128i rounder = _mm_set_epi32(0, ROUNDER, 0, ROUNDER); in RescalerExportRowExpand_SSE2() local
267 const __m128i D0 = _mm_add_epi64(C0, rounder); in RescalerExportRowExpand_SSE2()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DMacroProps.java20 public Rounder rounder; field in MacroProps
42 if (rounder == null) rounder = fallback.rounder; in fallback()
61 rounder, in hashCode()
83 && Utility.equals(rounder, other.rounder) in equals()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DMacroProps.java24 public Rounder rounder; field in MacroProps
46 if (rounder == null) rounder = fallback.rounder; in fallback()
65 rounder, in hashCode()
87 && Utility.equals(rounder, other.rounder) in equals()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dpool_allocator_test.cc192 Pow2Rounder rounder; in TEST() local
193 EXPECT_EQ(1, rounder.RoundUp(1)); in TEST()
194 EXPECT_EQ(2, rounder.RoundUp(2)); in TEST()
195 EXPECT_EQ(16, rounder.RoundUp(9)); in TEST()
196 EXPECT_EQ(16, rounder.RoundUp(16)); in TEST()
197 EXPECT_EQ(65536, rounder.RoundUp(41234)); in TEST()
198 EXPECT_EQ(65536, rounder.RoundUp(65535)); in TEST()
199 EXPECT_EQ(65536, rounder.RoundUp(65536)); in TEST()
/external/icu/android_icu4j/src/main/java/android/icu/number/
DNumberFormatterSettings.java170 public T rounding(Rounder rounder) { in rounding() argument
171 return create(KEY_ROUNDER, rounder); in rounding()
469 if (macros.rounder == null) { in resolve()
470 macros.rounder = (Rounder) current.value; in resolve()
DNumberPropertyMapper.java175 macros.rounder = rounding; in oldToNew()
249 if (macros.rounder instanceof FractionRounder) { in oldToNew()
257 macros.rounder = Rounder.constructInfinite().withMode(mathContext); in oldToNew()
260 … macros.rounder = Rounder.constructSignificant(1, maxFrac_ + 1).withMode(mathContext); in oldToNew()
263 … macros.rounder = Rounder.constructSignificant(minInt_ + minFrac_, minInt_ + maxFrac_) in oldToNew()
DNumberFormatterImpl.java164 if (macros.rounder != null) { in macrosToMicroGenerator()
165 micros.rounding = macros.rounder; in macrosToMicroGenerator()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DNumberFormatterSettings.java172 public T rounding(Rounder rounder) { in rounding() argument
173 return create(KEY_ROUNDER, rounder); in rounding()
477 if (macros.rounder == null) { in resolve()
478 macros.rounder = (Rounder) current.value; in resolve()
DNumberPropertyMapper.java174 macros.rounder = rounding; in oldToNew()
248 if (macros.rounder instanceof FractionRounder) { in oldToNew()
256 macros.rounder = Rounder.constructInfinite().withMode(mathContext); in oldToNew()
259 … macros.rounder = Rounder.constructSignificant(1, maxFrac_ + 1).withMode(mathContext); in oldToNew()
262 … macros.rounder = Rounder.constructSignificant(minInt_ + minFrac_, minInt_ + maxFrac_) in oldToNew()
DNumberFormatterImpl.java163 if (macros.rounder != null) { in macrosToMicroGenerator()
164 micros.rounding = macros.rounder; in macrosToMicroGenerator()
/external/icu/icu4c/source/i18n/
Dnumber_fluent.cpp49 Derived NumberFormatterSettings<Derived>::rounding(const Rounder &rounder) const { in rounding()
52 copy.fMacros.rounder = rounder; in rounding()
Dnumber_formatimpl.cpp220 if (!macros.rounder.isBogus()) { in macrosToMicroGenerator()
221 fMicros.rounding = macros.rounder; in macrosToMicroGenerator()
/external/icu/icu4c/source/i18n/unicode/
Dnumberformatter.h1287 Rounder rounder; // = Rounder(); (bogus) member
1324 return notation.copyErrorTo(status) || rounder.copyErrorTo(status) || in copyErrorTo()
1457 Derived rounding(const Rounder &rounder) const;
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/sqlite/dist/orig/
Dsqlite3.c26060 double rounder; /* Used for rounding floating point values */
26335 for(idx=precision&0xfff, rounder=0.5; idx>0; idx--, rounder*=0.1){}
26336 if( xtype==etFLOAT ) realvalue += rounder;
26366 realvalue += rounder;
/external/sqlite/dist/
Dsqlite3.c26060 double rounder; /* Used for rounding floating point values */
26335 for(idx=precision&0xfff, rounder=0.5; idx>0; idx--, rounder*=0.1){}
26336 if( xtype==etFLOAT ) realvalue += rounder;
26366 realvalue += rounder;