Home
last modified time | relevance | path

Searched refs:integral (Results 1 – 25 of 200) sorted by relevance

12345678

/external/freetype/src/psaux/
Dpsconv.c203 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/
Dnon-integral-pointers.ll6 ; 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/
DPluralSnapshot.java75 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/
Datomic133 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/
DMain.py64 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/
Dfixed1616.h34 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/
DOperationKinds.def165 /// 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/
Dapi_def_Betainc.pbtxt3 summary: "Compute the regularized incomplete beta integral \\\\(I_x(a, b)\\\\)."
5 The regularized incomplete beta integral is defined as:
/external/clang/test/SemaObjC/
Dobjc-container-subscripting-2.m19 …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…
Darc-dict-bridged-cast.m31 …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…
Dobjc-container-subscripting.m15 …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}} \
Dformat-strings-objc.m226 …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/
Dnon-integral-pointers.ll14 ; 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/
Dnon-integral-pointers.ll4 ; 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/
Dnon-integral-pointers.ll11 ; they're integral pointers.
33 ; they're non-integral pointers.
/external/u-boot/api/
DREADME22 - 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/
Dnonintegral.ll4 ; 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/
Dtrionan.c409 double integral, fraction;
423 (fraction = modf(number, &integral),
424 integral == fraction)));
/external/clang/docs/
DObjectiveCLiterals.rst49 // 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/
Dabstract.c1566 _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/
Dcxx1y_digit_separators.cpp8 namespace integral { namespace
/external/clang/test/SemaOpenCL/
Dunroll-hint.cl27 … // expected-error {{'opencl_unroll_hint' attribute requires a positive integral compile time cons…
/external/webrtc/webrtc/examples/androidapp/
Dant.properties4 # integral to the build system of your project.
/external/clang/test/SemaCXX/
Dcxx0x-initializer-scalars.cpp38 namespace integral { namespace
/external/webrtc/webrtc/examples/androidtests/
Dant.properties4 # integral to the build system of your project.

12345678