| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| bit.h | 24 #define DNS_BIT_SET(bit, bitset) (*(bitset) |= ((dns_bitset_t)1 << (bit))) 25 #define DNS_BIT_CLEAR(bit, bitset) (*(bitset) &= ~((dns_bitset_t)1 << (bit))) 26 #define DNS_BIT_CHECK(bit, bitset) \ 27 ((*(bitset) & ((dns_bitset_t)1 << (bit))) == ((dns_bitset_t)1 << (bit)))
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| bit.h | 25 #define DNS_BIT_SET(bit, bitset) (*(bitset) |= ((dns_bitset_t)1 << (bit))) 26 #define DNS_BIT_CLEAR(bit, bitset) (*(bitset) &= ~((dns_bitset_t)1 << (bit))) 27 #define DNS_BIT_CHECK(bit, bitset) \ 28 ((*(bitset) & ((dns_bitset_t)1 << (bit))) == ((dns_bitset_t)1 << (bit)))
|
| /src/external/gpl3/binutils/lib/libopcodes/arch/sh3eb/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/binutils/lib/libopcodes/arch/sh3el/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/binutils.old/lib/libopcodes/arch/sh3eb/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/binutils.old/lib/libopcodes/arch/sh3el/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/gdb/lib/libopcodes/arch/sh3eb/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/gdb/lib/libopcodes/arch/sh3el/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/gdb.old/lib/libopcodes/arch/sh3eb/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl3/gdb.old/lib/libopcodes/arch/sh3el/ |
| defs.mk | 6 G_BFD_MACHINES=sh-dis.lo cgen-bitset.lo
|
| /src/external/gpl2/xcvs/dist/lib/ |
| regex_internal.h | 153 /* Maximum value of a bitset word. It must be useful in preprocessor 157 /* Number of bits in a bitset word. Avoid greater-than-32-bit 185 /* Number of bitset words in a bitset. */ 188 typedef bitset_word bitset[BITSET_WORDS]; typedef 749 bitset word_char; 789 /* Inline functions for bitset operation. */ 792 bitset_set (bitset set, Idx i) 798 bitset_clear (bitset set, Idx i) 804 bitset_contain (const bitset set, Idx i [all...] |
| /src/sys/arch/evbarm/g42xxeb/ |
| g42xxeb_kmkbd.c | 369 * returns bitset of keys being pressed. 415 kmkbd_report(struct kmkbd_softc *sc, u_int bitset) 420 if (bitset == sc->notified_bits) 423 if (sc->notified_bits && bitset == 0){ 429 changed = bitset ^ sc->notified_bits; 436 (bitset & (1<<i)) ? WSCONS_EVENT_KEY_DOWN : WSCONS_EVENT_KEY_UP, 440 sc->notified_bits = bitset; 445 kmkbd_report_raw(struct kmkbd_softc *sc, u_int bitset) 451 if (bitset == sc->notified_bits) 455 changed = bitset ^ sc->notified_bits [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| InstructionSelector.h | 28 #include <bitset> 50 /// This is convenient because std::bitset does not have a constructor 61 class PredicateBitsetImpl : public std::bitset<MaxPredicates> { 66 PredicateBitsetImpl(const std::bitset<MaxPredicates> &B) 67 : std::bitset<MaxPredicates>(B) {} 71 std::bitset<MaxPredicates>::set(I);
|
| /src/external/apache2/llvm/dist/clang/INPUTS/ |
| all-std-headers.cpp | 2 #include <bitset>
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/FileCheck/ |
| FileCheck.h | 20 #include <bitset> 80 std::bitset<FileCheckKindModifier::Size> Modifiers;
|
| /src/external/bsd/nsd/dist/ |
| Makefile.in | 98 COMMON_OBJ=answer.o axfr.o ixfr.o ixfrcreate.o buffer.o configlexer.o configparser.o dname.o dns.o edns.o iterated_hash.o lookup3.o namedb.o nsec3.o options.o packet.o query.o rbtree.o radtree.o rdata.o region-allocator.o rrl.o siphash.o tsig.o tsig-openssl.o udb.o util.o bitset.o popen3.o proxy_protocol.o 503 $(srcdir)/dname.h $(srcdir)/buffer.h $(srcdir)/region-allocator.h $(srcdir)/util.h $(srcdir)/bitset.h $(srcdir)/radtree.h $(srcdir)/rbtree.h \ 506 $(srcdir)/buffer.h $(srcdir)/region-allocator.h $(srcdir)/util.h $(srcdir)/bitset.h $(srcdir)/query.h $(srcdir)/namedb.h $(srcdir)/dname.h \ 508 bitset.o: $(srcdir)/bitset.c config.h $(srcdir)/compat/cpuset.h $(srcdir)/bitset.h 510 $(srcdir)/util.h $(srcdir)/bitset.h 514 $(srcdir)/region-allocator.h $(srcdir)/rbtree.h $(srcdir)/util.h $(srcdir)/bitset.h $(srcdir)/dname.h $(srcdir)/buffer.h $(srcdir)/dns.h \ 518 $(srcdir)/buffer.h $(srcdir)/region-allocator.h $(srcdir)/util.h $(srcdir)/bitset.h $(srcdir)/radtree.h $(srcdir)/rbtree.h $(srcdir)/options.h \ 522 $(srcdir)/region-allocator.h $(srcdir)/util.h $(srcdir)/bitset.h $(srcdir)/dns.h $(srcdir)/radtree.h $(srcdir)/rbtree.h $(srcdir)/udb.h [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/ |
| BlockVerifier.h | 18 #include <bitset>
|
| /src/external/bsd/nsd/lib/libnsd/ |
| Makefile | 14 bitset.c \
|
| /src/sys/kern/ |
| sys_futex.c | 781 * futex_wait_init(fw, bitset) 789 futex_wait_init(struct futex_wait *fw, int bitset) 792 KASSERT(bitset); 797 fw->fw_bitset = bitset; 1000 * futex_wake(f, nwake, f2, nrequeue, bitset) 1002 * Wake up to nwake waiters on f matching bitset; then, if f2 is 1004 * bitset to f2. Return the number of waiters actually woken or 1009 unsigned nrequeue, int bitset) 1020 if ((fw->fw_bitset & bitset) == 0) 1049 if ((fw->fw_bitset & bitset) == 0 1679 const int bitset = FUTEX_BITSET_MATCH_ANY; local 1686 const int bitset = FUTEX_BITSET_MATCH_ANY; local 1692 const int bitset = val3; local 1707 const int bitset = val3; local [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/precompiled/ |
| stdc++.h | 66 #include <bitset>
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86LoadValueInjectionRetHardening.cpp | 30 #include <bitset>
|
| /src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| TextStubCommon.h | 50 static void bitset(IO &, MachO::ArchitectureSet &);
|
| /src/external/cddl/osnet/dist/uts/common/sys/ |
| cpupart.h | 36 #include <sys/bitset.h> 128 * Each partition contains a bitset that indicates which CPUs are halted and
|
| /src/external/gpl2/lvm2/lib/libdevmapper/ |
| Makefile | 26 SRCS+= bitset.c hash.c list.c libdm-common.c libdm-file.c \
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| memory_resource.cc | 309 // Simple bitset with runtime size. 311 struct bitset struct in namespace:__anon14869 319 // The bitset does not own p 320 bitset(void* p, size_type num_blocks) function in struct:__anon14869::bitset 333 bitset() = default; 334 ~bitset() = default; 353 // For a bitset with size() > (max_blocks_per_chunk() - 64) we will 441 void swap(bitset& b) noexcept 455 // Maximum value that can be stored in bitset::_M_size member (approx 500k) 459 // Maximum value that can be stored in bitset::_M_next_word member (8191) [all...] |