Searched refs:FLOOR (Results 1 - 25 of 27) sorted by last modified time

12

/external/srec/config/en.us/dictionary/
H A Dc0.6[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftraster.c445 #undef FLOOR macro
450 #define FLOOR( x ) ( (x) & -ras.precision ) macro
459 (Bool)( x - FLOOR( x ) >= ras.precision_half )
1298 e2 = FLOOR( y2 );
2299 e2 = TRUNC( FLOOR( x2 ) );
2382 e2 = FLOOR ( x2 );
2399 pxl = FLOOR( ( x1 + x2 - 1 ) / 2 + ras.precision_half );
2448 pxl = FLOOR( ( x1 + x2 - 1 ) / 2 + ras.precision_half );
2540 e2 = FLOOR ( x2 );
2594 e2 = FLOOR ( x
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
H A Dftgrays.c291 #undef FLOOR macro
300 #define FLOOR( x ) ( (x) & -ONE_PIXEL ) macro
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp468 NV50_IR_OPCODE_CASE(FLR, FLOOR);
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c22 #define FLOOR(x,q) ((x) & -(1 << (q))) macro
204 overlap_b_row = FLOOR(new_row / 4, 3) >> 3;
205 overlap_b_col = FLOOR(new_col / 4, 3) >> 3;
210 overlap_mb_row = FLOOR((overlap_b_row << 3) / 4, 3) >> 3;
211 overlap_mb_col = FLOOR((overlap_b_col << 3) / 4, 3) >> 3;
/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java25 import static java.math.RoundingMode.FLOOR;
74 case FLOOR:
154 case FLOOR:
191 case FLOOR:
233 int log2 = log2(x, FLOOR);
304 int productBits = LongMath.log2(product, FLOOR) + 1;
305 int bits = LongMath.log2(startingNumber, FLOOR) + 1;
329 productBits = LongMath.log2(product, FLOOR) + 1;
H A DDoubleMath.java59 case FLOOR:
224 case FLOOR:
H A DIntMath.java83 case FLOOR:
125 case FLOOR:
213 case FLOOR:
283 case FLOOR:
H A DLongMath.java79 case FLOOR:
123 case FLOOR:
252 case FLOOR:
327 case FLOOR:
/external/guava/guava-tests/test/com/google/common/math/
H A DBigIntegerMathTest.java31 import static java.math.RoundingMode.FLOOR;
55 BigInteger.ZERO.setBit(2 * BigIntegerMath.SQRT2_PRECOMPUTE_THRESHOLD + 1), FLOOR),
89 for (RoundingMode mode : asList(FLOOR, DOWN)) {
147 // Now figure out what rounding mode we should behave like (it depends if FLOOR was
149 boolean floorWasEven = (BigIntegerMath.log2(x, FLOOR) & 1) == 0;
176 for (RoundingMode mode : asList(FLOOR, DOWN)) {
194 // Relies on the correctness of log10(BigInteger, FLOOR).
197 int logFloor = BigIntegerMath.log10(x, FLOOR);
234 // Now figure out what rounding mode we should behave like (it depends if FLOOR was
236 boolean floorWasEven = (BigIntegerMath.log10(x, FLOOR)
[all...]
H A DDoubleMathTest.java28 import static java.math.RoundingMode.FLOOR;
291 int log2 = DoubleMath.log2(d, FLOOR);
385 && StrictMath.pow(2.0, DoubleMath.log2(x, FLOOR)) == x;
481 tester.setDefault(RoundingMode.class, FLOOR);
H A DIntMathTest.java27 import static java.math.RoundingMode.FLOOR;
50 BigIntegerMath.sqrt(BigInteger.ZERO.setBit(2 * Integer.SIZE - 1), FLOOR).intValue(),
66 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR).longValue());
86 assertEquals(IntMath.sqrt(Integer.MAX_VALUE, FLOOR), IntMath.FLOOR_SQRT_MAX_INT);
177 // Relies on the correctness of log10(int, FLOOR) and of pow(int, int).
181 int floor = IntMath.log10(x, FLOOR);
233 /* Relies on the correctness of sqrt(int, FLOOR). */
237 int floor = IntMath.sqrt(x, FLOOR);
503 tester.setDefault(RoundingMode.class, FLOOR);
H A DLongMathTest.java30 import static java.math.RoundingMode.FLOOR;
48 assertEquals(BigIntegerMath.sqrt(BigInteger.ZERO.setBit(2 * Long.SIZE - 1), FLOOR).longValue(),
64 assertEquals(BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR),
68 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * LongMath.HALF_POWERS_OF_10.length + 1), FLOOR);
73 assertEquals(LongMath.sqrt(Long.MAX_VALUE, FLOOR), LongMath.FLOOR_SQRT_MAX_LONG);
212 // Relies on the correctness of log10(long, FLOOR) and of pow(long, int).
215 int floor = LongMath.log10(x, FLOOR);
255 /* Relies on the correctness of sqrt(long, FLOOR). */
258 long logFloor = LongMath.sqrt(x, FLOOR);
536 tester.setDefault(RoundingMode.class, FLOOR);
[all...]
H A DMathTesting.java23 import static java.math.RoundingMode.FLOOR;
52 FLOOR, CEILING, HALF_EVEN, HALF_UP, HALF_DOWN);
/external/freetype/src/raster/
H A Dftraster.c445 #undef FLOOR macro
450 #define FLOOR( x ) ( (x) & -ras.precision ) macro
459 (Bool)( x - FLOOR( x ) >= ras.precision_half )
1298 e2 = FLOOR( y2 );
2302 e2 = TRUNC( FLOOR( x2 ) );
2385 e2 = FLOOR ( x2 );
2402 pxl = FLOOR( ( x1 + x2 - 1 ) / 2 + ras.precision_half );
2451 pxl = FLOOR( ( x1 + x2 - 1 ) / 2 + ras.precision_half );
2543 e2 = FLOOR ( x2 );
2597 e2 = FLOOR ( x
[all...]
/external/freetype/src/smooth/
H A Dftgrays.c294 #undef FLOOR macro
303 #define FLOOR( x ) ( (x) & -ONE_PIXEL ) macro
/external/chromium_org/v8/src/
H A Ddate.js233 var hours = FLOOR((sign * timezoneOffset)/60);
234 var min = FLOOR((sign * timezoneOffset)%60);
H A Dmacros.py132 macro FLOOR(arg) = $floor(arg);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Derror_concealment.c20 #define FLOOR(x,q) ((x) & -(1 << (q))) macro
202 overlap_b_row = FLOOR(new_row / 4, 3) >> 3;
203 overlap_b_col = FLOOR(new_col / 4, 3) >> 3;
208 overlap_mb_row = FLOOR((overlap_b_row << 3) / 4, 3) >> 3;
209 overlap_mb_col = FLOOR((overlap_b_col << 3) / 4, 3) >> 3;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp468 NV50_IR_OPCODE_CASE(FLR, FLOOR);
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 403 milliseconds

12