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

1 2

  /external/llvm/include/llvm/ADT/
APFloat.h 185 APFloat(const fltSemantics &, fltCategory, bool negative);
194 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
195 return APFloat(Sem, fcZero, Negative);
197 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
198 return APFloat(Sem, fcInfinity, Negative);
203 /// \param Negative - True iff the NaN generated should be negative.
206 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
210 return getQNaN(Sem, Negative, &fill);
212 return getQNaN(Sem, Negative, 0)
    [all...]
  /external/chromium/testing/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/protobuf/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /gdk/samples/PhotoEditor/jni/
_jnif.h 14 DEFINE(Negative)
negative.cpp 35 extern "C" void Negative(
45 LOGE("LockBitmaps in Negative failed, error=%d", ret);
_jni.h 16 void Negative(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 42 * plane. The distance is pseudo due to the fact that it can be negative if the
58 Negative
169 * a provided point. If the point is on the negative side of the plane the
170 * distance returned is negative, otherwise it is positive. If the point is
193 return Side.Negative;
  /external/webkit/Source/WebCore/xml/
XPathPredicate.h 59 class Negative : public Expression {
XPathPredicate.cpp 64 Value Negative::evaluate() const
XPathGrammar.y 549 $$ = new Negative;
  /external/v8/test/mjsunit/
array-indexing.js 52 // Negative cases.
58 // Negative index out of range.
60 // Negative index in rage.
120 // Negative cases.
131 // Negative index in range.
mod.js 39 // Negative case.
42 // Check for negative zero.
46 // Check for negative zero.
array-concat.js 96 // Negative indices don't get concated.
168 // Negative indices don't get concated.
date-parse.js 286 // Negative tests.
  /external/chromium/base/
string_number_conversions.cc 47 // for testing whether an integer is negative.
53 // value is unsigned, and can never be negative.
187 if (!Negative::Invoke(begin + 1, end, output)) {
262 class Negative : public Base<Negative> {
  /external/llvm/lib/Support/
APFloat.cpp 179 bool negative, overflow;
184 negative = *p == '-';
208 if (negative)
216 exponent = negative ? -32768: 32767;
632 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
635 sign = Negative;
679 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
682 value.makeNaN(SNaN, Negative, fill);
756 fltCategory ourCategory, bool negative)
761 sign = negative;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 273 if (bbox.whichSide(p) == Plane.Side.Negative) {
BoundingSphere.java 447 return Plane.Side.Negative;
BoundingBox.java 351 return Plane.Side.Negative;
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp 399 bool SNaN, bool Negative, uint64_t fill) {
402 return APFloat::getSNaN(Sem, Negative, &apfill).bitcastToAPInt();
404 return APFloat::getQNaN(Sem, Negative, &apfill).bitcastToAPInt();
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 576 refractionCam.setClipPlane(refractionClipPlane, Plane.Side.Negative);//,-1
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 387 if (side == Plane.Side.Negative) {
998 * on the negative side of the plane is can be culled out.
    [all...]
  /external/llvm/include/llvm/
Constants.h 249 /// method returns the negative zero constant for floating point or vector
261 static ConstantFP *getInfinity(Type *Ty, bool Negative = false);
267 /// isZero - Return true if the value is positive or negative zero.
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 581 ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
584 APFloat::getInf(Semantics, Negative));
    [all...]

Completed in 504 milliseconds

1 2