/external/v8/src/compiler/ |
opcodes.h | 267 V(Int64Mod) \
|
machine-operator.h | 200 const Operator* Int64Mod();
|
raw-machine-assembler.h | 298 Node* Int64Mod(Node* a, Node* b) { 299 return AddNode(machine()->Int64Mod(), a, b);
|
machine-operator.cc | 137 V(Int64Mod, Operator::kNoProperties, 2, 1, 1) \
|
wasm-compiler.cc | 519 Node* rem = graph()->NewNode(m->Int64Mod(), left, right, d.if_false); [all...] |
/external/v8/test/unittests/compiler/ |
machine-operator-unittest.cc | 229 PURE(Int64Mod, 2, 1, 1), // -- 414 EXPECT_EQ(machine.Int64Mod(), machine.IntMod());
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/builtin/ |
runtime.go | 180 func int64mod(int64, int64) int64 func
|
/prebuilts/go/darwin-x86/src/runtime/ |
vlrt.go | 164 func int64mod(n, d int64) int64 { func
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/builtin/ |
runtime.go | 180 func int64mod(int64, int64) int64 func
|
/prebuilts/go/linux-x86/src/runtime/ |
vlrt.go | 164 func int64mod(n, d int64) int64 { func
|
/external/v8/test/cctest/compiler/ |
test-machine-operator-reducer.cc | 741 // TODO(titzer): test MachineOperatorReducer for Int64Mod
|
test-run-machops.cc | 399 m.machine()->Uint64Div(), m.machine()->Int64Mod(), [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
builtin.go | 148 "func @\"\".int64mod (? int64, ? int64) (? int64)\n" +
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
builtin.go | 145 "func @\"\".int64mod (? int64, ? int64) (? int64)\n" +
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
builtin.go | 148 "func @\"\".int64mod (? int64, ? int64) (? int64)\n" +
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
builtin.go | 145 "func @\"\".int64mod (? int64, ? int64) (? int64)\n" +
|