HomeSort by relevance Sort by last modified time
    Searched full:bitset (Results 126 - 150 of 863) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCParser.java     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.cons/
string_ctor.pass.cpp 10 // test bitset(string, pos, n, zero, one);
12 #include <bitset>
24 std::bitset<N> v(str, str.size()+1, 10);
36 std::bitset<N> v(str, 2, 10);
46 std::bitset<N> v(str, 3, 10);
58 std::bitset<N> v(str, 2, 10, 'a', 'b');
68 std::bitset<N> v(str, 3, 10, 'a', 'b');
ull_ctor.pass.cpp 10 // test bitset(unsigned long long val);
12 #include <bitset>
21 _LIBCPP_CONSTEXPR std::bitset<N> v(0xAAAAAAAAAAAAAAAAULL);
char_ptr_ctor.pass.cpp 11 // explicit bitset(const charT* str,
15 #include <bitset>
26 std::bitset<N> v("xxx1010101010xxxx");
36 std::bitset<N> v(str);
  /external/bison/lib/
Makefile.am 35 abitset.c abitset.h bbitset.h bitset.c bitset.h bitset_stats.c \
39 # Additional bitset operations.
bitsetv.h 0 /* Bitset vectors.
23 #include "bitset.h"
25 typedef bitset * bitsetv;
  /libcore/benchmarks/src/benchmarks/regression/
BitSetBenchmark.java 21 import java.util.BitSet;
27 private BitSet bs;
30 bs = new BitSet(size);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
reset_one.pass.cpp 10 // test bitset<N>& reset(size_t pos);
12 #include <bitset>
21 std::bitset<N> v;
set_one.pass.cpp 10 // test bitset<N>& set(size_t pos, bool val = true);
12 #include <bitset>
18 std::bitset<N> v;
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11x.java 24 import java.util.BitSet;
73 public BitSet compatibleRegs(DalvInsn insn) {
75 BitSet bits = new BitSet(1);
Form21t.java 24 import java.util.BitSet;
78 public BitSet compatibleRegs(DalvInsn insn) {
80 BitSet bits = new BitSet(1);
Form22x.java 24 import java.util.BitSet;
75 public BitSet compatibleRegs(DalvInsn insn) {
77 BitSet bits = new BitSet(2);
Form23x.java 24 import java.util.BitSet;
77 public BitSet compatibleRegs(DalvInsn insn) {
79 BitSet bits = new BitSet(3);
Form31t.java 24 import java.util.BitSet;
77 public BitSet compatibleRegs(DalvInsn insn) {
79 BitSet bits = new BitSet(1);
Form32x.java 24 import java.util.BitSet;
74 public BitSet compatibleRegs(DalvInsn insn) {
76 BitSet bits = new BitSet(2);
  /external/bison/src/
Sbitset.h 1 /* A simple, memory-efficient bitset implementation.
61 /* NBITS is the size of the bitset. More than NBITS bits might be reset. */
67 /* NBITS is the size of the bitset. More than NBITS bits might be set. */
73 /* NBITS is the size of every bitset. More than NBITS bits might be set. */
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
bitset.h 26 * \file bitset.h
27 * \brief Bitset of arbitrary size definitions.
37 * generic bitset implementation
43 /* bitset declarations
48 /* bitset operations
82 /* Get first bit set in a bitset.
100 * 64-bit bitset implementation
106 /* bitset declarations
111 /* bitset operations
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11x.java 25 import java.util.BitSet;
74 public BitSet compatibleRegs(DalvInsn insn) {
76 BitSet bits = new BitSet(1);
Form21t.java 25 import java.util.BitSet;
79 public BitSet compatibleRegs(DalvInsn insn) {
81 BitSet bits = new BitSet(1);
Form22x.java 25 import java.util.BitSet;
76 public BitSet compatibleRegs(DalvInsn insn) {
78 BitSet bits = new BitSet(2);
Form23x.java 25 import java.util.BitSet;
78 public BitSet compatibleRegs(DalvInsn insn) {
80 BitSet bits = new BitSet(3);
Form31t.java 25 import java.util.BitSet;
78 public BitSet compatibleRegs(DalvInsn insn) {
80 BitSet bits = new BitSet(1);
Form32x.java 25 import java.util.BitSet;
75 public BitSet compatibleRegs(DalvInsn insn) {
77 BitSet bits = new BitSet(2);
  /external/mesa3d/src/mesa/main/
bitset.h 26 * \file bitset.h
27 * \brief Bitset of arbitrary size definitions.
37 * generic bitset implementation
43 /* bitset declarations
48 /* bitset operations
82 /* Get first bit set in a bitset.
100 * 64-bit bitset implementation
106 /* bitset declarations
111 /* bitset operations
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
233 BitSet& BitSet::operator|=(const BitSet &set)
242 bool BitSet::resize(unsigned int nBits)
263 bool BitSet::allocate(unsigned int nBits, bool zero)
283 unsigned int BitSet::popCount() const
293 void BitSet::fill(uint32_t val)
302 void BitSet::setOr(BitSet *pA, BitSet *pB
    [all...]

Completed in 1309 milliseconds

1 2 3 4 56 7 8 91011>>