HomeSort by relevance Sort by last modified time
    Searched refs:negate (Results 201 - 225 of 705) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.cpp 316 tmp[i] = shl(tmp[i], negate(shift)); // Q15+Qn-Qm-Qx=Q13
533 *(tmp + i) = shl(*(tmp + i), negate(shift), pOverflow);
d8_31pf.cpp 48 (2) Added includes of mult.h, shl.h, shr.h, add.h, sub.h, negate.h,
614 sign = negate(sign);
  /libcore/luni/src/test/java/libcore/java/math/
BigDecimalTest.java 223 assertEquals(a.negate(), b);
224 assertEquals(a, b.negate());
225 assertEquals(a, a.negate().negate());
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
Utils.java 114 Predicate<String> nonLowerCaseAscii = onlyLowerCaseAscii.negate();
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 299 GLuint negate:1; member in struct:ureg
348 reg.negate = 0;
355 static struct ureg negate( struct ureg reg ) function
357 reg.negate ^= 1;
531 src->Negate = reg.negate ? NEGATE_XYZW : NEGATE_NONE;
952 emit_op2(p, OPCODE_DP3, spot, 0, negate(VPpli), spot_dir_norm);
1064 /* Note that we negate the back-face specular exponent here.
1069 negate(swizzle1(shininess,X)));
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP521R1Point.java 324 public ECPoint negate() method in class:SecP521R1Point
331 return new SecP521R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DecimalQuantity_DualStorageBCD.java 228 result = result.negate();
238 if (isNegative()) result = result.negate();
DecimalQuantity_AbstractBCD.java 351 readBigIntegerToBcd(BigInteger.valueOf(n).negate());
364 n = n.negate();
515 n = n.negate();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DecimalQuantity_DualStorageBCD.java 226 result = result.negate();
236 if (isNegative()) result = result.negate();
DecimalQuantity_AbstractBCD.java 349 readBigIntegerToBcd(BigInteger.valueOf(n).negate());
362 n = n.negate();
513 n = n.negate();
  /external/pdfium/third_party/bigint/
BigInteger.cc 366 void BigInteger::negate(const BigInteger &a) { function in class:BigInteger
367 DTRT_ALIASED(this == &a, negate(a));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_copy_propagation.cpp 367 entry->src.negate)
370 bool has_source_modifiers = entry->src.abs || entry->src.negate;
426 if (devinfo->gen >= 8 && (entry->src.negate || entry->src.abs) &&
484 inst->src[arg].negate ^= entry->src.negate;
537 if (inst->src[i].negate) {
brw_sf_emit.c 460 brw_ADD(p, c->a1_sub_a0, a1, negate(a0));
461 brw_ADD(p, c->a2_sub_a0, a2, negate(a0));
466 brw_MAC(p, c->tmp, c->a2_sub_a0, negate(c->dy0));
472 brw_MAC(p, c->tmp, c->a1_sub_a0, negate(c->dx2));
541 brw_ADD(p, c->a1_sub_a0, a1, negate(a0));
623 brw_MOV(p, brw_writemask(c->m2Cy, WRITEMASK_Y), negate(c->tmp));
brw_vec4.cpp 296 !src[0].abs && !src[0].negate && !saturate &&
301 !src[1].abs && !src[1].negate));
784 inst->src[0].negate = !inst->src[0].negate;
792 inst->src[0].negate &&
795 inst->src[0].negate = false;
    [all...]
brw_vec4_nir.cpp     [all...]
brw_clip_tri.c 331 brw_ADD(p, c->reg.t, c->reg.dpPrev, negate(c->reg.dp));
373 brw_ADD(p, c->reg.t, c->reg.dp, negate(c->reg.dpPrev));
551 brw_CMP(p, t1, BRW_CONDITIONAL_L, v0, negate(get_element(v0, 3)));
552 brw_CMP(p, t2, BRW_CONDITIONAL_L, v1, negate(get_element(v1, 3)));
553 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 487 public abstract ECPoint negate(); method in class:ECPoint
595 return this.add(b.negate());
953 ECFieldElement a4Neg = a4.negate();
    [all...]
  /external/mesa3d/src/mesa/program/
program_parse.y 140 int negate;
148 unsigned negate:1;
267 %type <negate> optionalSign
542 $4.Base.Negate = $6.mask;
553 $$.Base.Negate = ~$$.Base.Negate;
572 $$.Base.Negate = ~$$.Base.Negate;
637 $$.mask = ($1.negate) | ($3.negate << 1) | ($5.negate << 2
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_instruction_test.cc 78 Status HandleNegate(HloInstruction* negate) override {
79 auto operand = negate->operand(0);
80 EXPECT_EQ(0, count_.count(negate));
82 count_[negate] = GetCountsForNode(negate);
937 auto negate = builder.AddInstruction( local
    [all...]
  /hardware/google/av/media/sfplugin/
CCodecConfig.cpp 255 ConfigMapper::Mapper negate = [](C2Value v) -> C2Value { local
303 .withMappers(negate, negate));
306 .withMappers(negate, negate));
343 .withMappers(negate, negate));
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 100 this->negate = 0;
120 this->negate = 0;
138 this->negate = 0;
155 this->negate = 0;
170 int negate:4; /**< NEGATE_XYZW mask from mesa */
190 reg.negate = 0;
260 this->negate = 0;
2796 bool negate = true; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
hex_float.h 572 bool negate = isNegative(); local
574 if (negate) {
607 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
622 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
634 negate, static_cast<other_int_type>(exponent), rounded_significand,
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
hex_float.h 570 bool negate = isNegative(); local
572 if (negate) {
605 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
620 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
632 negate, static_cast<other_int_type>(exponent), rounded_significand,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_compile.py 185 if op is NEGATE:
214 if op is NEGATE:
307 negate = 0
310 if op is NEGATE:
311 negate = 1
323 if negate:
  /external/mesa3d/src/compiler/nir/
nir_instr_set.c 41 hash = HASH(hash, src->negate);
236 alu1->src[src1].negate != alu2->src[src2].negate)

Completed in 1273 milliseconds

1 2 3 4 5 6 7 891011>>