/external/freetype/src/psaux/ |
D | psconv.c | 203 FT_Fixed integral = 0; in PS_Conv_ToFixed() local 232 integral = PS_Conv_ToInt( &p, limit ); in PS_Conv_ToFixed() 237 if ( integral > 0x7FFF ) in PS_Conv_ToFixed() 240 integral = (FT_Fixed)( (FT_UInt32)integral << 16 ); in PS_Conv_ToFixed() 266 if ( !integral && power_ten > 0 ) in PS_Conv_ToFixed() 299 if ( !integral && !decimal ) in PS_Conv_ToFixed() 309 if ( integral >= 0xCCCCCCCL ) in PS_Conv_ToFixed() 311 integral *= 10; in PS_Conv_ToFixed() 327 integral /= 10; in PS_Conv_ToFixed() 333 if ( !integral && !decimal ) in PS_Conv_ToFixed() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Verifier/ |
D | non-integral-pointers.ll | 6 ; CHECK: ptrtoint not supported for non-integral pointers 12 ; CHECK: ptrtoint not supported for non-integral pointers 24 ; CHECK: inttoptr not supported for non-integral pointers 30 ; CHECK: inttoptr not supported for non-integral pointers 42 ; CHECK: ptrtoint not supported for non-integral pointers 48 ; CHECK: inttoptr not supported for non-integral pointers 55 ; CHECK: ptrtoint not supported for non-integral pointers 60 ; CHECK: inttoptr not supported for non-integral pointers 67 ; CHECK: ptrtoint not supported for non-integral pointers 75 ; CHECK: ptrtoint not supported for non-integral pointers [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | PluralSnapshot.java | 75 private Integral integral; field in PluralSnapshot.SnapshotInfo 77 private SnapshotInfo(PluralType pluralType, Integral integral) { in SnapshotInfo() argument 78 this.integral = integral; in SnapshotInfo() 87 snap = new PluralSnapshot(pluralRules, integral, pluralsTransitionAt); in SnapshotInfo() 114 if (integral == Integral.fraction) { in toHtmlStringHeader() 120 + (integral == Integral.fraction ? ".x" : "")); in toHtmlStringHeader() 137 public static SnapshotInfo getInstance(PluralType pluralType, Integral integral) { in getInstance() argument 139 SnapshotInfo result = temp.get(integral); in getInstance() 141 temp.put(integral, result = new SnapshotInfo(pluralType, integral)); in getInstance() 146 PluralSnapshot(PluralRules pluralRules, Integral integral, BitSet pluralsTransitionAt) { in PluralSnapshot() argument [all …]
|
/external/libcxx/include/ |
D | atomic | 133 struct atomic<integral> 138 void store(integral desr, memory_order m = memory_order_seq_cst) volatile noexcept; 139 void store(integral desr, memory_order m = memory_order_seq_cst) noexcept; 140 integral load(memory_order m = memory_order_seq_cst) const volatile noexcept; 141 integral load(memory_order m = memory_order_seq_cst) const noexcept; 142 operator integral() const volatile noexcept; 143 operator integral() const noexcept; 144 integral exchange(integral desr, 146 integral exchange(integral desr, memory_order m = memory_order_seq_cst) noexcept; 147 bool compare_exchange_weak(integral& expc, integral desr, [all …]
|
/external/parameter-framework/upstream/test/test-fixed-point-parameter/ |
D | Main.py | 64 def __init__(self, pfwClient, size, integral, fractional): argument 66 self._paramPath = '/Test/test/%d/q%d.%d' % (size, integral, fractional) 75 self._upperAllowedBound = (2 ** integral) - self._quantum 80 self._lowerAllowedBound = -(2 ** integral) 240 for integral in range(0, size): 241 for fractional in range (0, size - integral): 242 tester = FixedPointTester(pfw, size, integral, fractional)
|
/external/sfntly/cpp/src/sfntly/math/ |
D | fixed1616.h | 34 static inline int32_t Fixed(int32_t integral, int32_t fractional) { in Fixed() argument 35 return ((integral & 0xffff) << 16) | (fractional & 0xffff); in Fixed()
|
/external/clang/include/clang/AST/ |
D | OperationKinds.def | 165 /// CK_PointerToIntegral - Pointer to integral. A special kind of 185 /// CK_IntegralCast - A cast between integral types (other than to 200 /// CK_FloatingToIntegral - Floating point to integral. Rounds 255 /// \brief Converts from a floating complex to an integral complex. 259 /// \brief Converts from an integral real to an integral complex 265 /// \brief Converts an integral complex to an integral real of the 270 /// \brief Converts an integral complex to bool by comparing against 274 /// \brief Converts between different integral complex types. 279 /// \brief Converts from an integral complex to a floating complex.
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Betainc.pbtxt | 3 summary: "Compute the regularized incomplete beta integral \\\\(I_x(a, b)\\\\)." 5 The regularized incomplete beta integral is defined as:
|
/external/clang/test/SemaObjC/ |
D | objc-container-subscripting-2.m | 19 …indexing expression is invalid because subscript type 'float' is not an integral or Objective-C po… 20 …ndexing expression is invalid because subscript type 'double' is not an integral or Objective-C po…
|
D | arc-dict-bridged-cast.m | 31 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 32 …bscript type 'CFMutableStringRef' (aka 'struct __CFString *') is not an integral or Objective-C po…
|
D | objc-container-subscripting.m | 15 …Object = array[10]; // expected-error {{method index parameter type 'double' is not integral type}} 16 array[3] = 0; // expected-error {{method index parameter type 'void *' is not integral type}} \
|
D | format-strings-objc.m | 226 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 227 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 228 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 230 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 231 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 232 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | non-integral-pointers.ll | 14 ; inttoptr is fine here since addrspace(3) is integral. 24 ; integers, since pointers in address space 4 are non-integral. 39 ; integers, since pointers in address space 3 are integral.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SROA/ |
D | non-integral-pointers.ll | 4 ; casts from and to non-integral pointers. The "ni:4" bit in the 6 ; considered "non-integral".
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopIdiom/ |
D | non-integral-pointers.ll | 11 ; they're integral pointers. 33 ; they're non-integral pointers.
|
/external/u-boot/api/ |
D | README | 22 - the U-Boot integral part of the API is meant to be thin and non-intrusive, 43 - core API, integral part of U-Boot, mandatory
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CodeGenPrepare/ |
D | nonintegral.ll | 4 ; This target data layout is modified to have a non-integral addrspace(1), 32 ; Doing the inttoptr in the integral addrspace(0) followed by an explicit
|
/external/libxml2/ |
D | trionan.c | 409 double integral, fraction; 423 (fraction = modf(number, &integral), 424 integral == fraction)));
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 49 // integral literals. 149 Although enum values are integral, they may not be used directly as 361 When the subscript operand has an integral type, the expression is 364 element using an integral index, as in the following example: 377 When an expression writes an element using an integral index: 391 must be declared with an argument of integral type and a return value of 395 integral type. 460 Currently, only subscripts of integral or Objective-C object pointer 462 conversion function to an integral or Objective-C pointer type, in which
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1566 _PyNumber_ConvertIntegralToInt(PyObject *integral, const char* error_format) argument 1576 if (integral && !_PyAnyInt_Check(integral)) { 1579 PyObject *int_func = PyObject_GetAttr(integral, int_name); 1584 Py_DECREF(integral); 1585 integral = PyEval_CallObject(int_func, NULL); 1587 if (integral && !_PyAnyInt_Check(integral)) { 1591 return integral; 1594 if (PyInstance_Check(integral)) { 1595 type_name = PyString_AS_STRING(((PyInstanceObject *)integral) 1599 type_name = integral->ob_type->tp_name; [all …]
|
/external/clang/test/Lexer/ |
D | cxx1y_digit_separators.cpp | 8 namespace integral { namespace
|
/external/clang/test/SemaOpenCL/ |
D | unroll-hint.cl | 27 … // expected-error {{'opencl_unroll_hint' attribute requires a positive integral compile time cons…
|
/external/webrtc/webrtc/examples/androidapp/ |
D | ant.properties | 4 # integral to the build system of your project.
|
/external/clang/test/SemaCXX/ |
D | cxx0x-initializer-scalars.cpp | 38 namespace integral { namespace
|
/external/webrtc/webrtc/examples/androidtests/ |
D | ant.properties | 4 # integral to the build system of your project.
|