/external/freetype/src/psaux/ |
D | psconv.c | 199 FT_Fixed integral = 0; in PS_Conv_ToFixed() local 224 integral = PS_Conv_ToInt( &p, limit ); in PS_Conv_ToFixed() 229 if ( integral > 0x7FFF ) in PS_Conv_ToFixed() 232 integral = (FT_Fixed)( (FT_UInt32)integral << 16 ); in PS_Conv_ToFixed() 258 if ( !integral && power_ten > 0 ) in PS_Conv_ToFixed() 291 if ( !integral && !decimal ) in PS_Conv_ToFixed() 301 if ( integral >= 0xCCCCCCCL ) in PS_Conv_ToFixed() 303 integral *= 10; in PS_Conv_ToFixed() 319 integral /= 10; in PS_Conv_ToFixed() 325 if ( !integral && !decimal ) in PS_Conv_ToFixed() [all …]
|
/external/pdfium/third_party/freetype/src/psaux/ |
D | psconv.c | 199 FT_Fixed integral = 0; in PS_Conv_ToFixed() local 224 integral = PS_Conv_ToInt( &p, limit ); in PS_Conv_ToFixed() 229 if ( integral > 0x7FFF ) in PS_Conv_ToFixed() 232 integral = (FT_Fixed)( (FT_UInt32)integral << 16 ); in PS_Conv_ToFixed() 258 if ( !integral && power_ten > 0 ) in PS_Conv_ToFixed() 291 if ( !integral && !decimal ) in PS_Conv_ToFixed() 301 if ( integral >= 0xCCCCCCCL ) in PS_Conv_ToFixed() 303 integral *= 10; in PS_Conv_ToFixed() 319 integral /= 10; in PS_Conv_ToFixed() 325 if ( !integral && !decimal ) in PS_Conv_ToFixed() [all …]
|
/external/libcxx/include/ |
D | atomic | 128 struct atomic<integral> 132 void store(integral desr, memory_order m = memory_order_seq_cst) volatile noexcept; 133 void store(integral desr, memory_order m = memory_order_seq_cst) noexcept; 134 integral load(memory_order m = memory_order_seq_cst) const volatile noexcept; 135 integral load(memory_order m = memory_order_seq_cst) const noexcept; 136 operator integral() const volatile noexcept; 137 operator integral() const noexcept; 138 integral exchange(integral desr, 140 integral exchange(integral desr, memory_order m = memory_order_seq_cst) noexcept; 141 bool compare_exchange_weak(integral& expc, integral desr, [all …]
|
/external/parameter-framework/test/test-fixed-point-parameter/ |
D | Main.py | 62 def __init__(self, pfwClient, size, integral, fractional): argument 64 self._paramPath = '/Test/test/%d/q%d.%d' % (size, integral, fractional) 73 self._upperAllowedBound = (2 ** integral) - self._quantum 78 self._lowerAllowedBound = -(2 ** integral) 238 for integral in range(0, size): 239 for fractional in range (0, size - integral): 240 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/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 | 225 …ubscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C po… 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… 229 …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…
|
D | enum-fixed-type.m | 40 typedef enum : BaseEnum { DerivedElem } DerivedEnum; // expected-error {{non-integral type 'BaseEnu…
|
/external/libvorbis/doc/ |
D | vorbis-clip.txt | 24 limited to streams that contain an integral number of packets. 37 necessarily contain integral numbers of packets, but that isn't 55 File length a non-integral number of frames: 58 integral number of packets; such a file is encoded with the last 85 Beginning point not on integral packet boundary: 89 really begins after an integral packet boundary, a situation analagous 91 integral packet boundary. The easiest example is taking a clip out of
|
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/ |
D | AbstractConnector-mbean.properties | 17 integralPort: Port to use for integral redirections. 18 integralScheme: Scheme to use for integral redirections.
|
D | Connector-mbean.properties | 7 integralPort: Port to use for integral redirections 8 integralScheme: Scheme to use for integral redirections
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 49 // integral literals. 143 Although enum values are integral, they may not be used directly as 319 When the subscript operand has an integral type, the expression is 322 element using an integral index, as in the following example: 335 When an expression writes an element using an integral index: 349 must be declared with an argument of integral type and a return value of 353 integral type. 418 Currently, only subscripts of integral or Objective-C object pointer 420 conversion function to an integral or Objective-C pointer type, in which
|
/external/libxml2/ |
D | trionan.c | 409 double integral, fraction; 423 (fraction = modf(number, &integral), 424 integral == fraction)));
|
/external/clang/test/Lexer/ |
D | cxx1y_digit_separators.cpp | 8 namespace integral { namespace
|
/external/clang/test/SemaCXX/ |
D | cxx0x-initializer-scalars.cpp | 38 namespace integral { namespace
|
D | constant-expression-cxx11.cpp | 307 expected-warning {{not an integral constant expression}} \ 310 expected-warning {{not an integral constant expression}} \ 313 expected-warning {{not an integral constant expression}} \ 316 expected-warning {{not an integral constant expression}} \ 319 expected-warning {{not an integral constant expression}} \ 322 expected-warning {{not an integral constant expression}} \ 325 expected-warning {{not an integral constant expression}} \ 533 expected-error {{static_assert expression is not an integral constant expression}} \
|
/external/robolectric/ |
D | build.properties | 4 # integral to the build system of your project.
|
/external/clang/test/SemaObjCXX/ |
D | objc-container-subscripting.mm | 35 …ndexing expression is invalid because subscript type 'double' is not an integral or Objective-C po… 36 …ndexing expression is invalid because subscript type 'double' is not an integral or Objective-C po…
|
/external/libmtp/m4/ |
D | stdint.m4 | 665 /* Minimum of signed integral types. */ 670 /* Maximum of signed integral types. */ 676 /* Maximum of unsigned integral types. */ 682 /* Minimum of signed integral types having a minimum size. */ 687 /* Maximum of signed integral types having a minimum size. */ 693 /* Maximum of unsigned integral types having a minimum size. */
|
/external/libexif/m4m/ |
D | stdint.m4 | 667 /* Minimum of signed integral types. */ 672 /* Maximum of signed integral types. */ 678 /* Maximum of unsigned integral types. */ 684 /* Minimum of signed integral types having a minimum size. */ 689 /* Maximum of signed integral types having a minimum size. */ 695 /* Maximum of unsigned integral types having a minimum size. */
|
/external/clang/include/clang/AST/ |
D | BuiltinTypes.def | 21 // SIGNED_TYPE(Id, SingletonId) - A signed integral type. 23 // UNSIGNED_TYPE(Id, SingletonId) - An unsigned integral type.
|
/external/androidplot/Examples/DemoApp/ |
D | ant.properties | 32 # integral to the build system of your project.
|
/external/clang/test/Rewriter/ |
D | objc-modern-numeric-literal.mm | 41 // integral literals.
|