HomeSort by relevance Sort by last modified time
    Searched refs:round (Results 51 - 75 of 1433) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/time/time.point/time.point.cast/
round.pass.cpp 13 // round
17 // round(const time_point<Clock, Duration>& t);
33 typedef decltype(std::chrono::round<ToDuration>(f)) R;
35 assert(std::chrono::round<ToDuration>(f) == t);
48 static_assert(std::chrono::round<ToDuration>(f) == t, "");
  /frameworks/base/core/java/android/transition/
CircularPropagation.java 83 epicenterX = Math.round(loc[0] + (sceneRoot.getWidth() / 2)
85 epicenterY = Math.round(loc[1] + (sceneRoot.getHeight() / 2)
97 return Math.round(duration * directionMultiplier / mPropagationSpeed * distanceFraction);
  /frameworks/native/cmds/surfacereplayer/replayer/
Color.h 121 return RGB(round(r * 255), round(g * 255), round(b * 255));
  /frameworks/support/transition/src/android/support/transition/
CircularPropagation.java 83 epicenterX = Math.round(loc[0] + (sceneRoot.getWidth() / 2)
85 epicenterY = Math.round(loc[1] + (sceneRoot.getHeight() / 2)
97 return Math.round(duration * directionMultiplier / mPropagationSpeed * distanceFraction);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
TwilightCalculator.java 103 float n = Math.round(daysSince2000 - J0 - arcLongitude);
130 sunset = Math.round((solarTransitJ2000 + hourAngle) * DateUtils.DAY_IN_MILLIS) + UTC_2000;
131 sunrise = Math.round((solarTransitJ2000 - hourAngle) * DateUtils.DAY_IN_MILLIS) + UTC_2000;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.point/time.point.cast/
round.pass.cpp 13 // round
17 // round(const time_point<Clock, Duration>& t);
33 typedef decltype(std::chrono::round<ToDuration>(f)) R;
35 assert(std::chrono::round<ToDuration>(f) == t);
48 static_assert(std::chrono::round<ToDuration>(f) == t, "");
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lround.c 35 #define roundit round
  /cts/apps/CameraITS/tests/scene2/
test_num_faces.py 67 top_left = (int(round(rect['left']*W/aw)),
68 int(round(rect['top']*H/ah)))
69 bot_rght = (int(round(rect['right']*W/aw)),
70 int(round(rect['bottom']*H/ah)))
  /device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Ia32/
InitializeFpu.s 18 # all exceptions masked, double-precision, round-to-nearest
23 # all exceptions masked, round-to-nearest, flush to zero for masked underflow
33 # masked,double-precision, round-to-nearest) and multimedia-extensions control word
34 # (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
InitializeFpu.asm 21 ; all exceptions masked, double-precision, round-to-nearest
26 ; all exceptions masked, round-to-nearest, flush to zero for masked underflow
37 ; masked,double-precision, round-to-nearest) and multimedia-extensions control word
38 ; (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/BaseUefiCpuLib/Ia32/
InitializeFpu.S 17 # all exceptions masked, double-precision, round-to-nearest
22 # all exceptions masked, round-to-nearest, flush to zero for masked underflow
30 # masked,double-precision, round-to-nearest) and multimedia-extensions control word
31 # (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/BaseUefiCpuLib/X64/
InitializeFpu.S 19 # masked,double-extended-precision, round-to-nearest) and multimedia-extensions control word
20 # (if supported) to 0x1F80 (all exceptions masked, round-to-nearest, flush to zero
33 # all exceptions masked, double-precision, round-to-nearest
49 # all exceptions masked, round-to-nearest, flush to zero for masked underflow
  /external/icu/icu4c/source/test/intltest/
dcfmtest.h 55 const UnicodeString &round,
  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 24 short *round_ptr = b->round;
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/anim/
ColorMatcher.java 33 int result = (int) Math.round(((double) value / BUCKET_SIZE)) * BUCKET_SIZE;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_quantize_sse2.c 40 __m128i round, quant, dequant; local
46 round = _mm_load_si128((const __m128i *)round_ptr);
67 qcoeff0 = _mm_adds_epi16(qcoeff0, round);
68 round = _mm_unpackhi_epi64(round, round);
69 qcoeff1 = _mm_adds_epi16(qcoeff1, round);
138 qcoeff0 = _mm_adds_epi16(qcoeff0, round);
139 qcoeff1 = _mm_adds_epi16(qcoeff1, round);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 42 Int round; local
53 round = 1 << (FDCT_SHIFT - 1);
118 k1 = mla724(k12, k5, round);
119 k0 = mla724(k12, k2, round);
136 k1 = mla392(k0, k14, round);
213 k1 = mla724(k12, k5, round);
214 k0 = mla724(k12, k2, round);
231 k1 = mla392(k0, k14, round);
271 Int round; local
282 round = 1 << (FDCT_SHIFT - 1)
477 Int round; local
656 Int round; local
867 Int round; local
1054 Int round; local
    [all...]
  /frameworks/base/core/java/com/android/internal/graphics/
ColorUtils.java 253 r = Math.round(255 * (c + m));
254 g = Math.round(255 * (x + m));
255 b = Math.round(255 * m);
258 r = Math.round(255 * (x + m));
259 g = Math.round(255 * (c + m));
260 b = Math.round(255 * m);
263 r = Math.round(255 * m);
264 g = Math.round(255 * (c + m));
265 b = Math.round(255 * (x + m));
268 r = Math.round(255 * m)
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/graphics/
ColorUtils.java 252 r = Math.round(255 * (c + m));
253 g = Math.round(255 * (x + m));
254 b = Math.round(255 * m);
257 r = Math.round(255 * (x + m));
258 g = Math.round(255 * (c + m));
259 b = Math.round(255 * m);
262 r = Math.round(255 * m);
263 g = Math.round(255 * (c + m));
264 b = Math.round(255 * (x + m));
267 r = Math.round(255 * m)
    [all...]
  /external/boringssl/src/crypto/aes/asm/
vpaes-x86.pl 62 my ($round, $base, $magic, $key, $const, $inp, $out)=
140 ## Round function constants
187 &mov ($round,&DWP(240,$key));
205 # middle of middle round
228 &sub ($round,1); # nr--
232 # top of round
255 # middle of last round
274 &mov ($round,&DWP(240,$key));
278 &mov ($magic,$round);
328 &add ($key,16); # next round ke
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
VectorDrawableSizeTest.java 66 // This test makes sure the size computation for VectorDrawable is using round, instead of
71 assertEquals(Math.round(mDpSize * densityDpi / 160f), drawable.getIntrinsicWidth());
72 assertEquals(Math.round(mDpSize * densityDpi / 160f), drawable.getIntrinsicHeight());
  /developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
MainActivity.java 41 // less crowded on a round display.
42 final boolean round = insets.isRound();
44 int colMargin = res.getDimensionPixelOffset(round ?
49 // layout for round displays. They must be explicitly
  /developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
MainActivity.java 41 // less crowded on a round display.
42 final boolean round = insets.isRound();
44 int colMargin = res.getDimensionPixelOffset(round ?
49 // layout for round displays. They must be explicitly
  /development/samples/browseable/GridViewPager/src/com.example.android.wearable.gridviewpager/
MainActivity.java 41 // less crowded on a round display.
42 final boolean round = insets.isRound();
44 int colMargin = res.getDimensionPixelOffset(round ?
49 // layout for round displays. They must be explicitly
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/X64/
fpu_rmode.asm 19 ;_map BYTE 1 ; round to nearest
20 ; BYTE 3 ; round to negative infinity
21 ; BYTE 2 ; round to positive infinity
22 ; BYTE 0 ; round to zero

Completed in 1301 milliseconds

1 23 4 5 6 7 8 91011>>