HomeSort by relevance Sort by last modified time
    Searched defs:Arith (Results 1 - 9 of 9) sorted by null

  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 28 type Arith int
36 func (t *Arith) Add(args *Args, reply *Reply) error {
41 func (t *Arith) Mul(args *Args, reply *Reply) error {
46 func (t *Arith) Div(args *Args, reply *Reply) error {
54 func (t *Arith) Error(args *Args, reply *Reply) error {
59 rpc.Register(new(Arith))
68 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "123"}`)
102 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "\u%04d", "params": [{"A": %d, "B": %d}]}`, i, i, i+1)
132 err := client.Call("Arith.Add", args, reply)
142 err = client.Call("Arith.Mul", args, reply
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 28 type Arith int
36 func (t *Arith) Add(args *Args, reply *Reply) error {
41 func (t *Arith) Mul(args *Args, reply *Reply) error {
46 func (t *Arith) Div(args *Args, reply *Reply) error {
54 func (t *Arith) Error(args *Args, reply *Reply) error {
59 rpc.Register(new(Arith))
68 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "123"}`)
102 fmt.Fprintf(cli, `{"method": "Arith.Add", "id": "\u%04d", "params": [{"A": %d, "B": %d}]}`, i, i, i+1)
132 err := client.Call("Arith.Add", args, reply)
142 err = client.Call("Arith.Mul", args, reply
    [all...]
  /external/valgrind/exp-sgcheck/
pc_common.c 144 } Arith;
196 xe.XE.Arith.seg1 = seg1;
197 xe.XE.Arith.seg2 = seg2;
198 xe.XE.Arith.opname = opname;
469 Seg* seg1 = xe->XE.Arith.seg1;
470 Seg* seg2 = xe->XE.Arith.seg2;
479 xe->XE.Arith.opname );
509 xe->XE.Arith.opname );
727 else if (VG_STREQ(name, "Arith")) skind = XS_Arith;
773 case XE_Arith: return "Arith";
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 41 type Arith int
43 // Some of Arith's methods have value args, some have pointer args. That's deliberate.
45 func (t *Arith) Add(args Args, reply *Reply) error {
50 func (t *Arith) Mul(args *Args, reply *Reply) error {
55 func (t *Arith) Div(args Args, reply *Reply) error {
63 func (t *Arith) String(args *Args, reply *string) error {
68 func (t *Arith) Scan(args string, reply *Reply) (err error) {
73 func (t *Arith) Error(args *Args, reply *Reply) error {
97 Register(new(Arith))
99 RegisterName("net.rpc.Arith", new(Arith)
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 41 type Arith int
43 // Some of Arith's methods have value args, some have pointer args. That's deliberate.
45 func (t *Arith) Add(args Args, reply *Reply) error {
50 func (t *Arith) Mul(args *Args, reply *Reply) error {
55 func (t *Arith) Div(args Args, reply *Reply) error {
63 func (t *Arith) String(args *Args, reply *string) error {
68 func (t *Arith) Scan(args string, reply *Reply) (err error) {
73 func (t *Arith) Error(args *Args, reply *Reply) error {
97 Register(new(Arith))
99 RegisterName("net.rpc.Arith", new(Arith)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.h 546 auto *Arith = applyToThunkedArgs(insertScalarInstruction, Res,
548 genTargetHelperCallFor(Arith);
IceCfg.cpp     [all...]
IceTargetLoweringX86BaseImpl.h 175 if (auto *Arith = llvm::dyn_cast<InstArithmetic>(Instr)) {
176 if (Traits::Is64Bit || Arith->getSrc(0)->getType() != IceType_i64) {
177 switch (Arith->getOp()) {
649 inline bool canRMW(const InstArithmetic *Arith) {
650 Type Ty = Arith->getDest()->getType();
656 switch (Arith->getOp()) {
721 auto *Arith = llvm::dyn_cast<InstArithmetic>(I2);
723 if (!Load || !Arith || !Store)
756 Operand *ArithSrcFromLoad = Arith->getSrc(0);
757 Operand *ArithSrcOther = Arith->getSrc(1)
    [all...]
  /external/valgrind/VEX/priv/
host_arm64_defs.h 539 } Arith;
    [all...]

Completed in 302 milliseconds