HomeSort by relevance Sort by last modified time
    Searched defs:remainder (Results 176 - 200 of 738) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
math_h.pass.cpp 91 Ambiguous remainder(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/c.math/
cmath.pass.cpp 94 Ambiguous remainder(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 1082 // remainder
1090 __tg_remainder(double __x, double __y) {return remainder(__x, __y);}
1096 #undef remainder macro
1097 #define remainder(__x, __y) __tg_remainder(__tg_promote2((__x), (__y))(__x), \ macro
  /system/bt/audio_hearing_aid_hw/src/
audio_hearing_aid_hw.cc 1072 const size_t remainder = buffer_sz % divisor; local
    [all...]
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java 857 Method remainder = binaryOpMethod(int.class, int.class, BinaryOp.REMAINDER); local
906 Method remainder = binaryOpMethod(long.class, long.class, BinaryOp.REMAINDER); local
953 Method remainder = binaryOpMethod(float.class, float.class, BinaryOp.REMAINDER); local
973 Method remainder = binaryOpMethod(double.class, double.class, BinaryOp.REMAINDER); local
    [all...]
  /art/runtime/gc/allocator/
rosalloc.cc 149 FreePageRun* remainder = local
152 remainder->magic_num_ = kMagicNumFree;
154 remainder->SetByteSize(this, fpr_byte_size - req_byte_size);
155 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0));
156 // Don't need to call madvise on remainder here.
157 free_page_runs_.insert(remainder);
160 << reinterpret_cast<intptr_t>(remainder)
247 // Split if there's a remainder.
248 FreePageRun* remainder = reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte_size); local
250 remainder->magic_num_ = kMagicNumFree
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 255 divide-integer or remainder operation had too many digits (would be
266 attempted (during a divide-integer, divide, or remainder operation), and
5083 def remainder(self, a, b): member in class:Context
    [all...]
  /external/adhd/cras/src/server/
audio_thread.c 1319 snd_pcm_uframes_t remainder, hw_level, cap_limit; local
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 2842 dgrp_t remainder = groups & (flexbg_size - 1); local
2884 blk64_t remainder = blks_needed - data_blocks; local
2952 blk64_t remainder = blks_needed - last_start; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/math/
BigDecimal.java 67 /* 1998.05.21 adjust remainder operator finalization */
1800 public android.icu.math.BigDecimal remainder(android.icu.math.BigDecimal rhs) { method in class:BigDecimal
1819 public android.icu.math.BigDecimal remainder(android.icu.math.BigDecimal rhs, android.icu.math.MathContext set) { method in class:BigDecimal
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java 64 /* 1998.05.21 adjust remainder operator finalization */
1842 public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs) { method in class:BigDecimal
1862 public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs, com.ibm.icu.math.MathContext set) { method in class:BigDecimal
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java 66 /* 1998.05.21 adjust remainder operator finalization */
1845 public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs) { method in class:BigDecimal
1865 public com.ibm.icu.math.BigDecimal remainder(com.ibm.icu.math.BigDecimal rhs, com.ibm.icu.math.MathContext set) { method in class:BigDecimal
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_cmd_buffer.c 2297 uint32_t blocks[3], remainder[3]; local
    [all...]
  /external/python/cpython2/Lib/
decimal.py 254 divide-integer or remainder operation had too many digits (would be
265 attempted (during a divide-integer, divide, or remainder operation), and
5111 def remainder(self, a, b): member in class:Context
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 282 divide-integer or remainder operation had too many digits (would be
293 attempted (during a divide-integer, divide, or remainder operation), and
5324 def remainder(self, a, b): member in class:Context
    [all...]
  /external/squashfs-tools/squashfs-tools/
action.c 1680 char *remainder = get_comp(&pathname); local
    [all...]
  /external/v8/benchmarks/
crypto.js 450 // (protected) divide this by m, quotient and remainder to q, r (HAC 14.20)
500 if(nsh > 0) r.rShiftTo(nsh,r); // Denormalize remainder
1327 BigInteger.prototype.remainder = bnRemainder; method in class:BigInteger
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 1628 LOperand* remainder = TempRegister(); local
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Renderer.cpp 1072 size_t remainder = entry->mBuffer->size() - entry->mOffset; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.cpp 1073 size_t remainder = entry->mBuffer->size() - entry->mOffset; local
    [all...]
  /frameworks/av/services/audioflinger/
Effects.cpp 825 T remainder = value % divisor; local
826 return remainder == 0 ? 0 : divisor - remainder;
    [all...]
  /frameworks/base/core/java/android/content/res/
ResourcesImpl.java 513 final String remainder; local
517 remainder = "";
520 remainder = languageTag.substring(separator);
523 return Locale.adjustLanguageCode(language) + remainder;
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 404 int remainder = (offset + mNumCells) % mNumDays; local
405 return (dividend + (remainder > 0 ? 1 : 0));
  /frameworks/rs/driver/runtime/
rs_cl.c 659 float __attribute__((overloadable)) remainder(float v1, float v2) { function
662 FN_FUNC_FN_FN(remainder)
2120 HN_FUNC_HN_HN(remainder); variable
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 1088 BigInteger remainder = quotAndRem[1]; local
1121 long remainder = scaledDividend % scaledDivisor; local
1521 public BigDecimal remainder(BigDecimal divisor) { method in class:BigDecimal
1547 public BigDecimal remainder(BigDecimal divisor, MathContext mc) { method in class:BigDecimal
    [all...]

Completed in 866 milliseconds

1 2 3 4 5 6 78 91011>>