HomeSort by relevance Sort by last modified time
    Searched refs:Negate (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_util.c 116 if( reg->Register.Negate ) {
124 if( reg->Register.Negate ) {
143 reg->Register.Negate = 0;
149 reg->Register.Negate = 1;
153 reg->Register.Negate = 1;
158 reg->Register.Negate = 0;
tgsi_build.c 648 instruction_predicate.Negate = 0;
657 unsigned negate,
672 instruction_predicate.Negate = negate;
788 src_register.Negate = 0;
804 unsigned negate,
819 assert( negate <= 1 );
827 src_register.Negate = negate;
998 full_inst->Predicate.Negate,
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 33 static uint32_t Negate(uint32_t x) { return x; };
40 static int32_t Negate(int32_t x) { return -x; };
47 static uint64_t Negate(uint64_t x) { return x; };
54 static int64_t Negate(int64_t x) { return -x; };
83 VerifyValue<T>(Traits<T>::Negate(i), f, g);
84 VerifyValue<T>(Traits<T>::Negate(i + 1), f, g);
  /external/libchrome/crypto/
p224.h 57 // Negate calculates out = -a;
58 void CRYPTO_EXPORT Negate(const Point& a, Point* out);
  /external/libweave/third_party/chromium/crypto/
p224.h 54 // Negate calculates out = -a;
55 void Negate(const Point& a, Point* out);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_swizzle.c 104 * Check whether the given instruction supports the swizzle and negate
117 if (reg.Abs || reg.Negate)
137 if ((reg.Negate & relevant) && ((reg.Negate & relevant) != relevant))
171 /* check if the negate bit of current component
173 if (matchmask && (!!(src.Negate & matchmask) != !!(src.Negate & (1 << comp))))
radeon_optimize.c 56 combine.Negate = outer.Negate;
59 combine.Negate = swizzle_mask(outer.Swizzle, inner.Negate);
60 combine.Negate ^= outer.Negate;
197 *pnegate = GET_BIT(src.Negate, chan);
200 if (swz != *pswz || *pnegate != GET_BIT(src.Negate, chan)) {
213 unsigned int negate= 0; local
215 if (is_src_uniform_constant(inst->U.I.SrcReg[2], &swz, &negate)) {
254 unsigned int negate = 0; local
287 unsigned int negate = 0; local
    [all...]
radeon_dataflow_swizzles.c 71 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate;
73 mov->U.I.SrcReg[0].Negate = 0;
75 mov->U.I.SrcReg[0].Negate = RC_MASK_XYZW;
82 inst->U.I.SrcReg[src].Negate = RC_MASK_NONE;
radeon_pair_translate.c 47 inst->SrcReg[1].Negate = RC_MASK_NONE;
245 pair->RGB.Arg[i].Negate = !!(srcmask & inst->SrcReg[i].Negate & (RC_MASK_X | RC_MASK_Y | RC_MASK_Z));
273 pair->Alpha.Arg[i].Negate =
274 !!(inst->SrcReg[i].Negate &
277 pair->Alpha.Arg[i].Negate =
278 !!(inst->SrcReg[i].Negate & RC_MASK_W);
r500_fragprog.c 178 inst_if->U.I.SrcReg[0].Negate = 0;
197 if (opcode == RC_OPCODE_KIL && (reg.Swizzle != RC_SWIZZLE_XYZW || reg.Negate != RC_MASK_NONE))
203 reg.Negate &= ~(1 << i);
210 if (reg.Negate)
217 if (reg.Swizzle == RC_SWIZZLE_XYZW && !reg.Abs && !reg.Negate)
231 if ((reg.Negate & relevant) && ((reg.Negate & relevant) != relevant))
254 negatebase[GET_BIT(src.Negate, i)] |= 1 << i;
radeon_inline_literals.c 28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
137 src_reg->Negate = src_reg->Negate ^ negate_mask;
radeon_program.h 54 unsigned int Negate:4;
radeon_program_pair.h 68 unsigned int Negate:1;
radeon_program_print.c 186 static void rc_print_swizzle(FILE * f, unsigned int swizzle, unsigned int negate)
191 if (GET_BIT(negate, comp))
235 int trivial_negate = (src.Negate == RC_MASK_NONE || src.Negate == RC_MASK_XYZW);
237 if (src.Negate == RC_MASK_XYZW)
252 rc_print_swizzle(f, src.Swizzle, trivial_negate ? 0 : src.Negate);
406 const char* neg = inst->RGB.Arg[arg].Negate ? "-" : "";
441 const char* neg = inst->Alpha.Arg[arg].Negate ? "-" : "";
radeon_program_alu.c 152 newreg.Negate = RC_MASK_NONE;
156 static struct rc_src_register negate(struct rc_src_register reg) function
159 newreg.Negate = newreg.Negate ^ RC_MASK_XYZW;
234 src.Negate = RC_MASK_NONE;
253 emit1(c, inst->Prev, RC_OPCODE_FRC, 0, dst, negate(inst->U.I.SrcReg[0]));
280 src0.Negate &= ~(RC_MASK_Z | RC_MASK_W);
283 src1.Negate &= ~(RC_MASK_Z | RC_MASK_W);
294 src0.Negate &= ~RC_MASK_W;
320 inst->U.I.SrcReg[0], negate(srcreg(RC_FILE_TEMPORARY, dst.Index)))
    [all...]
radeon_program_tex.c 230 inst_add->U.I.SrcReg[1].Negate = inst_add->U.I.SrcReg[1].Negate ^ RC_MASK_XYZW;
232 inst_add->U.I.SrcReg[0].Negate = inst_add->U.I.SrcReg[0].Negate ^ RC_MASK_XYZW;
361 inst_mad->U.I.SrcReg[2].Negate = RC_MASK_XYZ;
374 inst_add->U.I.SrcReg[1].Negate = RC_MASK_XYZ;
464 inst_mad->U.I.SrcReg[2].Negate = RC_MASK_XYZW;
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 70 struct match_info Negate;
106 tokens.Negate.String = src_str + matches[1].rm_so;
107 tokens.Negate.Length = match_length(matches, 1);
117 /* Negate */
118 if (tokens.Negate.Length > 0) {
119 src_reg->Negate = RC_MASK_XYZW;
158 src_reg->Negate |= (1 << i);
192 DBG("File=%u index=%u swizzle=%x negate=%u abs=%u\n",
194 src_reg->Negate, src_reg->Abs);
  /external/regex-re2/re2/testing/
charclass_test.cc 118 CharClass* Negate(CharClass *cc) {
119 return cc->Negate();
126 CharClassBuilder* Negate(CharClassBuilder* cc) {
128 ncc->Negate();
170 CharClass* ncc = Negate(cc);
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_optimize.c 62 d1->Register.Negate == d2->Register.Negate);
159 o->Negate = i->Negate;
266 current.FullInstruction.Src[0].Register.Negate == 0 &&
290 next->FullInstruction.Src[0].Register.Negate == 0 &&
  /external/mesa3d/src/mesa/program/
prog_opt_constant_fold.c 84 && (a->Negate == b->Negate)
107 if (r->Negate & 0x01) {
111 if (r->Negate & 0x02) {
115 if (r->Negate & 0x04) {
119 if (r->Negate & 0x08) {
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_vertprog.c 293 src->Negate) | (src->RelAddr << 4);
305 src->Negate ? VSF_FLAG_ALL : VSF_FLAG_NONE) | (src->RelAddr << 4);
719 src[0].Negate) | (src[0].RelAddr << 4);
731 src[0].Negate ? VSF_FLAG_ALL : VSF_FLAG_NONE) | (src[0].RelAddr << 4);
736 src[1].Negate ? VSF_FLAG_ALL : VSF_FLAG_NONE) | (src[1].RelAddr << 4);
785 src[1].Negate) | (src[1].RelAddr << 4);
789 src[1].Negate) | (src[1].RelAddr << 4);
811 src[0].Negate) | (src[0].RelAddr << 4);
819 src[1].Negate) | (src[1].RelAddr << 4);
834 src[0].Negate) | (src[0].RelAddr << 4)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 649 unsigned Negate, decimal_point;
658 Negate = 0;
662 Negate = 1;
736 if (Negate) {
764 bool Negate = false;
768 Negate = true;
840 return Negate ? -x : x;
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 546 unsigned Negate : 1; /* BOOL */
559 * If Negate is TRUE, all components of the fetched register are negated.
577 unsigned Negate : 1; /* BOOL */
  /external/webrtc/webrtc/base/
bind_unittest.cc 67 int Negate(int a) { return -a; }
156 EXPECT_EQ(3, Bind(&Negate, -3)());

Completed in 434 milliseconds

1 2 3 4 5