Home
last modified time | relevance | path

Searched refs:semantics (Results 1 – 25 of 132) sorted by relevance

123456

/external/llvm/lib/Support/
DAPFloat.cpp120 assertArithmeticOK(const llvm::fltSemantics &semantics) { in assertArithmeticOK() argument
121 assert(semantics.arithmeticOK && in assertArithmeticOK()
592 semantics = ourSemantics; in initialize()
608 assert(semantics == rhs.semantics); in assign()
648 unsigned bitsToPreserve = semantics->precision - 1; in makeNaN()
656 unsigned QNaNBit = semantics->precision - 2; in makeNaN()
675 if (semantics == &APFloat::x87DoubleExtended) in makeNaN()
690 if (semantics != rhs.semantics) { in operator =()
692 initialize(rhs.semantics); in operator =()
704 if (semantics != rhs.semantics || in bitwiseIsEqual()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DPthreadLockChecker.cpp39 bool isTryLock, enum LockingSemantics semantics) const;
97 enum LockingSemantics semantics) const { in AcquireLock()
129 switch (semantics) { in AcquireLock()
142 } else if (semantics == PthreadSemantics) { in AcquireLock()
149 assert((semantics == XNUSemantics) && "Unknown locking semantics"); in AcquireLock()
/external/llvm/docs/HistoricalNotes/
D2001-02-13-Reference-Memory.txt21 an object, etc...) and more closely matches Java semantics. The
22 pointer type would be kept for C++ like semantics. Through analysis,
D2001-02-13-Reference-MemoryResponse.txt12 > an object, etc...) and more closely matches Java semantics. The
13 > pointer type would be kept for C++ like semantics. Through analysis,
D2001-02-09-AdveComments.txt21 semantics). It should simplify building the CFG and my guess is it could
107 What is the semantics of the IA64 stop bit?
D2001-07-06-LoweringIRForCodeGen.txt16 processor but have VM semantics otherwise, i.e., all operands are in SSA
/external/llvm/test/YAMLParser/
Dspec-02-23.data13 The semantics of the tag
/external/v8/test/sputnik/
Dsputnik.status150 # These tests check for ES3 semantics, and differ from ES5.
151 # When we follow ES5 semantics, it's ok to fail the test.
208 # Invalid test case (recent change adding var changes semantics)
212 # Invalid test case (recent change adding var changes semantics)
214 # Invalid test case (recent change adding var changes semantics)
/external/llvm/include/llvm/ADT/
DAPFloat.h320 const fltSemantics &getSemantics() const { return *semantics; } in getSemantics()
437 const fltSemantics *semantics; variable
/external/clang/test/Rewriter/
Dfinally.m7 …return(0); // expected-warning{{rewriter doesn't support user-specified control flow semantics for…
/external/bison/m4/
Dextensions.m49 # have a macro AC_USE_SYSTEM_EXTENSIONS with identical semantics.
/external/valgrind/main/
Ddarwin10.supp40 # unavoidable due to BSD setenv() semantics.
/external/valgrind/main/VEX/
DTODO.txt49 write API doc, clarify IR semantics
/external/llvm/test/Transforms/InstCombine/
D2004-01-13-InstCombineInvokePHI.ll4 ; used by the PHI instruction. This is bad: because of the semantics of the
/external/bluetooth/glib/glib/gnulib/
DREADME37 C99 return value semantics.
/external/mesa3d/src/glsl/glcpp/
DREADME9 This specification is not precise on some semantics, (for example,
/external/libusb-compat/
Dconfigure.ac52 # Restore gnu89 inline semantics on gcc 4.3 and newer
/external/clang/test/SemaObjCXX/
Darc-0x.mm3 // "Move" semantics, trivial version.
/external/libvpx/
Dusage.dox91 The semantics of how each error condition should be processed is clearly
114 returning. This is a soft deadline -- that is, the semantics of the
118 after 2000us. In this case the deadline is not met, but the semantics of the
124 and the semantics of the call are preserved, as before.
/external/bluetooth/glib/
Dacinclude.m43 dnl Check whether there is a vsnprintf() function with C99 semantics installed.
51 with semantics as specified by the ISO C99 standard.])
58 dnl Check whether there is a snprintf() function with C99 semantics installed.
104 with semantics as specified by the ISO C99 standard.])
/external/bluetooth/glib/docs/reference/glib/
Dcross.sgml187 semantics. (C99 semantics means returning the number of bytes
/external/iproute2/doc/actions/
Dgact-usage11 ACTION semantics
/external/clang/include/clang/Driver/
DCC1AsOptions.td38 "Note this may change .s semantics, it should almost never be used "
/external/stlport/stlport/
Dbitset36 // The C++ standard does not define the precise semantics of operator[].
/external/clang/lib/AST/
DExpr.cpp3317 ArrayRef<Expr*> semantics, in Create() argument
3320 assert(semantics.size() && "no semantic expressions!"); in Create()
3328 assert(resultIndex < semantics.size()); in Create()
3329 type = semantics[resultIndex]->getType(); in Create()
3330 VK = semantics[resultIndex]->getValueKind(); in Create()
3331 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary); in Create()
3335 (1 + semantics.size()) * sizeof(Expr*), in Create()
3337 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics, in Create()
3342 Expr *syntax, ArrayRef<Expr*> semantics, in PseudoObjectExpr() argument
3346 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1; in PseudoObjectExpr()
[all …]

123456