HomeSort by relevance Sort by last modified time
    Searched defs:unop (Results 1 - 25 of 30) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9604b.go 98 type unop struct { type
103 var unops = []unop{
104 unop{"+", func(x *big.Int) *big.Int { return new(big.Int).Set(x) }},
105 unop{"-", func(x *big.Int) *big.Int { return new(big.Int).Neg(x) }},
106 unop{"^", func(x *big.Int) *big.Int { return new(big.Int).Not(x) }},
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9604b.go 98 type unop struct { type
103 var unops = []unop{
104 unop{"+", func(x *big.Int) *big.Int { return new(big.Int).Set(x) }},
105 unop{"-", func(x *big.Int) *big.Int { return new(big.Int).Neg(x) }},
106 unop{"^", func(x *big.Int) *big.Int { return new(big.Int).Not(x) }},
  /external/valgrind/VEX/priv/
ir_inject.c 42 #define unop(kind, a) IRExpr_Unop(kind, a) macro
68 return unop(Iop_ReinterpI64asD64,
73 return unop(Iop_32to1, IRExpr_Load(endian, Ity_I32, addr));
132 data = unop(Iop_ReinterpD64asI64, data);
137 data = unop(Iop_1Uto32, data);
174 store_aux(irsb, endian, addr, unop(high, data));
175 store_aux(irsb, endian, next_addr, unop(low, data));
178 store_aux(irsb, endian, addr, unop(low, data));
179 store_aux(irsb, endian, next_addr, unop(high, data));
208 data = unop(iricb.op, opnd1)
    [all...]
guest_arm_helpers.c 818 # define unop(_op,_a1) IRExpr_Unop((_op),(_a1)) macro
855 return unop(Iop_1Uto32,
860 return unop(Iop_1Uto32,
867 return unop(Iop_1Uto32,
872 return unop(Iop_1Uto32,
878 return unop(Iop_1Uto32,
885 return unop(Iop_1Uto32,
892 return unop(Iop_1Uto32,
897 return unop(Iop_1Uto32,
903 return unop(Iop_1Uto32
1190 # undef unop macro
    [all...]
guest_arm64_helpers.c 1317 # define unop macro
1726 # undef unop macro
    [all...]
guest_s390_helpers.c 1808 #define unop macro
    [all...]
guest_x86_helpers.c 818 # define unop(_op,_a1) IRExpr_Unop((_op),(_a1)) macro
851 return unop(Iop_1Uto32,
861 return unop(Iop_1Uto32,
866 return unop(Iop_1Uto32,
873 return unop(Iop_1Uto32,
880 unop(Iop_1Uto32,
888 return unop(Iop_1Uto32,
896 unop(Iop_1Uto32,
904 return unop(Iop_1Uto32
1353 # undef unop macro
    [all...]
host_arm_isel.c 183 static IRExpr* unop ( IROp op, IRExpr* a ) function
    [all...]
host_s390_isel.c 1548 IROp unop, binop; local
    [all...]
host_x86_isel.c 91 static IRExpr* unop ( IROp op, IRExpr* a ) function
    [all...]
guest_amd64_helpers.c 1021 # define unop macro
1844 # undef unop macro
    [all...]
guest_mips_toIR.c 501 unop(Iop_32to8, \
513 unop(Iop_32to8, \
882 static IRExpr *unop(IROp op, IRExpr * a) function
956 assign(t0, unop(Iop_32to8, binop(Iop_And32, rs, mkU32(0x0000001F))));
1114 return unop(Iop_64to8, binop(Iop_And64,
1118 return unop(Iop_32to8, binop(Iop_And32,
    [all...]
host_amd64_isel.c 79 static IRExpr* unop ( IROp op, IRExpr* a ) function
408 && e->Iex.Unop.op == Iop_32Uto64
409 && e->Iex.Unop.arg->tag == Iex_RdTmp) {
410 HReg src = lookupIRTemp(env, e->Iex.Unop.arg->Iex.RdTmp.tmp);
    [all...]
host_s390_defs.h 439 } unop; member in union:__anon36858::__anon36859
host_ppc_isel.c 194 static IRExpr* unop ( IROp op, IRExpr* a ) function
    [all...]
guest_x86_toIR.c 643 static IRExpr* unop ( IROp op, IRExpr* a ) function
739 return unop(Iop_32to1,
741 unop(Iop_1Uto32,x),
742 unop(Iop_1Uto32,y)));
825 return unop(Iop_32to1, call);
872 case Ity_I16: return unop(Iop_16Uto32,e);
873 case Ity_I8: return unop(Iop_8Uto32,e);
883 case Ity_I16: return unop(Iop_16Sto32,e);
884 case Ity_I8: return unop(Iop_8Sto32,e);
897 return unop(Iop_32to16, e)
    [all...]
guest_arm_toIR.c 306 static IRExpr* unop ( IROp op, IRExpr* a ) function
364 loaded = unop(Iop_8Uto32, loadLE(Ity_I8, addr)); break;
366 loaded = unop(Iop_8Sto32, loadLE(Ity_I8, addr)); break;
368 loaded = unop(Iop_16Uto32, loadLE(Ity_I16, addr)); break;
370 loaded = unop(Iop_16Sto32, loadLE(Ity_I16, addr)); break;
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opcodes.py 116 def unop(name, ty, const_expr): function
146 unop("fmov", tfloat, "src0")
147 unop("imov", tint, "src0")
149 unop("ineg", tint, "-src0")
150 unop("fneg", tfloat, "-src0")
151 unop("inot", tint, "~src0") # invert every bit of the integer
152 unop("fnot", tfloat, ("bit_size == 64 ? ((src0 == 0.0) ? 1.0 : 0.0f) : " +
154 unop("fsign", tfloat, ("bit_size == 64 ? " +
157 unop("isign", tint, "(src0 == 0) ? 0 : ((src0 > 0) ? 1 : -1)")
158 unop("iabs", tint, "(src0 < 0) ? -src0 : src0"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
unparse.py 422 unop = {"Invert":"~", "Not": "not", "UAdd":"+", "USub":"-"} variable in class:Unparser
425 self.write(self.unop[t.op.__class__.__name__])
  /external/python/cpython2/Demo/parser/
unparse.py 422 unop = {"Invert":"~", "Not": "not", "UAdd":"+", "USub":"-"} variable in class:Unparser
425 self.write(self.unop[t.op.__class__.__name__])
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
Pp.cpp 405 } unop[] = { member in namespace:glslang
466 int op = NUM_ELEMENTS(unop) - 1;
468 if (unop[op].token == token)
474 res = unop[op].op(res);
    [all...]
  /external/mesa3d/src/compiler/glsl/
builtin_functions.cpp 669 ir_function_signature *unop(builtin_available_predicate avail,
3271 builtin_builder::unop(builtin_available_predicate avail, function in class:builtin_builder
    [all...]
  /external/valgrind/helgrind/
hg_main.c 4400 #define unop macro
    [all...]
  /external/valgrind/memcheck/
mc_translate.c 439 #define unop(_op, _arg) IRExpr_Unop((_op),(_arg)) macro
564 tmp1 = assignNew('V', mce, Ity_I64, unop(Iop_128to64, a1));
565 tmp2 = assignNew('V', mce, Ity_I64, unop(Iop_128HIto64, a1));
566 tmp3 = assignNew('V', mce, Ity_I64, unop(Iop_128to64, a2));
567 tmp4 = assignNew('V', mce, Ity_I64, unop(Iop_128HIto64, a2));
605 return assignNew('V', mce, Ity_I8, unop(Iop_Left8, a1));
610 return assignNew('V', mce, Ity_I16, unop(Iop_Left16, a1));
615 return assignNew('V', mce, Ity_I32, unop(Iop_Left32, a1));
620 return assignNew('V', mce, Ity_I64, unop(Iop_Left64, a1));
687 assignNew('V', mce, Ity_I8, unop(Iop_Not8, data)),
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-alpha.c 5363 static char const unop[4] = { 0x00, 0x00, 0xfe, 0x2f }; local
    [all...]

Completed in 926 milliseconds

1 2