/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
div-err.asm | 0 div byte si 2 div word si label 3 div dword si label 4 div byte esi label 5 div word esi label 6 div dword esi label 1 div byte si label
|
/bionic/libc/upstream-netbsd/libc/stdlib/ |
div.c | 1 /* $NetBSD: div.c,v 1.8 2012/06/25 22:32:45 abs Exp $ */ 38 static char sccsid[] = "@(#)div.c 8.1 (Berkeley) 6/4/93"; 40 __RCSID("$NetBSD: div.c,v 1.8 2012/06/25 22:32:45 abs Exp $"); 47 div(int num, int denom) function
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2132.js | 40 function div(x, y) { function 44 div(4, 2); 45 div(4, 2); 46 %OptimizeFunctionOnNextCall(div); 47 assertEquals(1, div(5, 3)); 48 assertOptimized(div);
|
regress-1278.js | 45 function div(x, y) { function 65 assertEquals(0, div(0, 1)); 66 assertEquals(-0, div(0, -1)); 67 assertEquals(-0, div(-0, 1)); 68 assertEquals(0, div(-0, -1));
|
/external/clang/test/SemaCXX/ |
warn-div-or-rem-by-zero.cpp | 5 void div() { function
|
/external/chromium_org/v8/test/mjsunit/ |
div-mul-minus-one.js | 30 function div(g) { function 35 var expected_MinInt = div(kMinInt); 36 var expected_minus_zero = div(0); 37 %OptimizeFunctionOnNextCall(div); 38 assertEquals(expected_MinInt, div(kMinInt)); 39 assertOptimized(div); 40 assertEquals(expected_minus_zero , div(0)); 41 assertOptimized(div);
|
math-floor-of-div-nosudiv.js | 31 function div(a, b) { function 54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1)); 55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1)); 56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2)); 57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2)); 58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3)); 59 assertEquals(Math.floor(div(k, -3)), Math.floor(k / -3)); 60 assertEquals(Math.floor(div(k, 4)), Math.floor(k / 4)); 61 assertEquals(Math.floor(div(k, -4)), Math.floor(k / -4)); 62 assertEquals(Math.floor(div(k, 5)), Math.floor(k / 5)) [all...] |
math-floor-of-div.js | 31 function div(a, b) { function 54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1)); 55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1)); 56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2)); 57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2)); 58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3)); 59 assertEquals(Math.floor(div(k, -3)), Math.floor(k / -3)); 60 assertEquals(Math.floor(div(k, 4)), Math.floor(k / 4)); 61 assertEquals(Math.floor(div(k, -4)), Math.floor(k / -4)); 62 assertEquals(Math.floor(div(k, 5)), Math.floor(k / 5)) [all...] |
/external/stlport/test/unit/ |
divides_test.cpp | 16 CPPUNIT_TEST(div); 20 void div(); 28 void DivideTest::div() function in class:DivideTest
|
/external/v8/test/mjsunit/regress/ |
regress-1278.js | 45 function div(x, y) { function 65 assertEquals(0, div(0, 1)); 66 assertEquals(-0, div(0, -1)); 67 assertEquals(-0, div(-0, 1)); 68 assertEquals(0, div(-0, -1));
|
/ndk/tests/device/test-gnustl-full/unit/ |
divides_test.cpp | 16 CPPUNIT_TEST(div); 20 void div(); 28 void DivideTest::div() function in class:DivideTest
|
/ndk/tests/device/test-stlport/unit/ |
divides_test.cpp | 16 CPPUNIT_TEST(div); 20 void div(); 28 void DivideTest::div() function in class:DivideTest
|
/external/chromium_org/third_party/skia/src/core/ |
SkUnPreMultiply.cpp | 74 uint32_t div = roundf(j * 255.0f / i); local 75 int diff = SkAbs32(test - div);
|
/external/skia/src/core/ |
SkUnPreMultiply.cpp | 74 uint32_t div = roundf(j * 255.0f / i); local 75 int diff = SkAbs32(test - div);
|
/external/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_cstdlib.h | 114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } function 124 //HP-UX native lib has abs() and div() functions in global namespace 137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } function 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } function 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } function 176 using ::div;
|
/external/webrtc/src/common_audio/signal_processing/ |
division_operations.c | 66 WebRtc_Word32 div = 0; local 85 div <<= 1; 90 div++; 95 div = -div; 97 return div;
|
/external/libgsm/src/ |
add.c | 201 * of the div(num, denum) arithmetic operation. Compute div 210 word div = 0; local 225 div <<= 1; 230 div++; 234 return div;
|
/external/tremolo/Tremolo/ |
res012.c | 155 ogg_uint32_t div=partword[j][i+k]; local 156 partword[j][i+k]=temp/div; 157 temp-=partword[j][i+k]*div; 219 ogg_uint32_t div=partword[i+k]; local 220 partword[i+k]=temp/div; 221 temp-=partword[i+k]*div;
|
/external/bluetooth/bluedroid/bta/av/ |
bta_av_sbc.c | 44 UINT8 div; member in struct:__anon2867 77 bta_av_sbc_ups_cb.div = 1; 82 bta_av_sbc_ups_cb.div = 2; 91 bta_av_sbc_ups_cb.div = 2; 96 bta_av_sbc_ups_cb.div = 4; 135 src = src_samples/bta_av_sbc_ups_cb.div; 136 dst = dst_samples/bta_av_sbc_ups_cb.div;
|