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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-div-or-rem-by-zero.cpp 14 void rem() { function
  /libcore/luni/src/main/java/java/math/
Division.java 52 long rem = 0; local
56 long temp = (rem << 32) | (dividend[i] & 0xffffffffL);
60 rem = (temp % bLong);
69 rem = aPos % bPos;
71 rem = (rem << 1) + (temp & 1);
74 if (quot <= rem) {
75 rem -= quot;
77 if (quot - rem <= bLong) {
78 rem += bLong - quot
    [all...]
  /external/kotlinc/bin/
kotlin-dce-js.bat 3 rem Copyright 2010-2015 JetBrains s.r.o.
4 rem
5 rem Licensed under the Apache License, Version 2.0 (the "License");
6 rem you may not use this file except in compliance with the License.
7 rem You may obtain a copy of the License at
8 rem
9 rem http://www.apache.org/licenses/LICENSE-2.0
10 rem
11 rem Unless required by applicable law or agreed to in writing, software
12 rem distributed under the License is distributed on an "AS IS" BASIS,
    [all...]
kotlin.bat 3 rem Copyright 2010-2015 JetBrains s.r.o.
4 rem
5 rem Licensed under the Apache License, Version 2.0 (the "License");
6 rem you may not use this file except in compliance with the License.
7 rem You may obtain a copy of the License at
8 rem
9 rem http://www.apache.org/licenses/LICENSE-2.0
10 rem
11 rem Unless required by applicable law or agreed to in writing, software
12 rem distributed under the License is distributed on an "AS IS" BASIS,
    [all...]
kotlinc-js.bat 3 rem Copyright 2010-2015 JetBrains s.r.o.
4 rem
5 rem Licensed under the Apache License, Version 2.0 (the "License");
6 rem you may not use this file except in compliance with the License.
7 rem You may obtain a copy of the License at
8 rem
9 rem http://www.apache.org/licenses/LICENSE-2.0
10 rem
11 rem Unless required by applicable law or agreed to in writing, software
12 rem distributed under the License is distributed on an "AS IS" BASIS,
    [all...]
  /external/valgrind/none/tests/s390x/
div.stdout.exp 1 d 00000000000000000000000000000000 / 7FFFFFFFFFFFFFFA = 0000000000000000 (rem 0000000000000000)
2 d 00000000000000000000000000000001 / 7FFFFFFFFFFFFFFA = 0000000000000000 (rem 0000000000000001)
3 d 0000000000000000000000000000FFFF / 7FFFFFFFFFFFFFFA = 0000000000000000 (rem 000000000000FFFF)
4 d 00000000000000000000000000007FFF / 7FFFFFFFFFFFFFFA = 0000000000000000 (rem 0000000000007FFF)
5 d 00000000000000000000000000008000 / 7FFFFFFFFFFFFFFA = 0000000000000000 (rem 0000000000008000)
6 d 000000000000000000000000FFFFFFFF / 7FFFFFFFFFFFFFFA = 0000000000000002 (rem 0000000000000001)
7 d 00000000000000000000000080000000 / 7FFFFFFFFFFFFFFA = 0000000000000001 (rem 0000000000000001)
8 d 0000000000000000000000007FFFFFFF / 7FFFFFFFFFFFFFFA = 0000000000000001 (rem 0000000000000000)
9 d 0000000000000000FFFFFFFFFFFFFFFF / 7FFFFFFFFFFFFFFA = FFFFFFFF00000002 (rem 0000000000000001)
10 d 00000000000000008000000000000000 / 7FFFFFFFFFFFFFFA = 8000000000000000 (rem 0000000000000000
    [all...]
  /device/google/contexthub/firmware/lib/builtins/
divmoddi4.c 17 /* Returns: a / b, *rem = a % b */
20 __divmoddi4(di_int a, di_int b, di_int* rem)
23 *rem = a - (d*b);
  /external/compiler-rt/lib/builtins/
divmoddi4.c 17 /* Returns: a / b, *rem = a % b */
20 __divmoddi4(di_int a, di_int b, di_int* rem)
23 *rem = a - (d*b);
divmodsi4.c 17 /* Returns: a / b, *rem = a % b */
20 __divmodsi4(si_int a, si_int b, si_int* rem)
23 *rem = a - (d*b);
udivmodsi4.c 17 /* Returns: a / b, *rem = a % b */
20 __udivmodsi4(su_int a, su_int b, su_int* rem)
23 *rem = a - (d*b);
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
div.c 52 r.rem = num % denom;
62 * r.rem will have the same sign as denom and the opposite
64 * truncated towards -inf, r.rem will be positive (will
72 * if num >= 0, but r.rem < 0, we got the wrong answer.
74 * subtract denom from r.rem.
76 if (num >= 0 && r.rem < 0) {
78 r.rem -= denom;
ldiv.c 54 r.rem = num % denom;
55 if (num >= 0 && r.rem < 0) {
57 r.rem -= denom;
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
imaxdiv.c 44 r.rem = num % denom;
45 if (num >= 0 && r.rem < 0) {
47 r.rem -= denom;
  /external/compiler-rt/test/builtins/Unit/
udivmodsi4_test.c 19 extern COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem);
24 su_int rem; local
25 su_int result = __udivmodsi4(a, b, &rem);
31 if (rem != expected_rem) {
33 a, b, rem, expected_rem);
  /external/python/cpython2/PC/VS7.1/
rt.bat 2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
9 rem All leading instances of these switches are shifted off, and
10 rem whatever remains is passed to regrtest.py. For example,
11 rem rt -O -d -x test_thread
    [all...]
  /external/python/cpython2/PC/VS8.0/
rt.bat 2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
9 rem All leading instances of these switches are shifted off, and
10 rem whatever remains is passed to regrtest.py. For example,
11 rem rt -O -d -x test_thread
    [all...]
  /external/flatbuffers/tests/
JavaTest.bat 2 rem Copyright 2014 Google Inc. All rights reserved.
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /sdk/files/
post_tools_install.bat 2 rem Copyright (C) 2010 The Android Open Source Project
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS,
    [all...]
  /prebuilts/devtools/tools/
jobb.bat 2 rem Copyright (C) 2008 The Android Open Source Project
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS,
    [all...]
draw9patch.bat 2 rem Copyright (C) 2008 The Android Open Source Project
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /external/python/cpython2/PC/VS9.0/
rt.bat 2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] [-x64] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
9 rem -x64 Run the 64-bit build of python (or python_d if -d was specified)
10 rem from the 'amd64' dir instead of the 32-bit build in this dir.
11 rem All leading instances of these switches are shifted off, and
    [all...]
  /external/python/cpython2/PCbuild/
rt.bat 2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] [-x64] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
9 rem -x64 Run the 64-bit build of python (or python_d if -d was specified)
10 rem from the 'amd64' dir instead of the 32-bit build in this dir.
11 rem All leading instances of these switches are shifted off, and
    [all...]
  /external/python/cpython3/PCbuild/
rt.bat 2 rem Run Tests. Run the regression test suite.
3 rem Usage: rt [-d] [-O] [-q] [-x64] regrtest_args
4 rem -d Run Debug build (python_d.exe). Else release build.
5 rem -O Run python.exe or python_d.exe (see -d) with -O.
6 rem -q "quick" -- normally the tests are run twice, the first time
7 rem after deleting all the .py[co] files reachable from Lib/.
8 rem -q runs the tests just once, and without deleting .py[co] files.
9 rem -x64 Run the 64-bit build of python (or python_d if -d was specified)
10 rem from the 'amd64' dir instead of the 32-bit build in this dir.
11 rem All leading instances of these switches are shifted off, and
    [all...]
  /sdk/apkbuilder/etc/
apkbuilder.bat 2 rem Copyright (C) 2007 The Android Open Source Project
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /sdk/hierarchyviewer/etc/
hierarchyviewer1.bat 2 rem Copyright (C) 2008 The Android Open Source Project
3 rem
4 rem Licensed under the Apache License, Version 2.0 (the "License");
5 rem you may not use this file except in compliance with the License.
6 rem You may obtain a copy of the License at
7 rem
8 rem http://www.apache.org/licenses/LICENSE-2.0
9 rem
10 rem Unless required by applicable law or agreed to in writing, software
11 rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]

Completed in 384 milliseconds

1 2 3 4 5 6 7 8 91011>>