forked from dotnet/coreclr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitsetops.h
36 lines (34 loc) · 923 Bytes
/
bitsetops.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
BSOPNAME(BSOP_Assign)
BSOPNAME(BSOP_AssignAllowUninitRhs)
BSOPNAME(BSOP_AssignNocopy)
BSOPNAME(BSOP_ClearD)
BSOPNAME(BSOP_MakeSingleton)
BSOPNAME(BSOP_MakeEmpty)
BSOPNAME(BSOP_MakeFull)
BSOPNAME(BSOP_MakeCopy)
BSOPNAME(BSOP_IsEmpty)
BSOPNAME(BSOP_Count)
BSOPNAME(BSOP_RemoveElemD)
BSOPNAME(BSOP_RemoveElem)
BSOPNAME(BSOP_AddElemD)
BSOPNAME(BSOP_AddElem)
BSOPNAME(BSOP_UnionD)
BSOPNAME(BSOP_Union)
BSOPNAME(BSOP_IntersectionD)
BSOPNAME(BSOP_Intersection)
BSOPNAME(BSOP_IsEmptyIntersection)
BSOPNAME(BSOP_DiffD)
BSOPNAME(BSOP_Diff)
BSOPNAME(BSOP_IsMember)
BSOPNAME(BSOP_IsNotMember)
BSOPNAME(BSOP_NoBitsAbove)
BSOPNAME(BSOP_LeftShiftSingletonByOneD)
BSOPNAME(BSOP_IsSubset)
BSOPNAME(BSOP_Equal)
BSOPNAME(BSOP_NotEqual)
BSOPNAME(BSOP_NextBit)
BSOPNAME(BSOP_ToString)