Searched defs:negate (Results 26 - 50 of 56) sorted by relevance

123

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTexturePixel.java211 public void negate() { method in class:TexturePixel
/external/skia/src/core/
H A DSk64.cpp123 void Sk64::negate() function in class:Sk64
198 this->negate();
231 this->negate();
276 this->negate();
H A DSkFloat.h31 void negate() { fPacked = Neg(fPacked); } function in class:SkFloat
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java287 @Override public CharMatcher negate() {
363 @Override public CharMatcher negate() {
397 @Override public CharMatcher negate() {
414 * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
430 @Override public CharMatcher negate() {
486 return anyOf(sequence).negate();
556 public CharMatcher negate() { method in class:CharMatcher
575 @Override public CharMatcher negate() {
680 // TODO(kevinb): make methods like negate() smar
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java434 * <code>negate</code> returns the negative of this vector. All values are
439 public Vector2f negate() { method in class:Vector2f
H A DQuaternion.java1147 * <code>negate</code> inverts the values of the quaternion.
1150 public void negate() { method in class:Quaternion
H A DVector3f.java631 * <code>negate</code> returns the negative of this vector. All values are
636 public Vector3f negate() { method in class:Vector3f
H A DVector4f.java569 * <code>negate</code> returns the negative of this vector. All values are
574 public Vector4f negate() { method in class:Vector4f
/external/oprofile/libpopt/
H A Dpopthelp.c292 int negate = (opt->argInfo & POPT_ARGFLAG_NOT); local
312 if (negate) *le++ = '~';
/external/skia/include/core/
H A DSkPoint.h69 void negate() { fX = -fX; fY = -fY; } function in struct:SkIPoint
278 void negate() { function in struct:SkPoint
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3string.c1325 ANTLR3_BOOLEAN negate; local
1329 negate = ANTLR3_FALSE;
1333 negate = ANTLR3_TRUE;
1348 return negate ? -value : value;
/external/opencv/cv/src/
H A Dcvinpaint.cpp237 icvCalcFMM(const CvMat *f, CvMat *t, CvPriorityQueueFloat *Heap, bool negate) { argument
243 unsigned known=(negate)?CHANGE:KNOWN;
266 if (negate) {
/external/stlport/stlport/stl/
H A D_function.h74 struct negate : public unary_function<_Tp, _Tp> { struct in inherits:unary_function
/external/e2fsprogs/misc/
H A Dfsck.c733 int negate; member in struct:fs_type_compile
748 int negate, first_negate = 1; local
766 cmp->negate = 0;
775 negate = 0;
778 negate = 1;
781 negate = 1;
789 cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
792 cmp->negate = negate;
795 if ((negate
[all...]
/external/openssl/ssl/
H A Dssltest.c2059 int negate = 0; local
2074 negate = !negate;
2123 if (ok >= 0 && negate)
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js612 function negate(c) {
619 c[c.length - 1] = negate(c[c.length - 1]);
622 return best_of(not_c, [ "conditional", c[1], negate(c[2]), negate(c[3]) ]);
636 case "&&" : return best_of(not_c, [ "binary", "||", negate(left), negate(right) ]);
637 case "||" : return best_of(not_c, [ "binary", "&&", negate(left), negate(right) ]);
736 a.push(make_if(negate(stat[1]), [ "block", statements.slice(i) ]));
759 c = negate(
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp230 void negate() { function in class:__anon3536::TryResult
3143 KnownVal.negate();
/external/icu4c/i18n/
H A DdecNumber.c3416 /* decNumberCopyNegate -- quiet negate value operator */
3418 /* This sets C = negate(A) */
3791 /* negate is DECNEG if rhs should be negated, or 0 otherwise */
3819 uByte negate, uInt *status) {
3861 diffsign=(Flag)((lhs->bits^rhs->bits^negate)&DECNEG);
3876 else bits=(rhs->bits^negate) & DECNEG;/* RHS must be Infinity */
3891 res->bits^=negate; /* flip if rhs was negated */
4007 bits=(uByte)(rhs->bits^negate); /* assumed sign is now that of RHS */
4029 if (!swapped) res->bits^=negate;
3817 decAddOp(decNumber *res, const decNumber *lhs, const decNumber *rhs, decContext *set, uByte negate, uInt *status) argument
/external/v8/benchmarks/
H A Dcrypto.js252 if(this.s < 0) return "-"+this.negate().toString(b);
284 function bnAbs() { return (this.s<0)?this.negate():this; }
659 BigInteger.prototype.negate = bnNegate;
1159 var x = (this.s<0)?this.negate():this.clone();
1160 var y = (a.s<0)?a.negate():a.clone();
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-crypto.js244 if(this.s < 0) return "-"+this.negate().toString(b);
276 function bnAbs() { return (this.s<0)?this.negate():this; }
651 BigInteger.prototype.negate = bnNegate;
1151 var x = (this.s<0)?this.negate():this.clone();
1152 var y = (a.s<0)?a.negate():a.clone();
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-crypto.js244 if(this.s < 0) return "-"+this.negate().toString(b);
276 function bnAbs() { return (this.s<0)?this.negate():this; }
651 BigInteger.prototype.negate = bnNegate;
1151 var x = (this.s<0)?this.negate():this.clone();
1152 var y = (a.s<0)?a.negate():a.clone();
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-crypto.js244 if(this.s < 0) return "-"+this.negate().toString(b);
276 function bnAbs() { return (this.s<0)?this.negate():this; }
651 BigInteger.prototype.negate = bnNegate;
1151 var x = (this.s<0)?this.negate():this.clone();
1152 var y = (a.s<0)?a.negate():a.clone();
/external/elfutils/src/
H A Dreadelf.c5507 bool negate = pop > nbits / 2; local
5511 char printed[(negate ? nbits - pop : pop) * 16];
5532 unsigned int w = negate ? ~*i : *i;
5552 negate ? "~<%s>" : "<%s>", printed);
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_toIR.c2819 /* We negate the signbit if and only if the intermediate result from the
2862 /* We negate the signbit if and only if the intermediate result from the
9006 Bool negate; local
9033 negate = True;
9036 negate = False;
9042 DIP("xv%sm%s%s v%d,v%d,v%d\n", negate ? "n" : "", oper_name, mdp ? "mdp" : "adp",
9063 mkexpr( negate ? getNegatedResult( hiResult )
9065 mkexpr( negate ? getNegatedResult( loResult )
9269 Bool negate; local
9294 negate
[all...]

Completed in 923 milliseconds

123