- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for DIV (0.04 sec)
-
src/cmd/asm/internal/asm/testdata/loong64enc1.s
MULHU R4, R5 // a5101d00 MULHU R4, R5, R6 // a6101d00 REM R4, R5 // a5902000 REM R4, R5, R6 // a6902000 REMU R4, R5 // a5902100 REMU R4, R5, R6 // a6902100 DIV R4, R5 // a5102000 DIV R4, R5, R6 // a6102000 DIVU R4, R5 // a5102100 DIVU R4, R5, R6 // a6102100 SRLV R4, R5 // a5101900 SRLV R4, R5, R6 // a6101900 SRLV $4, R4, R5 // 85104500
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/mips64.s
// } MUL R19, R8 // 01130018 MULU R21, R13 // 01b50019 MULV R19, R8 // 0113001c MULVU R21, R13 // 01b5001d // LDIV rreg ',' rreg // { // outcode(int($1), &$2, 0, &$4); // } DIV R18, R22 // 02d2001a DIVU R14, R9 // 012e001b DIVV R8, R13 // 01a8001e DIVVU R16, R19 // 0270001f // LREM rreg ',' rreg // { // outcode(int($1), &$2, 0, &$4); // } REM R18, R22 // 02d2001a
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 08 12:17:12 UTC 2023 - 12.4K bytes - Viewed (0) -
README.md
<div align="center"> <img src="https://www.tensorflow.org/images/tf_logo_horizontal.png"> </div> [](https://badge.fury.io/py/tensorflow) [](https://badge.fury.io/py/tensorflow) [](https://doi.org/10.5281/zenodo.4724125)
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jul 18 14:09:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
MUL X5, X6, X7 // b3035302 MULH X5, X6, X7 // b3135302 MULHU X5, X6, X7 // b3335302 MULHSU X5, X6, X7 // b3235302 MULW X5, X6, X7 // bb035302 // 13.2: Division Operations DIV X5, X6, X7 // b3435302 DIVU X5, X6, X7 // b3535302 REM X5, X6, X7 // b3635302 REMU X5, X6, X7 // b3735302 DIVW X5, X6, X7 // bb435302 DIVUW X5, X6, X7 // bb535302 REMW X5, X6, X7 // bb635302
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 49.1K bytes - Viewed (0) -
doc/asm.html
the name <code>R10</code> is not recognized. </p> <p> To make it easier for people and compilers to write assembly, the ARM linker allows general addressing forms and pseudo-operations like <code>DIV</code> or <code>MOD</code> that may not be expressible using a single hardware instruction. It implements these forms as multiple instructions, often using the <code>R11</code> register to hold temporary values.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
RELEASE.md
and modulus operators (/, //, %) now match Python (flooring) semantics. This applies to `tf.div` and `tf.mod` as well. To obtain forced integer truncation based behaviors you can use `tf.truncatediv` and `tf.truncatemod`. * `tf.divide()` is now the recommended division function. `tf.div()` will remain, but its semantics do not respond to Python 3 or `from future` mechanisms. *
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (3) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<root-XML localName="FRAMESET"/> <root-XML localName="iframe"/> <root-XML localName="IFRAME"/> <magic priority="60"> <match value="(?i)<(html|head|body|title|div)[ >]" type="regex" offset="0"/> <match value="(?i)<h[123][ >]" type="regex" offset="0"/> </magic> <!-- The magic priority needs to be lower than that of -->
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Mar 13 08:18:01 UTC 2025 - 320.1K bytes - Viewed (1) -
lib/fips140/v1.0.0.zip
x = x / y and returns the remainder. // // It panics if y is zero. // //go:norace func (x *Nat) DivShortVarTime(y uint) uint { if y == 0 { panic("bigmod: division by zero") } var r uint for i := len(x.limbs) - 1; i >= 0; i-- { x.limbs[i], r = bits.Div(r, x.limbs[i], y) } return r } golang.org/fips140@v1.0.0/fips140/v1.0.0/bigmod/nat_386.s // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)