HomeSort by relevance Sort by last modified time
    Searched defs:isNegative (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /libcore/ojluni/src/main/java/java/security/acl/
AclEntry.java 99 public boolean isNegative();
  /external/icu/icu4c/source/i18n/
visibledigits.h 40 UBool isNegative() const;
144 UBool isNegative() const { return fMantissa.isNegative(); }
visibledigits.cpp 51 UBool VisibleDigits::isNegative() const {
  /prebuilts/go/darwin-x86/src/math/
log_amd64.s 30 JGT isNegative
104 isNegative:
  /prebuilts/go/linux-x86/src/math/
log_amd64.s 30 JGT isNegative
104 isNegative:
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKChronoPeriod.java 151 assertEquals(periodPositive.isNegative(), false);
155 assertEquals(periodZero.isNegative(), false);
159 assertEquals(periodNegative.isNegative(), true);
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoPeriod.java 186 default boolean isNegative() {
ChronoPeriodImpl.java 170 public boolean isNegative() {
  /external/llvm/lib/Support/
APFloat.cpp 122 bool isNegative;
129 isNegative = (*p == '-');
155 if (isNegative)
    [all...]
  /external/clang/include/clang/AST/
CharUnits.h 124 /// isNegative - Test whether the quantity is less than zero.
125 bool isNegative() const { return Quantity < 0; }
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 187 bool isNegative() const {
  /external/jsoncpp/src/lib_json/
json_writer.cpp 42 bool isNegative = value < 0;
43 if (isNegative)
46 if (isNegative)
  /external/llvm/include/llvm/ADT/
APInt.h 320 bool isNegative() const { return (*this)[BitWidth - 1]; }
325 bool isNonNegative() const { return !isNegative(); }
355 return !isNegative() && countPopulation() == BitWidth - 1;
369 return isNegative() && isPowerOf2();
    [all...]
APFloat.h 404 bool isNegative() const { return sign; }
443 bool isPosZero() const { return isZero() && !isNegative(); }
444 bool isNegZero() const { return isZero() && isNegative(); }
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APFloat.h 325 bool isNegative() const { return sign; }
326 bool isPosZero() const { return isZero() && !isNegative(); }
327 bool isNegZero() const { return isZero() && isNegative(); }
APInt.h 295 bool isNegative() const {
302 return !isNegative();
331 !isNegative() && countPopulation() == BitWidth - 1;
345 return BitWidth == 1 ? VAL == 1 : isNegative() && isPowerOf2();
767 if (isNegative())
768 if (RHS.isNegative())
772 else if (RHS.isNegative())
789 if (isNegative())
790 if (RHS.isNegative())
794 else if (RHS.isNegative())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Constants.h 152 bool isNegative() const { return Val.isNegative(); }
265 /// isNegative - Return true if the sign bit is set.
266 bool isNegative() const { return Val.isNegative(); }
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APFloat.cpp 132 bool isNegative;
139 isNegative = (*p == '-');
165 if (isNegative)
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidParser.h 155 return value | ((isSigned() && isNegative(value)) ? ~rawMask() : 0);
158 bool isNegative(int64_t value) const {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_read_write_utils.cpp 223 bool isNegative = false;
226 isNegative = true;
236 return isNegative ? -value : value;
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 177 inline bool isNegative(void) const
  /external/guice/lib/build/
jsr305.jar 
  /external/llvm/include/llvm/IR/
Constants.h 177 bool isNegative() const { return Val.isNegative(); }
289 bool isNegative() const { return Val.isNegative(); }
    [all...]
  /external/owasp/sanitizer/distrib/lib/
jsr305.jar 
  /external/owasp/sanitizer/lib/jsr305/
jsr305.jar 

Completed in 979 milliseconds

1 2 3 4 5