Searched defs:integral (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/Lexer/
H A Dcxx1y_digit_separators.cpp8 namespace integral { namespace
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { argument
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
/external/sfntly/cpp/src/sfntly/math/
H A Dfixed1616.h34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { argument
35 return ((integral & 0xffff) << 16) | (fractional & 0xffff);
/external/chromium_org/third_party/freetype/src/psaux/
H A Dpsconv.c199 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 /
[all...]
/external/freetype/src/psaux/
H A Dpsconv.c199 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 /
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsconv.c202 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 >
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp38 namespace integral { namespace
/external/pixman/pixman/
H A Dpixman-filter.c157 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/qemu/util/
H A Dcutils.c312 double val, mul, integral, fraction; local
319 fraction = modf(val, &integral);
/external/chromium_org/ui/file_manager/gallery/js/
H A Dmosaic_mode.js207 // Calculates integral area from t1 to t2 of f(x) = sqrt(x) dx.
208 var integral = function(t1, t2) {
214 var factor = delta / integral(0, Mosaic.ANIMATED_SCROLL_DURATION);
222 integral(Math.max(0, Mosaic.ANIMATED_SCROLL_DURATION - position),

Completed in 195 milliseconds