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

1 2 3 4

  /external/fio/lib/
num2str.c 17 unsigned int modulo, decimals; local
37 modulo = -1U;
43 modulo = num % thousand[!!pow2];
45 carry = modulo >= thousand[!!pow2] / 2;
49 if (modulo == -1U) {
68 sprintf(tmp, "%u", modulo);
72 modulo = (modulo + 9) / 10;
75 sprintf(buf, "%lu.%u%s%s", num, modulo, postfix[post_index],
  /external/valgrind/main/none/tests/ppc32/
data-cache-instructions.stdout.exp 2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.
  /external/valgrind/main/none/tests/ppc64/
data-cache-instructions.stdout.exp 2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 351 int modulo(int pos, int size) { method in class:AdapterViewAnimator
367 int i = modulo(mCurrentWindowStartUnbounded + relativeIndex, getWindowSize());
417 int index = modulo(i, getWindowSize());
421 final View updatedChild = mAdapter.getView(modulo(i, adapterCount), null, this);
489 int rangeStart = modulo(newWindowStart, getWindowSize());
490 int rangeEnd = modulo(newWindowEnd, getWindowSize());
524 int index = modulo(i, getWindowSize());
547 final int adapterPosition = modulo(i, adapterCount);
571 int adapterStart = modulo(mCurrentWindowStart, adapterCount);
572 int adapterEnd = modulo(mCurrentWindowEnd, adapterCount)
    [all...]
  /external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
Android.mk 39 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/modulo
40 test_src := modulo.pass.cpp
  /external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/
Android.mk 39 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/modulo
40 test_src := modulo.pass.cpp
  /external/libcxx/test/numerics/numarray/template.mask.array/mask.array.comp.assign/
Android.mk 39 test_name := numerics/numarray/template.mask.array/mask.array.comp.assign/modulo
40 test_src := modulo.pass.cpp
  /external/libcxx/test/numerics/numarray/template.slice.array/slice.arr.comp.assign/
Android.mk 39 test_name := numerics/numarray/template.slice.array/slice.arr.comp.assign/modulo
40 test_src := modulo.pass.cpp
  /external/chromium_org/v8/src/
codegen.h 102 double modulo(double x, double y);
codegen.cc 32 double modulo(double x, double y) { function in namespace:v8::internal
39 double modulo(double x, double y) {
51 double modulo(double x, double y) {
  /external/chromium_org/v8/test/mjsunit/
div-mod.js 92 // Test extreme corner cases of modulo.
94 // Computes the modulo by slow but lossless operations.
209 // Test the standard lithium code for modulo opeartions.
226 // Test the lithium code for modulo operations with a variable power of two
237 // Test the lithium code for modulo operations with a constant power of two
array-elements-from-array-prototype-chain.js 35 // those ideally should be identical modulo host of elements and
array-elements-from-array-prototype.js 35 // those ideally should be identical modulo host of elements and
array-elements-from-object-prototype.js 35 // those ideally should be identical modulo host of elements and
  /external/chromium_org/v8/test/webkit/
mod-by-zero.js 25 "This tests that modulo with zero does not crash but returns NaN."
  /external/chromium_org/third_party/skia/tools/lua/
lua_pictures.cpp 31 // Example usage for the modulo flag:
32 // for i in {0..5}; do lua_pictures --skpPath SKP_PATH -l YOUR_SCRIPT --modulo $i 6 &; done
33 DEFINE_string(modulo, "", "[--modulo <remainder> <divisor>]: only run tests for which "
122 SkDebugf("invalid modulo values.\n");
  /external/skia/tools/lua/
lua_pictures.cpp 31 // Example usage for the modulo flag:
32 // for i in {0..5}; do lua_pictures --skpPath SKP_PATH -l YOUR_SCRIPT --modulo $i 6 &; done
33 DEFINE_string(modulo, "", "[--modulo <remainder> <divisor>]: only run tests for which "
122 SkDebugf("invalid modulo values.\n");
  /external/lldb/examples/python/
sbvalue.py 196 def __ipow__(self, other, modulo):
197 result = self.__pow__(self, other, modulo)
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 153 // Modulo of the table, (bucket count).
155 table->modulo = sizeHint;
208 for (bucket = 0; bucket < table->modulo; bucket++)
283 hash = (ANTLR3_UINT32)(key % (ANTLR3_INTKEY)(table->modulo));
344 bucket = table->buckets + (hash % table->modulo);
452 hash = (ANTLR3_UINT32)(key % (ANTLR3_INTKEY)(table->modulo));
496 bucket = table->buckets + (hash % table->modulo);
532 hash = (ANTLR3_UINT32)(key % (ANTLR3_INTKEY)(table->modulo));
607 bucket = table->buckets + (hash % table->modulo);
733 if (en->bucket >= en->table->modulo)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py     [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 111 ANTLR3_UINT32 modulo; member in struct:ANTLR3_HASH_TABLE_struct
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 499 | {modulo} [left]:factor percent [right]:value // x.y % a.b
500 {->New expression.modulo(left.expression, right.expression)}
700 | {modulo} [left]:expression [right]:expression // x % y
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/asm/
ghash-armv4.pl 314 # byte multiplication and modulo-reduction, times 16.
381 veor $Z,$Qpost @ modulo-scheduled part
397 veor $Z,$Qpost @ modulo-scheduled artefact
ghash-x86_64.pl 358 my ($Xhi,$Xi,$Hkey,$modulo)=@_;
360 $code.=<<___ if (!defined($modulo));

Completed in 652 milliseconds

1 2 3 4