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

1 2

  /external/gemmlowp/test/
test_math_helpers.cc 34 template <int Modulus>
36 Check(x >= RoundDown<Modulus>(x));
37 Check(x < RoundDown<Modulus>(x) + Modulus);
38 Check(RoundDown<Modulus>(x) % Modulus == 0);
40 Check(x <= RoundUp<Modulus>(x));
41 Check(x > RoundUp<Modulus>(x) - Modulus);
42 Check(RoundUp<Modulus>(x) % Modulus == 0)
    [all...]
  /external/gemmlowp/internal/
common.h 218 // the fixed Modulus.
219 template <unsigned Modulus, typename Integer>
221 return i - (i % Modulus);
225 // the fixed Modulus.
226 template <unsigned Modulus, typename Integer>
228 return RoundDown<Modulus>(i + Modulus - 1);
  /external/openssh/regress/
ssh2putty.sh 27 modulus=`
28 openssl rsa -noout -modulus -in $KEYFILE | grep ^Modulus= |
29 sed 's/^Modulus=/0x/' | tr A-Z a-z
33 echo "rsa2@$PORT:$HOST $public_exponent,$modulus"
  /external/ipsec-tools/src/racoon/
prsa_tok.l 73 Modulus { return MODULUS; }
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
Ike.h 242 UINT8 *Modulus;
  /external/pdfium/xfa/fgas/localization/
fgas_locale.h 139 CFX_Decimal Modulus(const CFX_Decimal& val) const;
fgas_locale.cpp     [all...]
  /external/v8/src/runtime/
runtime-operators.cc 35 RETURN_RESULT_OR_FAILURE(isolate, Object::Modulus(isolate, lhs, rhs));
runtime.h 434 F(Modulus, 2, 1) \
    [all...]
  /external/curl/tests/
stunnel.pem 73 Modulus:
  /external/v8/src/
code-factory.h 107 static Callable Modulus(Isolate* isolate);
code-factory.cc 228 TFS_BUILTIN(Modulus)
code-stubs.cc     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 313 CRYPT_XML_DATA_BLOB Modulus;
  /external/v8/src/compiler/
js-operator.h 608 const Operator* Modulus();
js-generic-lowering.cc 63 REPLACE_STUB_CALL(Modulus)
js-operator.cc 571 V(Modulus, Operator::kNoProperties, 2, 1) \
    [all...]
  /external/gemmlowp/standalone/
neon-gemm-kernel-benchmark.cc     [all...]
  /external/v8/src/builtins/
builtins.h     [all...]
builtins-number.cc     [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
verify_test.go     [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
verify_test.go     [all...]
  /prebuilts/go/darwin-x86/src/math/big/
int.go 207 // Rem implements truncated modulus (like Go); see QuoRem for more details.
218 // QuoRem implements T-division and modulus (like Go):
223 // (See Daan Leijen, ``Division and Modulus for Computer Scientists''.)
224 // See DivMod for Euclidean division and modulus (unlike Go).
249 // Mod sets z to the modulus x%y for y != 0 and returns z.
251 // Mod implements Euclidean modulus (unlike Go); see DivMod for more details.
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
273 // DivMod implements Euclidean division and modulus (unlike Go):
282 // See QuoRem for T-division and modulus (like Go).
426 // make modulus result positiv
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
int.go 207 // Rem implements truncated modulus (like Go); see QuoRem for more details.
218 // QuoRem implements T-division and modulus (like Go):
223 // (See Daan Leijen, ``Division and Modulus for Computer Scientists''.)
224 // See DivMod for Euclidean division and modulus (unlike Go).
249 // Mod sets z to the modulus x%y for y != 0 and returns z.
251 // Mod implements Euclidean modulus (unlike Go); see DivMod for more details.
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
273 // DivMod implements Euclidean division and modulus (unlike Go):
282 // See QuoRem for T-division and modulus (like Go).
426 // make modulus result positiv
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Sa.c     [all...]

Completed in 552 milliseconds

1 2