/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 119 assertArithmeticOK(const llvm::fltSemantics &semantics) { in assertArithmeticOK() argument 120 assert(semantics.arithmeticOK && in assertArithmeticOK() 591 semantics = ourSemantics; in initialize() 607 assert(semantics == rhs.semantics); in assign() 647 unsigned bitsToPreserve = semantics->precision - 1; in makeNaN() 655 unsigned QNaNBit = semantics->precision - 2; in makeNaN() 674 if (semantics == &APFloat::x87DoubleExtended) in makeNaN() 689 if (semantics != rhs.semantics) { in operator =() 691 initialize(rhs.semantics); in operator =() 703 if (semantics != rhs.semantics || in bitwiseIsEqual() [all …]
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 585 semantics = ourSemantics; in initialize() 601 assert(semantics == rhs.semantics); in assign() 639 unsigned bitsToPreserve = semantics->precision - 1; in makeNaN() 647 unsigned QNaNBit = semantics->precision - 2; in makeNaN() 666 if (semantics == &APFloat::x87DoubleExtended) in makeNaN() 681 if (semantics != rhs.semantics) { in operator =() 683 initialize(rhs.semantics); in operator =() 695 semantics = rhs.semantics; in operator =() 701 rhs.semantics = &Bogus; in operator =() 707 return isFiniteNonZero() && (exponent == semantics->minExponent) && in isDenormal() [all …]
|
/external/syslinux/gpxe/src/core/ |
D | open.c | 108 int xfer_open_socket ( struct xfer_interface *xfer, int semantics, in xfer_open_socket() argument 113 socket_semantics_name ( semantics ), in xfer_open_socket() 117 if ( ( opener->semantics == semantics ) && in xfer_open_socket() 124 "(%s,%s)\n", xfer, socket_semantics_name ( semantics ), in xfer_open_socket() 148 int semantics = va_arg ( args, int ); in xfer_vopen() local 152 return xfer_open_socket ( xfer, semantics, peer, local ); } in xfer_vopen()
|
D | resolv.c | 300 int semantics; member 359 named->semantics, sa, in named_resolv_done() 382 int xfer_open_named_socket ( struct xfer_interface *xfer, int semantics, in xfer_open_named_socket() argument 394 named->semantics = semantics; in xfer_open_named_socket()
|
/external/webrtc/talk/media/base/ |
D | streamparams.h | 62 : semantics(usage), ssrcs(ssrcs) {} in SsrcGroup() 65 return (semantics == other.semantics && ssrcs == other.ssrcs); 71 bool has_semantics(const std::string& semantics) const; 75 std::string semantics; // e.g FIX, FEC, SIM. member 117 bool has_ssrc_group(const std::string& semantics) const { in has_ssrc_group() 118 return (get_ssrc_group(semantics) != NULL); in has_ssrc_group() 120 const SsrcGroup* get_ssrc_group(const std::string& semantics) const { in get_ssrc_group() 123 if (it->has_semantics(semantics)) { in get_ssrc_group() 170 bool AddSecondarySsrc(const std::string& semantics, 173 bool GetSecondarySsrc(const std::string& semantics,
|
D | streamparams.cc | 118 return (semantics == semantics_in && ssrcs.size() > 0); in has_semantics() 124 ost << "semantics:" << semantics << ";"; in ToString() 185 bool StreamParams::AddSecondarySsrc(const std::string& semantics, in AddSecondarySsrc() argument 196 SsrcGroup ssrc_group = SsrcGroup(semantics, ssrc_vector); in AddSecondarySsrc() 201 bool StreamParams::GetSecondarySsrc(const std::string& semantics, in GetSecondarySsrc() argument 206 if (it->has_semantics(semantics) && in GetSecondarySsrc() 251 if (group.semantics.compare(kFidSsrcGroupSemantics) != 0 || in IsSimulcastStream()
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | socket.h | 39 socket_semantics_name ( int semantics ) { in socket_semantics_name() argument 41 if ( semantics == SOCK_STREAM ) { in socket_semantics_name() 43 } else if ( semantics == SOCK_DGRAM ) { in socket_semantics_name()
|
D | open.h | 72 int semantics; member 96 int semantics, struct sockaddr *peer, 98 extern int xfer_open_socket ( struct xfer_interface *xfer, int semantics,
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PthreadLockChecker.cpp | 67 bool isTryLock, enum LockingSemantics semantics) const; 126 enum LockingSemantics semantics) const { in AcquireLock() 163 switch (semantics) { in AcquireLock() 176 } else if (semantics == PthreadSemantics) { in AcquireLock() 183 assert((semantics == XNUSemantics) && "Unknown locking semantics"); in AcquireLock()
|
/external/webrtc/webrtc/p2p/base/ |
D | sessiondescription.h | 59 explicit ContentGroup(const std::string& semantics) : in ContentGroup() argument 60 semantics_(semantics) {} in ContentGroup() 62 const std::string& semantics() const { return semantics_; } in semantics() function
|
D | sessiondescription.cc | 192 if (iter->semantics() == name) { in RemoveGroupByName() 202 if (iter->semantics() == name) { in HasGroup() 213 if (iter->semantics() == name) { in GetGroupByName()
|
/external/selinux/secilc/docs/ |
D | cil_introduction.md | 17 * Be an intermediate language - provide rich semantics needed for cross-language interaction but no… 21 …hide the kernel policy. CIL should allow additional high-level language semantics but should not a… 57 …semantics as they currently do, CIL simply uses a different syntax for declaring and referencing t… 59 …semantics it is important to note that there are currently three separate policy languages in comm…
|
/external/clang/docs/ |
D | AutomaticReferenceCounting.rst | 16 * This is wrong from the semantics point of view, since it is an ordered 81 runtime which implements these new semantics. 247 ARC's semantics and restrictions. 273 varied transfer semantics. 288 Retain count semantics 309 :arc-term:`high-level semantics` is an intentionally vague term; the intent is 322 semantics to a computation history in which these sends are removed. Note that 333 When the semantics call for performing one of these operations on a retainable 336 All of the semantics described in this document are subject to additional 339 semantics describe the high-level behaviors that the compiler implements, not [all …]
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-02-13-Reference-Memory.txt | 21 an object, etc...) and more closely matches Java semantics. The 22 pointer type would be kept for C++ like semantics. Through analysis,
|
D | 2001-02-13-Reference-MemoryResponse.txt | 12 > an object, etc...) and more closely matches Java semantics. The 13 > pointer type would be kept for C++ like semantics. Through analysis,
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2001-02-13-Reference-Memory.txt | 21 an object, etc...) and more closely matches Java semantics. The 22 pointer type would be kept for C++ like semantics. Through analysis,
|
D | 2001-02-13-Reference-MemoryResponse.txt | 12 > an object, etc...) and more closely matches Java semantics. The 13 > pointer type would be kept for C++ like semantics. Through analysis,
|
/external/llvm/test/CodeGen/AArch64/ |
D | bitfield.ll | 14 ; moment, but it's still a good test to have and the semantics are 30 ; moment, but it's still a good test to have and the semantics are 46 ; moment, but it's still a good test to have and the semantics are 62 ; moment, but it's still a good test to have and the semantics are
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-02-23.data | 11 The semantics of the tag
|
/external/llvm/test/YAMLParser/ |
D | spec-02-23.test | 13 The semantics of the tag
|
/external/libvpx/libvpx/ |
D | usage.dox | 94 The semantics of how each error condition should be processed is clearly 117 returning. This is a soft deadline -- that is, the semantics of the 121 after 2000us. In this case the deadline is not met, but the semantics of the 127 and the semantics of the call are preserved, as before.
|
/external/pcre/dist2/m4/ |
D | pcre2_visibility.m4 | 14 dnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on 17 dnl dependent semantics.
|
/external/valgrind/docs/internals/ |
D | avx-notes.txt | 23 work I think because the host happens to have the same semantics.
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | lifetime.ll | 3 ; Test that a lifetime intrinsic isn't removed because that would change semantics
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APFloat.h | 320 const fltSemantics &getSemantics() const { return *semantics; } in getSemantics() 428 const fltSemantics *semantics; variable
|