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

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
SpecificFloatValue.java 32 public FloatValue negate() method in class:SpecificFloatValue
UnknownIntegerValue.java 32 public IntegerValue negate() method in class:UnknownIntegerValue
ParticularDoubleValue.java 52 public DoubleValue negate() method in class:ParticularDoubleValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
ParticularFloatValue.java 52 public FloatValue negate() method in class:ParticularFloatValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPoint.java 34 public final void negate() { method in class:ShadowPoint
ShadowPointF.java 36 public final void negate() { method in class:ShadowPointF
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
math_op.c 117 *exp = negate((*exp - 1) >> 1);
  /frameworks/base/graphics/java/android/graphics/
Point.java 51 * Negate the point's coordinates
53 public final void negate() { method in class:Point
PointF.java 59 public final void negate() { method in class:PointF
  /external/pixman/pixman/
pixman-vmx.c 107 negate (vector unsigned int src) function
119 pix_multiply (dest, negate (srca));
570 vdest = pix_multiply (vsrc, splat_alpha (negate (vdest)));
607 vdest = pix_multiply (vsrc, splat_alpha (negate (vdest)));
661 vdest = pix_multiply (vdest, splat_alpha (negate (vsrc)));
698 vdest = pix_multiply (vdest, splat_alpha (negate (vsrc)));
753 vdest, splat_alpha (negate (vsrc)));
793 vdest, splat_alpha (negate (vsrc)));
852 vsrc, splat_alpha (negate (vdest)));
892 vsrc, splat_alpha (negate (vdest)))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_fpc_translate.c 114 negate(int reg, int x, int y, int z, int w) function
270 /* There's both negate-all-components and per-component negation.
274 int n = source->Register.Negate;
275 src = negate(src, n, n, n, n);
508 src0, negate(src0, 1, 1, 1, 1), 0);
523 negate(src0, 1, 1, 1, 1), 0, 0);
528 negate(tmp, 1, 1, 1, 1), 0, 0);
689 negate(swizzle(0, ONE, ONE, ONE, ONE), 1, 1, 1, 1), /* coord */
731 negate(swizzle(tmp, ONE, ONE, X, ONE), 0, 0, 1, 0),
756 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_translate.c 114 negate(int reg, int x, int y, int z, int w) function
270 /* There's both negate-all-components and per-component negation.
274 int n = source->Register.Negate;
275 src = negate(src, n, n, n, n);
508 src0, negate(src0, 1, 1, 1, 1), 0);
523 negate(src0, 1, 1, 1, 1), 0, 0);
528 negate(tmp, 1, 1, 1, 1), 0, 0);
689 negate(swizzle(0, ONE, ONE, ONE, ONE), 1, 1, 1, 1), /* coord */
731 negate(swizzle(tmp, ONE, ONE, X, ONE), 0, 0, 1, 0),
756 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_program.h 100 negate(int reg, int x, int y, int z, int w) function
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/
webrtc_cng.c 249 int16_t negate; local
309 negate = *bptr < 0;
310 if (negate)
319 if (negate)
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_program.h 100 negate(int reg, int x, int y, int z, int w) function
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
basic_op.h 226 Function Name : negate
228 Negate var1 with saturation, saturate in the case where input is -32768:
229 negate(var1) = sub(0,var1).
244 static inline Word16 negate(Word16 var1) function
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
hp_max.cpp 204 *cor_hp_max = shl(cor_max, negate(shift)); // Q15
327 *cor_hp_max = shl(cor_max, negate(shift), pOverflow); /* Q15 */
calc_en.cpp 501 frac_coeff[1] = negate(g_coeff[2]); // coeff[1] = -2 xn y1
522 frac_coeff[3] = negate(extract_h(L_shl(s, exp)));
620 frac_coeff[1] = negate(g_coeff[2]); /* coeff[1] = -2 xn y1 */
657 frac_coeff[3] = negate((Word16)(L_shl(s2, exp, pOverflow) >> 16));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalCompareTest.java 33 * max, min, negate, signum
415 * negate() for a positive BigDecimal
424 assertEquals("incorrect value", cNumber, aNumber.negate());
428 * negate(MathContext) for a positive BigDecimal
439 BigDecimal res = aNumber.negate(mc);
445 * negate() for a negative BigDecimal
454 assertEquals("incorrect value", cNumber, aNumber.negate());
458 * negate(MathContext) for a negative BigDecimal
469 BigDecimal res = aNumber.negate(mc);
BigDecimalTest.java 372 hash2 = new BigDecimal(value.negate(), 2);
400 BigDecimal long1 = new BigDecimal(value2.negate(), 0);
453 movePtLeft = new BigDecimal(value2.negate(), 0);
536 * @tests java.math.BigDecimal#negate()
540 assertTrue("the negate of 1233.4560000 is not -1233.4560000", negate1
541 .negate().toString().equals("-1233.4560000"));
543 assertTrue("the negate of -23465839 is not 23465839", negate1.negate()
546 assertTrue("the negate of -3.456E6 is not 3.456E6", negate1.negate()
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 614 return add(rhs.negate());
698 public abstract Duration negate(); method in class:Duration
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.cpp 262 negate == r.negate &&
620 pixel_y.negate = true;
809 * Gen 6 hardware ignores source modifiers (negate and abs) on math
814 src.negate)) {
851 * The hardware ignores source modifiers (negate and abs) on math
854 if (src0.file == UNIFORM || src0.abs || src0.negate) {
861 if (src1.file == UNIFORM || src1.abs || src1.negate) {
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.cpp 262 negate == r.negate &&
620 pixel_y.negate = true;
809 * Gen 6 hardware ignores source modifiers (negate and abs) on math
814 src.negate)) {
851 * The hardware ignores source modifiers (negate and abs) on math
854 if (src0.file == UNIFORM || src0.abs || src0.negate) {
861 if (src1.file == UNIFORM || src1.abs || src1.negate) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 110 this->negate = 0;
121 this->negate = 0;
131 this->negate = 0;
140 int negate; /**< NEGATE_XYZW mask from mesa */ member in class:st_src_reg
185 this->negate = 0;
619 src.negate = ~src.negate;
998 src.negate = 0;
2124 bool negate = true; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 110 this->negate = 0;
121 this->negate = 0;
131 this->negate = 0;
140 int negate; /**< NEGATE_XYZW mask from mesa */ member in class:st_src_reg
185 this->negate = 0;
619 src.negate = ~src.negate;
998 src.negate = 0;
2124 bool negate = true; local
    [all...]

Completed in 597 milliseconds

1 2 34 5 6 7 8 91011>>