HomeSort by relevance Sort by last modified time
    Searched refs:integral (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
  /external/sfntly/cpp/src/sfntly/math/
fixed1616.h 26 static inline int32_t Integral(int32_t fixed) {
34 static inline int32_t Fixed(int32_t integral, int32_t fractional) {
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psconv.c 202 FT_INT64 integral = 0; local
205 FT_Long integral; local
237 integral = ((FT_INT64)PS_Conv_ToInt( &p, limit )) << 16;
243 integral = PS_Conv_ToInt( &p, limit );
246 if ( integral > 0x7FFF )
249 integral = integral << 16;
275 if ( !integral && power_ten > 0 )
308 if ( !integral && !decimal )
318 if ( integral >= 0xCCCCCCCL
    [all...]
  /external/libcxx/test/utilities/function.objects/unord.hash/
Android.mk 31 test_name := utilities/function.objects/unord.hash/integral
32 test_src := integral.pass.cpp
  /external/chromium_org/third_party/freetype/src/psaux/
psconv.c 199 FT_Fixed integral = 0; local
224 integral = PS_Conv_ToInt( &p, limit );
229 if ( integral > 0x7FFF )
232 integral = (FT_Fixed)( (FT_UInt32)integral << 16 );
257 if ( !integral && power_ten > 0 )
290 if ( !integral && !decimal )
300 if ( integral >= 0xCCCCCCCL )
302 integral *= 10;
318 integral /= 10
    [all...]
  /external/freetype/src/psaux/
psconv.c 199 FT_Fixed integral = 0; local
224 integral = PS_Conv_ToInt( &p, limit );
229 if ( integral > 0x7FFF )
232 integral = (FT_Fixed)( (FT_UInt32)integral << 16 );
257 if ( !integral && power_ten > 0 )
290 if ( !integral && !decimal )
300 if ( integral >= 0xCCCCCCCL )
302 integral *= 10;
318 integral /= 10
    [all...]
  /external/libcxx/test/atomics/atomics.types.generic/
Android.mk 35 test_name := atomics/atomics.types.generic/integral
36 test_src := integral.pass.cpp
  /external/pixman/pixman/
pixman-filter.c 157 integral (pixman_kernel_t kernel1, double x1, function
169 integral (kernel1, x1, kernel2, scale, x2, - x1) +
170 integral (kernel1, 0, kernel2, scale, x2 - x1, width + x1);
175 integral (kernel1, x1, kernel2, scale, x2, - x2) +
176 integral (kernel1, x1 - x2, kernel2, scale, 0, width + x2);
270 c = integral (reconstruct, ilow,
  /external/clang/test/Lexer/
cxx1y_digit_separators.cpp 8 namespace integral { namespace
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 38 namespace integral { namespace
constant-expression-cxx11.cpp 6 static_assert(++x, "test"); // expected-error {{not an integral constant expression}}
305 expected-warning {{not an integral constant expression}} \
308 expected-warning {{not an integral constant expression}} \
311 expected-warning {{not an integral constant expression}} \
314 expected-warning {{not an integral constant expression}} \
317 expected-warning {{not an integral constant expression}} \
320 expected-warning {{not an integral constant expression}} \
323 expected-warning {{not an integral constant expression}} \
531 expected-error {{static_assert expression is not an integral constant expression}} \
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
comparison_op.hpp 39 # include <boost/mpl/aux_/config/integral.hpp>
largest_int.hpp 19 #include <boost/mpl/aux_/config/integral.hpp>
value_wknd.hpp 18 #include <boost/mpl/aux_/config/integral.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
negate.hpp 22 #include <boost/mpl/aux_/config/integral.hpp>
if.hpp 21 #include <boost/mpl/aux_/config/integral.hpp>
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
Android.mk 67 test_name := utilities/meta/meta.unary/meta.unary.cat/integral
68 test_src := integral.pass.cpp
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
Android.mk 63 test_name := utilities/meta/meta.unary/meta.unary.comp/integral
64 test_src := integral.pass.cpp
  /external/chromium_org/third_party/libxml/src/
trionan.c 409 double integral, fraction;
423 (fraction = modf(number, &integral),
424 integral == fraction)));
  /external/libxml2/
trionan.c 409 double integral, fraction;
423 (fraction = modf(number, &integral),
424 integral == fraction)));
  /external/qemu/util/
cutils.c 312 double val, mul, integral, fraction; local
319 fraction = modf(val, &integral);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree.js 681 * punctuation sequences, function/big operator/integral applications to
    [all...]
math_semantic_tree_test.js     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_rules.js 778 'integral-punct', 'default.default',
780 'self::punctuated', '@role="integral"');
828 // Integral rules
830 'integral', 'default.default',
832 '[n] children/*[3] (rate:0.35);', 'self::integral');
  /frameworks/rs/api/
rs_core_math.spec 624 Return the integral and fractional components of a number.
627 @param iret iret[0] will be set to the integral portion of the number.
725 Round to the nearest integral value.
748 Round to the nearest integral value. Half values are rounded away from zero.
874 ound to integral using truncation.

Completed in 2068 milliseconds

1 2 3