/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
D | ConstraintRotLimit.java | 25 protected float[][] limits = new float[3][2]; field in ConstraintRotLimit 49 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintRotLimit() 50 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintRotLimit() 51 limits[2][0] = -((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintRotLimit() 52 limits[2][1] = -((Number) data.getFieldValue("ymax")).floatValue(); in ConstraintRotLimit() 53 limits[1][0] = ((Number) data.getFieldValue("zmin")).floatValue(); in ConstraintRotLimit() 54 limits[1][1] = ((Number) data.getFieldValue("zmax")).floatValue(); in ConstraintRotLimit() 63 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintRotLimit() 64 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintRotLimit() 65 limits[1][0] = ((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintRotLimit() [all …]
|
D | ConstraintSizeLimit.java | 25 protected float[][] limits = new float[3][2]; field in ConstraintSizeLimit 49 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintSizeLimit() 50 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintSizeLimit() 51 limits[2][0] = -((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintSizeLimit() 52 limits[2][1] = -((Number) data.getFieldValue("ymax")).floatValue(); in ConstraintSizeLimit() 53 limits[1][0] = ((Number) data.getFieldValue("zmin")).floatValue(); in ConstraintSizeLimit() 54 limits[1][1] = ((Number) data.getFieldValue("zmax")).floatValue(); in ConstraintSizeLimit() 67 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintSizeLimit() 68 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintSizeLimit() 69 limits[1][0] = ((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintSizeLimit() [all …]
|
D | ConstraintLocLimit.java | 25 protected float[][] limits = new float[3][2]; field in ConstraintLocLimit 49 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintLocLimit() 50 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintLocLimit() 51 limits[2][0] = -((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintLocLimit() 52 limits[2][1] = -((Number) data.getFieldValue("ymax")).floatValue(); in ConstraintLocLimit() 53 limits[1][0] = ((Number) data.getFieldValue("zmin")).floatValue(); in ConstraintLocLimit() 54 limits[1][1] = ((Number) data.getFieldValue("zmax")).floatValue(); in ConstraintLocLimit() 67 limits[0][0] = ((Number) data.getFieldValue("xmin")).floatValue(); in ConstraintLocLimit() 68 limits[0][1] = ((Number) data.getFieldValue("xmax")).floatValue(); in ConstraintLocLimit() 69 limits[1][0] = ((Number) data.getFieldValue("ymin")).floatValue(); in ConstraintLocLimit() [all …]
|
/external/stlport/src/ |
D | num_get_float.cpp | 335 typedef numeric_limits<double> limits; in _Stl_atod() typedef 420 if (value == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */ in _Stl_atod() 464 if (bexp > limits::max_exponent) { /* overflow */ in _Stl_atod() 465 return limits::infinity(); in _Stl_atod() 468 value &= ~(ULL(1) << (limits::digits - 1)); /* hide hidden bit */ in _Stl_atod() 485 typedef numeric_limits<D> limits; in _Stl_atodT() typedef 529 if ( bexp >= limits::min_exponent ) { /* not zero or denorm */ in _Stl_atodT() 530 if ( limits::digits < 64 ) { in _Stl_atodT() 532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); in _Stl_atodT() 548 …if ( (vv.i64 >> (limits::digits < 64 ? limits::digits : 0)) != 0 ) { /* carry all the way across */ in _Stl_atodT() [all …]
|
D | num_put_float.cpp | 634 typedef numeric_limits<_FloatT> limits; in __format_nan_or_inf() typedef 635 if (x == limits::infinity() || x == -limits::infinity()) { in __format_nan_or_inf() 757 typedef numeric_limits<_FloatT> limits; typedef 758 char static_buf[limits::max_exponent10 + 6]; // 6: -xxx.yyyE-zzz (sign, dot, E, exp sign, \0) 766 typedef numeric_limits<_FloatT> limits; 768 if (limits::has_infinity && limits::has_quiet_NaN) { 770 (x == limits::infinity() || x == -limits::infinity())) { 792 char cvtbuf[limits::max_exponent10 + limits::digits10 + 2 + 1]; 804 int digits10 = (x > -1.0 && x < 1.0 ? -limits::min_exponent10 + limits::digits10 + 2 805 : limits::digits10 + 2); [all …]
|
/external/icu4c/layoutex/layout/ |
D | RunArrays.h | 62 inline RunArray(const le_int32 *limits, le_int32 count); 234 inline RunArray::RunArray(const le_int32 *limits, le_int32 count) in RunArray() argument 235 : UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count) in RunArray() 288 inline FontRuns(const LEFontInstance **fonts, const le_int32 *limits, le_int32 count); 395 inline FontRuns::FontRuns(const LEFontInstance **fonts, const le_int32 *limits, le_int32 count) in FontRuns() argument 396 : RunArray(limits, count), fFonts(fonts) in FontRuns() 425 inline LocaleRuns(const Locale **locales, const le_int32 *limits, le_int32 count); 535 inline LocaleRuns::LocaleRuns(const Locale **locales, const le_int32 *limits, le_int32 count) in LocaleRuns() argument 536 : RunArray(limits, count), fLocales(locales) in LocaleRuns() 563 inline ValueRuns(const le_int32 *values, const le_int32 *limits, le_int32 count); [all …]
|
D | plruns.h | 58 const le_int32 *limits, 191 const le_int32 *limits, 323 const le_int32 *limits,
|
/external/icu4c/test/intltest/ |
D | callimts.cpp | 320 int32_t limits[UCAL_FIELD_COUNT][4]; in doLimitsTest() local 322 limits[j][0] = INT32_MAX; in doLimitsTest() 323 limits[j][1] = INT32_MIN; in doLimitsTest() 324 limits[j][2] = INT32_MAX; in doLimitsTest() 325 limits[j][3] = INT32_MIN; in doLimitsTest() 356 if (limits[j][0] > minActual) { in doLimitsTest() 358 limits[j][0] = minActual; in doLimitsTest() 360 if (limits[j][1] < minActual) { in doLimitsTest() 362 limits[j][1] = minActual; in doLimitsTest() 364 if (limits[j][2] > maxActual) { in doLimitsTest() [all …]
|
D | tchcfmt.cpp | 44 double limits[] = {1,2,3,4,5,6,7}; in TestSimpleExample() local 46 ChoiceFormat* form = new ChoiceFormat(limits, monthNames, 7); in TestSimpleExample() 74 ChoiceFormat* formequal=new ChoiceFormat(limits, monthNames, 7); in TestSimpleExample() 104 if(gotLimits[ix] != limits[ix]){ in TestSimpleExample() 105 …errln((UnicodeString)"getLimits didn't get the limits correctly. Expected " + limits[ix] + " Got … in TestSimpleExample() 470 double limits[] = { 0, 1, 2, 3, 4, 5 }; in TestClosures() local 475 ChoiceFormat fmt1(limits, closures, fmts, 6); in TestClosures() 515 if(limits2[i] != limits[i]) { in TestClosures() 516 errln("FAIL: limit #%d = %g, should be %g\n", i, limits2[i], limits[i]); in TestClosures() 637 static const double limits[] = {0.1e-78, 1e13, 0.1e78}; in TestChoiceFormatToPatternOverflow() local [all …]
|
/external/stlport/test/unit/ |
D | num_put_get_test.cpp | 80 typedef numeric_limits<F> limits; in check_get_float() typedef 84 str << "1E+" << limits::max_exponent10; in check_get_float() 90 CPPUNIT_CHECK( in_val_d != limits::infinity() ); in check_get_float() 95 str << "-1E+" << limits::max_exponent10; in check_get_float() 101 CPPUNIT_CHECK( in_val_d != -limits::infinity() ); in check_get_float() 106 str << "1E" << limits::min_exponent10; in check_get_float() 117 str << "1E+" << (limits::max_exponent10 + 1); in check_get_float() 123 CPPUNIT_CHECK( in_val_d == limits::infinity() ); in check_get_float() 128 str << "-1E+" << (limits::max_exponent10 + 1); in check_get_float() 134 CPPUNIT_CHECK( in_val_d == -limits::infinity() ); in check_get_float() [all …]
|
/external/chromium/chrome/browser/ |
D | browser_main_posix.cc | 167 struct rlimit limits; in SetFileDescriptorLimit() local 168 if (getrlimit(RLIMIT_NOFILE, &limits) == 0) { in SetFileDescriptorLimit() 170 if (limits.rlim_max > 0 && limits.rlim_max < max_descriptors) { in SetFileDescriptorLimit() 171 new_limit = limits.rlim_max; in SetFileDescriptorLimit() 173 limits.rlim_cur = new_limit; in SetFileDescriptorLimit() 174 if (setrlimit(RLIMIT_NOFILE, &limits) != 0) { in SetFileDescriptorLimit()
|
/external/icu4c/i18n/ |
D | choicfmt.cpp | 87 ChoiceFormat::ChoiceFormat(const double* limits, in ChoiceFormat() argument 93 setChoices(limits, NULL, formats, cnt, constructorErrorCode); in ChoiceFormat() 98 ChoiceFormat::ChoiceFormat(const double* limits, in ChoiceFormat() argument 105 setChoices(limits, closures, formats, cnt, constructorErrorCode); in ChoiceFormat() 253 ChoiceFormat::setChoices( const double* limits, in setChoices() argument 258 setChoices(limits, NULL, formats, cnt, errorCode); in setChoices() 264 ChoiceFormat::setChoices( const double* limits, in setChoices() argument 270 setChoices(limits, closures, formats, cnt, errorCode); in setChoices() 274 ChoiceFormat::setChoices(const double* limits, in setChoices() argument 282 if (limits == NULL || formats == NULL) { in setChoices() [all …]
|
/external/icu4c/layoutex/ |
D | plruns.cpp | 20 const le_int32 *limits, in pl_openFontRuns() argument 23 return (pl_fontRuns *) new FontRuns((const LEFontInstance **) fonts, limits, count); in pl_openFontRuns() 116 const le_int32 *limits, in pl_openValueRuns() argument 119 return (pl_valueRuns *) new ValueRuns(values, limits, count); in pl_openValueRuns() 229 ULocRuns(const char **locales, const le_int32 *limits, le_int32 count); 340 ULocRuns::ULocRuns(const char **locales, const le_int32 *limits, le_int32 count) in ULocRuns() argument 341 : LocaleRuns(getLocales(locales, count), limits, count), fLocaleNames(locales) in ULocRuns() 410 const le_int32 *limits, in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 413 return (pl_localeRuns *) new ULocRuns(locales, limits, count); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | RunArrays.cpp | 67 le_int32 *limits = (le_int32 *) fLimits; in add() local 69 limits[index] = limit; in add()
|
/external/stlport/stlport/ |
D | climits | 25 # include </usr/include/limits.h> 35 # include_next <limits.h> 37 # include _STLP_NATIVE_C_HEADER(limits.h) 40 # include <limits.h>
|
D | limits.h | 28 # include_next <limits.h> 30 # include _STLP_NATIVE_C_HEADER(limits.h)
|
D | limits | 35 # include_next <limits> 37 # include _STLP_NATIVE_HEADER(limits)
|
/external/icu4c/i18n/unicode/ |
D | choicfmt.h | 197 ChoiceFormat(const double* limits, 215 ChoiceFormat(const double* limits, 322 virtual void setChoices(const double* limits, 569 virtual void setChoices(const double* limits,
|
/external/clang/lib/Headers/ |
D | limits.h | 37 defined(__has_include_next) && __has_include_next(<limits.h>) 38 #include_next <limits.h>
|
/external/e2fsprogs/e2fsck/ |
D | rehash.c | 494 struct ext2_dx_countlimit *limits; in set_root_node() local 520 limits = (struct ext2_dx_countlimit *) (buf+32); in set_root_node() 521 limits->limit = (fs->blocksize - 32) / sizeof(struct ext2_dx_entry); in set_root_node() 522 limits->count = 0; in set_root_node() 531 struct ext2_dx_countlimit *limits; in set_int_node() local 538 limits = (struct ext2_dx_countlimit *) (buf+8); in set_int_node() 539 limits->limit = (fs->blocksize - 8) / sizeof(struct ext2_dx_entry); in set_int_node() 540 limits->count = 0; in set_int_node() 542 return (struct ext2_dx_entry *) limits; in set_int_node()
|
/external/clang/test/Preprocessor/ |
D | include-directive2.c | 14 #define FN limits.h>
|
/external/qemu/hw/ |
D | goldfish_nand.h | 17 void parse_nand_limits(char* limits);
|
/external/stlport/etc/ |
D | std_headers.txt | 15 limits
|
/external/chromium/net/socket/ |
D | dns_cert_provenance_checker.cc | 112 DnsCertLimits* const limits = g_dns_cert_limits.Pointer(); in Start() local 113 if (limits->HaveReachedMaxUploads() || in Start() 114 limits->HaveUploadedForHostname(hostname_)) { in Start()
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
D | ChoiceFormatTest.java | 29 double[] limits = new double[] { 0, 1, ChoiceFormat.nextDouble(1), field in ChoiceFormatTest 35 ChoiceFormat f1 = new ChoiceFormat(limits, formats); 312 double[] orgLimits = (double[]) limits.clone(); in test_getLimits() 314 assertTrue("Wrong limits", l.equals(limits)); in test_getLimits()
|