HomeSort by relevance Sort by last modified time
    Searched full:divisor (Results 201 - 225 of 852) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/valgrind/none/tests/x86/
bug126147-x86.c 56 %ebx = divisor
74 " movl 0x20(%eax), %ebx # divisor\n"
  /frameworks/base/libs/hwui/
ShadowTessellator.cpp 165 const Vector2& vector2, float divisor) {
182 return (int) floor(angle / divisor);
  /libcore/ojluni/src/main/native/
StrictMath.c 116 jdouble divisor)
118 return (jdouble) ieee_remainder(dividend, divisor);
  /external/icu/icu4c/source/i18n/unicode/
rbnf.h 116 * both substitutions depends on the rule's base value. The base value determines the rule's <em>divisor,</em>
119 * formatted by the divisor. The integral quotient is used to fill in the &lt;&lt;
122 * formatted is an even multiple of the rule's divisor. The rules are applied recursively, so
131 * base value is a higher power of 10, changing the rule's divisor. This rule can actually be
205 * used to alter a rule's divisor in various ways. And there is provision for much more
226 * Internally, every rule has a base value, a divisor, rule text, and zero, one, or two <em>substitutions.</em>
238 * which are ignored. The rule's divisor is the highest power of 10 less than or equal to
243 * <td><em>bv</em> specifies the rule's base value. The rule's divisor is the
248 * <td><em>bv</em> specifies the rule's base value. To calculate the divisor,
251 * decreases the exponent by 1. If the exponent is positive or 0, the divisor is the radi
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 1281 int32_t divisor = instr->right()->GetInteger32Constant(); local
1299 int32_t divisor = instr->right()->GetInteger32Constant(); local
1316 LOperand* divisor = UseRegister(instr->right()); local
1353 int32_t divisor = instr->right()->GetInteger32Constant(); local
1369 int32_t divisor = instr->right()->GetInteger32Constant(); local
1389 LOperand* divisor = UseRegister(instr->right()); local
1421 int32_t divisor = instr->right()->GetInteger32Constant(); local
1437 int32_t divisor = instr->right()->GetInteger32Constant(); local
1452 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 1392 int32_t divisor = instr->right()->GetInteger32Constant(); local
1410 int32_t divisor = instr->right()->GetInteger32Constant(); local
1429 LOperand* divisor = UseRegister(instr->right()); local
1757 int32_t divisor = instr->right()->GetInteger32Constant(); local
1773 int32_t divisor = instr->right()->GetInteger32Constant(); local
1790 LOperand* divisor = UseRegister(instr->right()); local
1833 int32_t divisor = instr->right()->GetInteger32Constant(); local
1849 int32_t divisor = instr->right()->GetInteger32Constant(); local
1865 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 1318 int32_t divisor = instr->right()->GetInteger32Constant(); local
1336 int32_t divisor = instr->right()->GetInteger32Constant(); local
1355 LOperand* divisor = UseRegister(instr->right()); local
1388 int32_t divisor = instr->right()->GetInteger32Constant(); local
1404 int32_t divisor = instr->right()->GetInteger32Constant(); local
1431 LOperand* divisor = UseRegister(instr->right()); local
1460 int32_t divisor = instr->right()->GetInteger32Constant(); local
1476 int32_t divisor = instr->right()->GetInteger32Constant(); local
1493 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 1305 int32_t divisor = instr->right()->GetInteger32Constant(); local
1323 int32_t divisor = instr->right()->GetInteger32Constant(); local
1342 LOperand* divisor = UseRegister(instr->right()); local
1375 int32_t divisor = instr->right()->GetInteger32Constant(); local
1391 int32_t divisor = instr->right()->GetInteger32Constant(); local
1418 LOperand* divisor = UseRegister(instr->right()); local
1447 int32_t divisor = instr->right()->GetInteger32Constant(); local
1463 int32_t divisor = instr->right()->GetInteger32Constant(); local
1480 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 1328 int32_t divisor = instr->right()->GetInteger32Constant(); local
1346 int32_t divisor = instr->right()->GetInteger32Constant(); local
1365 LOperand* divisor = UseRegister(instr->right()); local
1398 int32_t divisor = instr->right()->GetInteger32Constant(); local
1414 int32_t divisor = instr->right()->GetInteger32Constant(); local
1441 LOperand* divisor = UseRegister(instr->right()); local
1470 int32_t divisor = instr->right()->GetInteger32Constant(); local
1486 int32_t divisor = instr->right()->GetInteger32Constant(); local
1503 LOperand* divisor = UseRegister(instr->right()); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_types.py 136 for divisor in 1, 2, 4, 8, 16, 32:
137 j = m // divisor
138 prod = divisor * j
140 self.fail("%r * %r == %r != %r" % (divisor, j, prod, m))
145 for divisor in 1, 2, 4, 8, 16, 32:
146 j = m // divisor - 1
147 prod = divisor * j
153 for divisor in 1, 2, 4, 8, 16, 32:
154 j = m // divisor + 1
155 prod = divisor *
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_types.py 136 for divisor in 1, 2, 4, 8, 16, 32:
137 j = m // divisor
138 prod = divisor * j
140 self.fail("%r * %r == %r != %r" % (divisor, j, prod, m))
145 for divisor in 1, 2, 4, 8, 16, 32:
146 j = m // divisor - 1
147 prod = divisor * j
153 for divisor in 1, 2, 4, 8, 16, 32:
154 j = m // divisor + 1
155 prod = divisor *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_types.py 136 for divisor in 1, 2, 4, 8, 16, 32:
137 j = m // divisor
138 prod = divisor * j
140 self.fail("%r * %r == %r != %r" % (divisor, j, prod, m))
145 for divisor in 1, 2, 4, 8, 16, 32:
146 j = m // divisor - 1
147 prod = divisor * j
153 for divisor in 1, 2, 4, 8, 16, 32:
154 j = m // divisor + 1
155 prod = divisor *
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_types.py 136 for divisor in 1, 2, 4, 8, 16, 32:
137 j = m // divisor
138 prod = divisor * j
140 self.fail("%r * %r == %r != %r" % (divisor, j, prod, m))
145 for divisor in 1, 2, 4, 8, 16, 32:
146 j = m // divisor - 1
147 prod = divisor * j
153 for divisor in 1, 2, 4, 8, 16, 32:
154 j = m // divisor + 1
155 prod = divisor *
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesMipmapSparseResidency.cpp 55 tcu::UVec3 alignedDivide (const VkExtent3D& extent, const VkExtent3D& divisor)
59 result.x() = extent.width / divisor.width + ((extent.width % divisor.width) ? 1u : 0u);
60 result.y() = extent.height / divisor.height + ((extent.height % divisor.height) ? 1u : 0u);
61 result.z() = extent.depth / divisor.depth + ((extent.depth % divisor.depth) ? 1u : 0u);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java     [all...]
  /art/cmdline/
cmdline_types.h 179 template <size_t Divisor>
180 struct CmdlineType<Memory<Divisor>> : CmdlineTypeParser<Memory<Divisor>> {
181 using typename CmdlineTypeParser<Memory<Divisor>>::Result;
185 size_t val = ParseMemoryOption(arg.c_str(), Divisor);
190 + std::to_string(Divisor));
193 return Result::Success(Memory<Divisor>(val));
201 // "div" specifies a divisor, e.g. 1024 if the value must be a multiple
262 static const char* Name() { return Memory<Divisor>::Name(); }
  /external/icu/icu4c/source/i18n/
nfsubs.h 86 * Sets the substitution's divisor. Used by NFRule.setBaseValue().
89 * @param radix The radix of the divisor
90 * @param exponent The exponent of the divisor
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 86 int32_t divisor = source->count / maxTestStrings;
90 if (i % divisor) continue;
94 if (j % divisor) continue;
198 int32_t divisor = source->count / maxTestStrings;
202 if (i % divisor) continue;
206 if (j % divisor) continue;
497 int32_t divisor = source->count / maxTestStrings;
501 if (i % divisor) continue;
505 if (j % divisor) continue;
607 int32_t divisor = source->count / maxTestStrings
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jcdctmgr.c 47 * the divisor table for each one.
135 * What's actually stored is 1/divisor so that the inner loop can
380 /* Mark divisor tables unallocated */
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.h 50 // If writes and reads always use the same count, and that count is a divisor of
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 101 unsigned divisor; member in struct:tc_sfq_qopt
  /external/aac/libSBRdec/src/
transcendent.h 209 FIXP_SGL b_m, /*!< Mantissa of divisor b */
210 SCHAR b_e, /*!< Exponent of divisor b */
265 FIXP_DBL b_m, /*!< Mantissa of divisor b */
266 SCHAR b_e, /*!< Exponent of divisor b */
  /external/compiler-rt/lib/builtins/arm/
divmodsi4.S 30 @ int __divmodsi4(int divident, int divisor, int *remainder)
  /external/deqp/doc/testspecs/GLES3/
functional.instanced.txt 48 In the tests for instanced attribute types, only the vertex attribute divisor
  /external/deqp/doc/testspecs/GLES31/
functional.draw_indirect.txt 46 attribute array (instance divisor > 0) and with a non-array current

Completed in 1189 milliseconds

1 2 3 4 5 6 7 891011>>