HomeSort by relevance Sort by last modified time
    Searched refs:negate (Results 126 - 150 of 402) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 416 public abstract ECPoint negate(); method in class:ECPoint
817 ECFieldElement a4Neg = a4.negate();
1039 return add(b.negate());
1042 public ECPoint negate() method in class:ECPoint.Fp
1054 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.zs, this.withCompression);
1057 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.withCompression);
1069 ECFieldElement a4Neg = a4.negate();
1072 W = W.multiply(a4Neg).negate();
1690 public ECPoint negate() method in class:ECPoint.F2m
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_disasm.c 108 char *negate[2] = { variable
626 err |= control (file, "negate", negate, _negate, NULL);
652 err |= control (file, "negate", negate, _negate, NULL);
680 err |= control (file, "negate", negate, _negate, NULL);
731 err |= control (file, "negate", negate, inst->bits1.da3src.src0_negate, NULL);
781 err |= control (file, "negate", negate, inst->bits1.da3src.src1_negate
    [all...]
brw_clip_tri.c 287 brw_ADD(p, c->reg.t, c->reg.dpPrev, negate(c->reg.dp));
329 brw_ADD(p, c->reg.t, c->reg.dp, negate(c->reg.dpPrev));
500 brw_CMP(p, t1, BRW_CONDITIONAL_L, v0, negate(get_element(v0, 3)));
502 brw_CMP(p, t2, BRW_CONDITIONAL_L, v1, negate(get_element(v1, 3)));
504 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
brw_eu.h 79 GLuint negate:1; /* source only */ member in struct:brw_reg
208 reg.negate = 0;
705 static INLINE struct brw_reg negate( struct brw_reg reg )
707 reg.negate ^= 1;
714 reg.negate = 0;
brw_clip_unfilled.c 84 brw_ADD(p, e, v0n, negate(v2n));
85 brw_ADD(p, f, v1n, negate(v2n));
91 brw_MAC(p, vec4(e), negate(brw_swizzle(e, 2,0,1,3)), brw_swizzle(f,1,2,0,3));
brw_vec4.cpp 259 negate == r->negate &&
714 inst->src[0].abs || inst->src[0].negate || inst->src[0].reladdr)
brw_wm_emit.c 196 negate(r1));
200 negate(suboffset(r1,1)));
250 brw_ADD(p, dst[1], negate(delta_y),
459 * The negate_value boolean is used to negate the d/dy computation for FBOs,
504 brw_ADD(p, dst[i], src1, negate(src0));
506 brw_ADD(p, dst[i], src0, negate(src1));
598 brw_ADD(p, dst[i], negate(arg0[i]), brw_imm_f(1.0));
872 brw_MUL(p, brw_null_reg(), negate(arg0[i2]), arg1[i1]);
900 arg0[0].negate || arg0[0].abs)) {
904 * The hardware ignores source modifiers (negate and abs) on mat
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_disasm.c 108 char *negate[2] = { variable
626 err |= control (file, "negate", negate, _negate, NULL);
652 err |= control (file, "negate", negate, _negate, NULL);
680 err |= control (file, "negate", negate, _negate, NULL);
731 err |= control (file, "negate", negate, inst->bits1.da3src.src0_negate, NULL);
781 err |= control (file, "negate", negate, inst->bits1.da3src.src1_negate
    [all...]
brw_clip_tri.c 287 brw_ADD(p, c->reg.t, c->reg.dpPrev, negate(c->reg.dp));
329 brw_ADD(p, c->reg.t, c->reg.dp, negate(c->reg.dpPrev));
500 brw_CMP(p, t1, BRW_CONDITIONAL_L, v0, negate(get_element(v0, 3)));
502 brw_CMP(p, t2, BRW_CONDITIONAL_L, v1, negate(get_element(v1, 3)));
504 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
brw_eu.h 79 GLuint negate:1; /* source only */ member in struct:brw_reg
208 reg.negate = 0;
705 static INLINE struct brw_reg negate( struct brw_reg reg )
707 reg.negate ^= 1;
714 reg.negate = 0;
brw_clip_unfilled.c 84 brw_ADD(p, e, v0n, negate(v2n));
85 brw_ADD(p, f, v1n, negate(v2n));
91 brw_MAC(p, vec4(e), negate(brw_swizzle(e, 2,0,1,3)), brw_swizzle(f,1,2,0,3));
brw_vec4.cpp 259 negate == r->negate &&
714 inst->src[0].abs || inst->src[0].negate || inst->src[0].reladdr)
brw_wm_emit.c 196 negate(r1));
200 negate(suboffset(r1,1)));
250 brw_ADD(p, dst[1], negate(delta_y),
459 * The negate_value boolean is used to negate the d/dy computation for FBOs,
504 brw_ADD(p, dst[i], src1, negate(src0));
506 brw_ADD(p, dst[i], src0, negate(src1));
598 brw_ADD(p, dst[i], negate(arg0[i]), brw_imm_f(1.0));
872 brw_MUL(p, brw_null_reg(), negate(arg0[i2]), arg1[i1]);
900 arg0[0].negate || arg0[0].abs)) {
904 * The hardware ignores source modifiers (negate and abs) on mat
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
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...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_compile.py 186 if op is NEGATE:
215 if op is NEGATE:
308 negate = 0
311 if op is NEGATE:
312 negate = 1
324 if negate:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_compile.py 186 if op is NEGATE:
215 if op is NEGATE:
308 negate = 0
311 if op is NEGATE:
312 negate = 1
324 if negate:
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
utilities.js 94 '~': 'negate',
324 var negate = (element === '~');
333 else if (negate && operand)
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parse.y 140 int negate;
148 unsigned negate:1;
269 %type <negate> optionalSign
546 $4.Base.Negate = $6.mask;
557 $$.Base.Negate = ~$$.Base.Negate;
570 $$.Base.Negate = ~$$.Base.Negate;
608 $$.Base.Negate = ~$$.Base.Negate;
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPoint.h 87 /** Negate the X and Y coordinates of the point.
89 void negate() { fX = -fX; fY = -fY; } function in struct:SkIPoint
312 /** Negate the point's coordinates
314 void negate() { function in struct:SkPoint
  /external/llvm/utils/lit/lit/
ShUtil.py 224 negate = False
230 return Pipeline(commands, negate, self.pipefail)
  /external/mesa3d/src/mesa/program/
program_parse.y 140 int negate;
148 unsigned negate:1;
269 %type <negate> optionalSign
546 $4.Base.Negate = $6.mask;
557 $$.Base.Negate = ~$$.Base.Negate;
570 $$.Base.Negate = ~$$.Base.Negate;
608 $$.Base.Negate = ~$$.Base.Negate;
    [all...]
  /external/skia/include/core/
SkPoint.h 87 /** Negate the X and Y coordinates of the point.
89 void negate() { fX = -fX; fY = -fY; } function in struct:SkIPoint
312 /** Negate the point's coordinates
314 void negate() { function in struct:SkPoint
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 841 return subtrahend.negate();
1701 public BigDecimal negate() { method in class:BigDecimal
1716 public BigDecimal negate(MathContext mc) { method in class:BigDecimal
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 1325 ANTLR3_BOOLEAN negate; local
    [all...]

Completed in 648 milliseconds

1 2 3 4 56 7 8 91011>>