HomeSort by relevance Sort by last modified time
    Searched refs:rem (Results 1 - 25 of 834) 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
  /external/u-boot/lib/
ldiv.c 8 long rem; member in struct:__anon47942
17 result.rem = numer % denom;
25 truncated towards -infinity, REM will have the same sign as
27 and QUOT has been truncated towards -infinity, REM will be
31 NUMER >= 0, but REM < 0, we got the wrong answer. In that
33 DENOM from REM. */
35 if (numer >= 0 && result.rem < 0)
38 result.rem -= denom;
  /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/opencensus-java/buildscripts/kokoro/
windows.bat 1 @rem ##########################################################################
2 @rem
3 @rem Script to set up Kokoro worker and run Windows tests
4 @rem
5 @rem ##########################################################################
6 @rem
7 @rem To run locally execute 'buildscript\kokoro\windows.bat'.
10 @rem Enter repo root
13 @rem Clear JAVA_HOME to prevent a different Java version from being used
  /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-openbsd/lib/libc/stdlib/
div.c 42 r.rem = num % denom;
52 * r.rem will have the same sign as denom and the opposite
54 * truncated towards -inf, r.rem will be positive (will
62 * if num >= 0, but r.rem < 0, we got the wrong answer.
64 * subtract denom from r.rem.
66 if (num >= 0 && r.rem < 0) {
68 r.rem -= denom;
imaxdiv.c 44 r.rem = num % denom;
45 if (num >= 0 && r.rem < 0) {
47 r.rem -= denom;
ldiv.c 44 r.rem = num % denom;
45 if (num >= 0 && r.rem < 0) {
47 r.rem -= denom;
lldiv.c 44 r.rem = num % denom;
45 if (num >= 0 && r.rem < 0) {
47 r.rem -= denom;
  /external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/
generate_protos.bat 1 @rem Copyright 2016 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /external/grpc-grpc/tools/run_tests/helper_scripts/
pre_build_csharp.bat 1 @rem Copyright 2016 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /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...]
  /external/grpc-grpc/tools/internal_ci/windows/
grpc_run_tests_matrix.bat 1 @rem Copyright 2017 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /external/grpc-grpc/tools/run_tests/artifacts/
build_artifact_protoc.bat 1 @rem Copyright 2016 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /external/grpc-grpc-java/buildscripts/kokoro/
windows.bat 1 @rem ##########################################################################
2 @rem
3 @rem Script to set up Kokoro worker and run Windows tests
4 @rem
5 @rem ##########################################################################
9 @rem Enter repo root
16 @rem Clear JAVA_HOME to prevent a different Java version from being used
  /external/grpc-grpc/test/distrib/csharp/
run_distrib_test.bat 1 @rem Copyright 2016 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]
  /external/grpc-grpc/tools/internal_ci/helper_scripts/
prepare_build_windows.bat 1 @rem Copyright 2017 gRPC authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem http://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS
    [all...]

Completed in 1966 milliseconds

1 2 3 4 5 6 7 8 91011>>