Searched defs:neg (Results 51 - 75 of 148) sorted by relevance

123456

/external/protobuf/js/binary/
H A Dutils.js599 function neg() {
612 neg();
/external/python/cpython3/Lib/
H A Doperator.py19 'mul', 'ne', 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift',
112 def neg(a): function
438 __neg__ = neg
/external/tensorflow/tensorflow/contrib/labeled_tensor/
H A D__init__.py53 neg = _core.neg variable
/external/valgrind/exp-sgcheck/tests/
H A Dbad_percentify.c276 Bool neg = False; local
285 neg = True;
303 if (neg)
/external/valgrind/none/tests/amd64/
H A Dfma4.c23 int neg = signbit (f); local
24 char sign = neg != 0 ? '-' : ' ';
53 int neg = signbit (d); local
54 char sign = neg != 0 ? '-' : ' ';
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_emit_nv50.cpp201 code[1] |= i->src(0).mod.neg() << 26;
202 code[1] |= i->src(1).mod.neg() << 27;
965 code[1] |= i->src(0).mod.neg() << 26;
967 code[1] |= i->src(1).mod.neg() << 27;
975 const int neg_mul = i->src(0).mod.neg() ^ i->src(1).mod.neg();
976 const int neg_add = i->src(2).mod.neg();
1006 const int neg_mul = i->src(0).mod.neg() ^ i->src(1).mod.neg();
1007 const int neg_add = i->src(2).mod.neg();
1147 const int neg = (i->src(0).mod ^ i->src(1).mod).neg(); local
1178 const int neg = (i->src(0).mod ^ i->src(1).mod).neg(); local
[all...]
H A Dnv50_ir_emit_nvc0.cpp232 if (i->src(1).mod.neg()) code[0] |= 1 << 8;
233 if (i->src(0).mod.neg()) code[0] |= 1 << 9;
522 bool neg1 = (i->src(0).mod ^ i->src(1).mod).neg();
530 if (i->src(2).mod.neg())
547 assert(!i->saturate && !i->src(2).mod.neg());
558 bool neg1 = (i->src(0).mod ^ i->src(1).mod).neg();
562 if (i->src(2).mod.neg())
577 bool neg = (i->src(0).mod ^ i->src(1).mod).neg(); local
591 if (neg)
611 bool neg = (i->src(0).mod ^ i->src(1).mod).neg(); local
1072 const bool neg = (i->op == OP_NEG) || i->src(0).mod.neg(); local
[all...]
H A Dnv50_ir_emit_gk110.cpp160 if (i->src(s).mod.neg()) code[(0x##b) / 32] |= 1 << ((0x##b) % 32)
471 if (i->src(s).mod.neg()) code[1] ^= (1 << 27);
499 bool neg1 = (i->src(0).mod ^ i->src(1).mod).neg();
521 bool neg1 = (i->src(0).mod ^ i->src(1).mod).neg();
554 bool neg = (i->src(0).mod ^ i->src(1).mod).neg(); local
564 if (neg)
579 if (neg)
582 if (neg) {
591 bool neg local
1017 bool neg = i->src(0).mod.neg(); local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.h32 unsigned neg; member in struct:r600_bytecode_alu_src
283 unsigned *sel, unsigned *neg, unsigned abs);
/external/mesa3d/src/mesa/math/
H A Dm_matrix.c485 GLfloat pos, neg, t; local
491 pos = neg = 0.0;
493 if (t >= 0.0F) pos += t; else neg += t;
496 if (t >= 0.0F) pos += t; else neg += t;
499 if (t >= 0.0F) pos += t; else neg += t;
502 if (t >= 0.0F) pos += t; else neg += t;
505 if (t >= 0.0F) pos += t; else neg += t;
508 if (t >= 0.0F) pos += t; else neg += t;
510 det = pos + neg;
/external/python/cpython2/Objects/
H A Dcomplexobject.c714 Py_complex neg; local
715 neg.real = -v->cval.real;
716 neg.imag = -v->cval.imag;
717 return PyComplex_FromCComplex(neg);
/external/python/cpython3/Objects/
H A Dcomplexobject.c563 Py_complex neg; local
564 neg.real = -v->cval.real;
565 neg.imag = -v->cval.imag;
566 return PyComplex_FromCComplex(neg);
/external/tensorflow/tensorflow/c/
H A Dc_api_function_test.cc423 TF_Operation* neg = Neg(feed, func_graph_, s_); local
424 Define(-1, {}, {feed}, {neg}, {});
430 VerifyFDef({"neg_0"}, {{"feed", DT_INT32}}, {{"neg", DT_INT32}},
431 {{"feed", "neg_0:0"}, {"neg_0:y:0", "neg"}}, {});
444 TF_Operation* neg = Neg(feed, func_graph_, s_); local
445 Define(-1, {}, {feed}, {neg}, {"negated_num"});
451 VerifyFDef({"neg"}, {{"feed", DT_INT32}}, {{"negated_num", DT_INT32}},
452 {{"feed", "neg:0"}, {"neg:y:0", "negated_num"}}, {});
465 TF_Operation* neg local
1219 TF_Operation* neg = Neg(feed, func_graph.get(), s.get()); local
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_instruction_test.cc274 // | | neg | |
287 // | neg |
1129 auto neg = builder.AddInstruction( local
1135 {neg}, HloInstruction::FusionKind::kLoop);
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
H A Dcore.py402 return neg(self)
1102 neg = define_unary_op('neg', math_ops.negative) variable
/external/tensorflow/tensorflow/core/kernels/
H A Dcwise_ops.h539 // neg(x) = - x
560 struct neg : base<T, Eigen::internal::scalar_opposite_op<T>> {}; struct in namespace:tensorflow::functor
/external/valgrind/coregrind/
H A Dm_libcbase.c97 Bool neg = False, converted = False; local
105 if (*str == '-') { str++; neg = True; }
115 if (neg) n = -n; // the start of the string.
149 Bool neg = False, converted = False; local
157 if (*str == '-') { str++; neg = True; }
175 if (neg) n = -n; // the start of the string.
217 Bool neg = False; local
225 if (*str == '-') { str++; neg = True; }
243 if (neg) n = -n;
/external/deqp/framework/randomshaders/
H A DrsgExpression.cpp1506 bool neg = state.getRandom().getBool(); local
1507 coordRange.getMin().component(ndx) = neg ? -4.0f : 2.25f;
1508 coordRange.getMax().component(ndx) = neg ? -2.25f : 4.0f;
1530 bool neg = state.getRandom().getBool(); local
1531 coordRange.getMin().component(2) = neg ? -4.0f : 0.25f;
1532 coordRange.getMax().component(2) = neg ? -0.25f : 4.0f;
/external/dhcpcd-6.8.2/
H A Ddhcp6.c1020 uint8_t neg; local
1085 neg = (rnd < 0.0);
1086 if (neg)
1091 if (neg)
1104 if (neg)
/external/freetype/src/bdf/
H A Dbdflib.c725 long v, neg; local
732 neg = 0;
736 neg = 1;
750 return ( !neg ) ? v : -v;
783 short v, neg; local
790 neg = 0;
794 neg = 1;
808 return (short)( ( !neg ) ? v : -v );
/external/icu/icu4c/source/test/intltest/
H A Dloctest.cpp1213 UnicodeString neg; local
1214 nf->format(-271828.182845, neg);
1216 neg.indexOf(EURO_CURRENCY) >= 0) {
1218 ": " + pos + " / " + neg);
1223 ": " + pos + " / " + neg +
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c757 register int neg = 0; local
760 neg = 1;
767 if (neg)
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp193 bool neg, bool soimm)
194 : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm),
192 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp, bool neg, bool soimm) argument
/external/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp268 bool neg,
272 NegOk(neg){
267 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp, bool neg, unsigned longformmaxdisp, unsigned longformopcode) argument
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_compiler_nir.c645 * absneg.s dst, (neg)src
900 struct ir3_instruction *neg, *pos; local
902 neg = ir3_CMPS_S(b, src[0], 0, create_immed(b, 0), 0);
903 neg->cat2.condition = IR3_COND_LT;
908 dst[0] = ir3_SUB_U(b, pos, 0, neg, 0);

Completed in 679 milliseconds

123456