Searched defs:neg (Results 76 - 100 of 148) sorted by relevance

123456

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_peephole.cpp1181 if (i->src(t).mod.neg())
1529 // turn "sub" into "add neg" (do we really want this ?)
1554 // abs neg [abs] = abs
1557 if ((i->op == OP_NEG) && mod.neg()) {
1559 // neg as both opcode and modifier on same insn is prohibited
1560 // neg neg abs = abs, neg neg = identity
1641 Instruction *neg local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.c673 void r600_bytecode_special_constants(uint32_t value, unsigned *sel, unsigned *neg, unsigned abs) argument
693 *neg ^= !abs;
697 *neg ^= !abs;
1248 &nalu->src[i].sel, &nalu->src[i].neg, nalu->src[i].abs);
1567 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
1571 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
1585 S_SQ_ALU_WORD1_OP3_SRC2_NEG(alu->src[2].neg) |
1892 if (src->neg)
2657 alu->src[0].neg = G_SQ_ALU_WORD0_SRC0_NEG(word0);
2661 alu->src[1].neg
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
H A Dfetch_jit.cpp772 Value* neg = ICMP_SLT(maxVertex, C((int64_t)0)); local
774 maxVertex = SELECT(neg, C(0), TRUNC(maxVertex, mInt32Ty));
/external/mksh/src/
H A Dmisc.c507 bool neg = false; local
517 neg = true;
535 if (num.u > (neg ? 2147483648U : 2147483647U))
539 if (neg)
H A Dvar.c522 bool have_base = false, neg = false; local
541 neg = true;
605 if (neg)
/external/python/cpython2/Lib/test/
H A Dtest_builtin.py8 from operator import neg namespace
822 self.assertEqual(max((1,), key=neg), 1) # one elem iterable
823 self.assertEqual(max((1,2), key=neg), 1) # two elem iterable
824 self.assertEqual(max(1, 2, key=neg), 1) # two elems
868 self.assertEqual(min((1,), key=neg), 1) # one elem iterable
869 self.assertEqual(min((1,2), key=neg), 2) # two elem iterable
870 self.assertEqual(min(1, 2, key=neg), 2) # two elems
/external/python/cpython3/Lib/test/
H A Dtest_builtin.py20 from operator import neg namespace
881 self.assertEqual(max((1,), key=neg), 1) # one elem iterable
882 self.assertEqual(max((1,2), key=neg), 1) # two elem iterable
883 self.assertEqual(max(1, 2, key=neg), 1) # two elems
889 self.assertEqual(max((), default=1, key=neg), 1)
890 self.assertEqual(max((1, 2), default=3, key=neg), 1)
933 self.assertEqual(min((1,), key=neg), 1) # one elem iterable
934 self.assertEqual(min((1,2), key=neg), 2) # two elem iterable
935 self.assertEqual(min(1, 2, key=neg), 2) # two elems
941 self.assertEqual(min((), default=1, key=neg),
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMConstantIslandPass.cpp109 bool neg, bool soimm)
110 : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm) {
108 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp, bool neg, bool soimm) argument
/external/tcpdump/
H A Dprint-rx.c1149 int pos, neg, acl; local
1157 if (sscanf((char *) s, "%d %d\n%n", &pos, &neg, &n) != 2)
1193 for (i = 0; i < neg; i++) {
/external/tensorflow/tensorflow/c/
H A Dc_api_test.cc546 TF_Operation* neg = Neg(add, graph, s); local
551 ASSERT_TRUE(GetNodeDef(neg, &node_def));
566 TF_Operation* neg2 = TF_GraphOperationByName(graph, "neg");
567 EXPECT_TRUE(neg == neg2);
595 } else if (oper == neg) {
648 ASSERT_TRUE(TF_GraphOperationByName(graph, "neg") != nullptr);
665 TF_Operation* neg = TF_GraphOperationByName(graph, "imported/neg"); local
668 ASSERT_TRUE(neg != nullptr);
673 ASSERT_EQ(1, TF_OperationNumInputs(neg));
846 TF_Operation* neg = TF_GraphOperationByName(graph, "neg"); local
953 TF_Operation* neg = Neg(add, graph, s); local
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dbuffer_assignment_test.cc803 // param0[100] ---> (exp) ---> (tanh) ---> (exp) ---> (neg)
813 auto neg = builder.AddInstruction( local
825 EXPECT_EQ(buffer_for_exp1, GetTopLevelAllocation(*assignment, neg));
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc3818 bool neg = (mag.multiplier & (1U << 31)) != 0; local
3819 if (divisor > 0 && neg) {
3823 if (divisor < 0 && !neg && mag.multiplier > 0) {
/external/v8/src/x87/
H A Dassembler-x87.cc891 void Assembler::neg(Register dst) { function in class:v8::internal::Assembler
898 void Assembler::neg(const Operand& dst) { function in class:v8::internal::Assembler
/external/vixl/src/aarch64/
H A Dassembler-aarch64.cc440 void Assembler::neg(const Register& rd, const Operand& operand) { function in class:vixl::aarch64::Assembler
3052 void Assembler::neg(const VRegister& vd, const VRegister& vn) {
/external/webrtc/webrtc/base/
H A Dhttpcommon.cc914 NegotiateAuthContext * neg = static_cast<NegotiateAuthContext *>(context); local
915 if (neg) {
917 if (++neg->steps >= max_steps) {
921 steps = neg->steps;
937 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
944 } else if (neg->specified_credentials) {
948 context = neg = 0;
954 if (!neg) {
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c495 int res, neg; local
496 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
534 c->sign = (c->used > 0) ? neg : MP_ZPOS;
1694 int res, n, t, i, norm, neg; local
1736 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
1856 c->sign = neg;
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c495 int res, neg; local
496 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
534 c->sign = (c->used > 0) ? neg : MP_ZPOS;
1694 int res, n, t, i, norm, neg; local
1736 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
1856 c->sign = neg;
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c495 int res, neg; local
496 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
534 c->sign = (c->used > 0) ? neg : MP_ZPOS;
1694 int res, n, t, i, norm, neg; local
1736 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
1856 c->sign = neg;
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnvfx_shader.h414 #define neg(s) nvfx_src_neg((s)) macro
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dnine_ff.c2313 if (t > 0.0f) pos += t; else neg += t; } while(0)
2317 if (t > 0.0f) neg -= t; else pos -= t; } while(0)
2322 float neg = 0.0f; local
2356 return pos + neg;
/external/python/cpython2/Modules/
H A D_tkinter.c1053 int neg; local
1058 neg = Py_SIZE(value) < 0;
1067 hexchars += neg + 2; /* skip sign and "0x" */
1076 bigValue.sign = neg ? MP_NEG : MP_ZPOS;
/external/python/cpython2/Objects/
H A Dlongobject.c176 int i, ndig, expo, neg; local
177 neg = 0;
189 neg = 1;
206 if (neg)
/external/python/cpython3/Modules/
H A D_tkinter.c994 int neg; local
999 neg = Py_SIZE(value) < 0;
1008 hexchars += neg + 2; /* skip sign and "0x" */
1017 bigValue.sign = neg ? MP_NEG : MP_ZPOS;
/external/swiftshader/src/Shader/
H A DShaderCore.cpp579 void ShaderCore::neg(Vector4f &dst, const Vector4f &src) function in class:sw::ShaderCore
1685 Int4 neg = As<Int4>(CmpLT(src, Float4(-0.0f))) & As<Int4>(Float4(-1.0f)); local
1687 dst = As<Float4>(neg | pos);
1692 Int4 neg = CmpLT(As<Int4>(src), Int4(0)) & Int4(-1); local
1694 dst = As<Float4>(neg | pos);
/external/icu/icu4c/source/i18n/
H A DdecNumber.cpp7348 if (*residue<0 && comp==0) { /* neg residue and dn==Nmin */
7592 Flag neg=decNumberIsNegative(dn); /* 1 if -ve */ local
7649 else if (neg && theInt>1999999997) ilength=11;
7650 else if (!neg && theInt>999999999) ilength=11;
7660 if (neg) theInt=-theInt; /* apply sign */

Completed in 750 milliseconds

123456