Searched refs:m_flags (Results 1 - 25 of 133) sorted by relevance

123456

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSTypeInfo.h66 , m_flags(inlineTypeFlags)
71 ASSERT((m_flags & (ImplementsHasInstance | OverridesHasInstance)) != OverridesHasInstance);
73 if ((m_flags & (ImplementsHasInstance | OverridesHasInstance)) == ImplementsHasInstance)
74 m_flags |= ImplementsDefaultHasInstance;
84 unsigned flags() const { return (static_cast<unsigned>(m_flags2) << 8) | static_cast<unsigned>(m_flags); }
102 return OBJECT_OFFSETOF(TypeInfo, m_flags);
110 InlineTypeFlags inlineTypeFlags() const { return m_flags; }
116 bool isSetOnFlags1(unsigned flag) const { ASSERT(flag <= (1 << 7)); return m_flags & flag; }
120 unsigned char m_flags; member in class:JSC::TypeInfo
H A DSparseArrayValueMap.h93 return m_flags & SparseMode;
98 m_flags = static_cast<Flags>(m_flags | SparseMode);
103 return m_flags & LengthIsReadOnly;
108 m_flags = static_cast<Flags>(m_flags | LengthIsReadOnly);
131 Flags m_flags; member in class:JSC::SparseArrayValueMap
H A DRegExp.h54 bool global() const { return m_flags & FlagGlobal; }
55 bool ignoreCase() const { return m_flags & FlagIgnoreCase; }
56 bool multiline() const { return m_flags & FlagMultiline; }
60 bool isValid() const { return !m_constructionError && m_flags != InvalidFlags; }
85 RegExpKey key() { return RegExpKey(m_flags, m_patternString); }
116 RegExpFlags m_flags; member in class:JSC::RegExp
H A DCodeCache.h68 , m_flags((codeType << 2) | jsParserStrictness)
94 && m_flags == other.m_flags
102 unsigned m_flags; member in class:JSC::SourceCodeKey
/macosx-10.10/WebCore-7600.1.25/platform/mock/mediasource/
H A DMockBox.h131 uint8_t flags() const { return m_flags; }
140 bool isSync() const { return m_flags & IsSync; }
141 bool isCorrupted() const { return m_flags & IsCorrupted; }
142 bool isDropped() const { return m_flags & IsDropped; }
143 bool isDelayed() const { return m_flags & IsDelayed; }
150 uint8_t m_flags; member in class:WebCore::final
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DShareableBitmap.cpp38 : m_flags(0)
46 encoder << m_flags; local
55 if (!decoder.decode(handle.m_flags))
64 m_flags = Flag::NoFlags;
106 return create(handle.m_size, handle.m_flags, sharedMemory.release());
116 handle.m_flags = m_flags;
122 , m_flags(flags)
129 , m_flags(flags)
H A DShareableBitmap.h75 Flags m_flags; member in class:WebKit::ShareableBitmap::Handle
150 Flags m_flags; member in class:WebKit::ShareableBitmap
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/coordinated/
H A DCoordinatedSurface.cpp48 , m_flags(flags)
H A DCoordinatedSurface.h64 Flags flags() const { return m_flags; }
67 Flags m_flags; member in class:WebCore::CoordinatedSurface
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGVariableAccessData.h206 NodeFlags flags() const { return m_flags; }
210 return checkAndSet(m_flags, m_flags | newFlags);
234 NodeFlags m_flags;
H A DDFGNode.h240 ASSERT(!(m_flags & NodeHasVarArgs));
256 ASSERT(!(m_flags & NodeHasVarArgs));
271 ASSERT(!(m_flags & NodeHasVarArgs));
287 ASSERT(!(m_flags & NodeHasVarArgs));
302 ASSERT(!(m_flags & NodeHasVarArgs));
317 ASSERT(m_flags & NodeHasVarArgs);
321 NodeFlags flags() const { return m_flags; }
333 m_flags = flags;
339 NodeFlags newFlags = m_flags | flags;
340 if (newFlags == m_flags)
1729 unsigned m_flags : 22; member in struct:JSC::DFG::Node
[all...]
H A DDFGVariableAccessData.cpp37 , m_flags(0)
54 , m_flags(0)
/macosx-10.10/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DOpenSyscall.cpp110 , m_flags(0)
117 m_flags = context->gregs[REG_ARG1];
141 if (m_flags & O_RDWR)
143 else if (m_flags & O_WRONLY)
149 if (m_flags & O_CREAT || m_flags & O_EXCL)
158 int fd = open(m_path.data(), m_flags, m_mode);
168 encoder << m_flags; local
178 if (!decoder->decode(m_flags))
H A DOpenSyscall.h49 void setFlags(const int flags) { m_flags = flags; };
60 int m_flags; member in class:WebKit::OpenSyscall
/macosx-10.10/smb-759.0/lib/smb/
H A Dmbuf.c43 uint32_t m_flags; member in struct:smb_mbuf
74 if (mbuf->m_flags & M_EXT) {
161 (*mbuf)->m_flags |= M_PKTHDR | M_EOR;
207 (*mbuf)->m_flags |= M_PKTHDR | M_EOR;
250 (*mbuf)->m_flags = M_EXT | M_PKTHDR | M_EOR;
382 if (mbuf->m_flags & M_EOR) {
383 mbuf->m_flags &= ~M_EOR;
384 next->m_flags |=M_EOR;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/surfaces/efl/
H A DGraphicsSurfaceCommon.cpp45 : m_flags(0)
51 m_flags |= TextureMapperGL::ShouldBlend;
127 TextureMapperGL::Flags flags() const { return m_flags; }
143 m_client = GLTransportSurfaceClient::createTransportSurfaceClient(m_sharedHandle, m_size, m_flags & TextureMapperGL::ShouldBlend);
149 TextureMapperGL::Flags m_flags; member in struct:WebCore::GraphicsSurfacePrivate
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapper.h62 : m_flags(0)
74 inline Flags flags() const { return m_flags; }
80 m_flags = flags;
88 inline bool isOpaque() const { return !(m_flags & SupportsAlpha); }
98 Flags m_flags; member in class:WebCore::BitmapTexture
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkpi_mbuf.c60 if (mbuf->m_flags & M_EXT)
62 if (mbuf->m_flags & M_PKTHDR)
82 if ((mbuf->m_flags & M_EXT) != 0 && m_mclhasreference(mbuf))
211 if (*mbuf == NULL || ((*mbuf)->m_flags & M_EXT) == 0)
240 if (created && ((*mbuf)->m_flags & M_EXT) == 0) {
244 if (*mbuf == NULL || ((*mbuf)->m_flags & M_EXT) == 0)
422 if ((mbuf->m_flags & M_EXT))
466 if (mbuf->m_flags & M_EXT)
488 return (mbuf->m_flags & mbuf_flags_mask);
495 mbuf_flags_t oflags = mbuf->m_flags;
[all...]
H A Duipc_mbuf2.c166 else if ((m->m_flags & M_EXT) != 0) {
196 else if ((m->m_flags & M_EXT) != 0) {
294 if ((n->m_flags & M_EXT) == 0)
336 if ((o->m_flags & M_EXT) == 0) {
406 VERIFY(m->m_flags & M_TAGHDR && !(m->m_flags & M_EXT));
449 m->m_flags |= M_TAGHDR;
496 VERIFY(m->m_flags & M_TAGHDR);
532 VERIFY(m->m_flags & M_PKTHDR);
552 VERIFY(m->m_flags
[all...]
H A Duipc_socket2.c747 if (sb->sb_lastrecord != NULL && (sb->sb_mbtail->m_flags & M_EOR))
750 if (sb->sb_flags & SB_RECV && !(m && m->m_flags & M_SKIPCFIL)) {
765 m->m_flags &= ~M_SKIPCFIL;
799 if (sb->sb_flags & SB_RECV && !(m && m->m_flags & M_SKIPCFIL)) {
814 m->m_flags &= ~M_SKIPCFIL;
848 if (m->m_flags & M_EXT)
931 if (sb->sb_flags & SB_RECV && !(m0 && m0->m_flags & M_SKIPCFIL)) {
947 m0->m_flags &= ~M_SKIPCFIL;
965 if (m && (m0->m_flags & M_EOR)) {
966 m0->m_flags
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/CoordinatedGraphics/
H A DWebCoordinatedSurface.cpp44 encoder << m_size << m_flags; local
57 if (!decoder.decode(handle.m_flags))
153 if (handle.m_flags & SupportsAlpha)
157 return adoptRef(new WebCoordinatedSurface(handle.m_size, handle.m_flags, surface.release()));
165 return create(handle.m_size, handle.m_flags, bitmap.release());
171 handle.m_flags = m_flags;
/macosx-10.10/xnu-2782.1.97/bsd/netinet6/
H A Dah_input.c331 m->m_flags |= M_AUTHIPHDR;
332 m->m_flags |= M_AUTHIPDGM;
359 m->m_flags &= ~M_AUTHIPHDR;
360 m->m_flags &= ~M_AUTHIPDGM;
365 m->m_flags &= ~M_AUTHIPHDR;
366 m->m_flags &= ~M_AUTHIPDGM;
371 if (m->m_flags & M_AUTHIPHDR
372 && m->m_flags & M_AUTHIPDGM) {
463 m->m_flags &= ~M_AUTHIPHDR;
464 m->m_flags
[all...]
/macosx-10.10/ppp-786.1.1/Controller/
H A Dppp_msg.h41 u_int16_t m_flags; // special flags member in struct:ppp_msg_hdr
50 u_int16_t m_flags; // special flags member in struct:ppp_msg
106 #define MSG_DATAOFF(msg) (((struct ppp_msg_hdr *)msg)->m_flags & USE_SERVICEID ? ((struct ppp_msg_hdr *)msg)->m_link : 0)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/surfaces/
H A DGraphicsSurface.h75 Flags flags() const { return m_flags; }
111 Flags m_flags; member in class:WebCore::GraphicsSurface
/macosx-10.10/WebKit2-7600.1.25/Shared/cg/
H A DShareableBitmapCG.cpp56 bitmapInfo(m_flags), releaseBitmapContextData, this));
94 RetainPtr<CGImageRef> image = adoptCF(CGImageCreate(m_size.width(), m_size.height(), 8, 32, m_size.width() * 4, colorSpace.get(), bitmapInfo(m_flags), dataProvider, 0, false, kCGRenderingIntentDefault));

Completed in 225 milliseconds

123456