- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for mulMod (0.04 seconds)
-
android/guava/src/com/google/common/math/LongMath.java
/** Returns a * b mod m. */ abstract long mulMod(long a, long b, long m); /** Returns a^2 mod m. */ abstract long squareMod(long a, long m); /** Returns a^p mod m. */ private long powMod(long a, long p, long m) { long res = 1; for (; p != 0; p >>= 1) { if ((p & 1) != 0) { res = mulMod(res, a, m); } a = squareMod(a, m);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 09 23:01:02 GMT 2026 - 46.8K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
MULLW $-32769, R8 // c281ffff7fff MULLW $-32769, R8, R9 // 1898c291ffff7fff MULLD $-2147483648, R1 // c21080000000 MULLD $-2147483648, R1, R2 // b9040021c22080000000 MULHD R9, R8 // b90400b8b98600a9ebb9003f000ab98000b8b90900abebb8003f000ab98000b9b9e9b08a MULHD R7, R2, R1 // b90400b2b98600a7ebb7003f000ab98000b2b90900abebb2003f000ab98000b7b9e9b01a
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Jul 30 19:29:15 GMT 2025 - 22.9K bytes - Click Count (0) -
internal/s3select/sql/parser.go
} // Grammar for Operand: // // operand → multOp ( ("-" | "+") multOp )* // multOp → unary ( ("/" | "*" | "%") unary )* // unary → "-" unary | primary // primary → Value | Variable | "(" expression ")" // // An Operand is a single term followed by an optional sequence of // terms separated by +/- type Operand struct { Left *MultOp `parser:"@@"` Right []*OpFactor `parser:"(@@)*"` }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Jan 18 07:03:17 GMT 2024 - 12.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/armerror.s
BL 4(R4) // ERROR "non-zero offset" ADDF F0, R1, F2 // ERROR "illegal combination" SWI (R0) // ERROR "illegal combination" MULAD F0, F1 // ERROR "illegal combination" MULAF F0, F1 // ERROR "illegal combination" MULSD F0, F1 // ERROR "illegal combination" MULSF F0, F1 // ERROR "illegal combination" NMULAD F0, F1 // ERROR "illegal combination"
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Oct 23 15:18:14 GMT 2024 - 14.5K bytes - Click Count (0) -
internal/s3select/sql/evaluate.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12K bytes - Click Count (0)