HomeSort by relevance Sort by last modified time
    Searched full:bitset (Results 201 - 225 of 867) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form51l.java 28 import java.util.BitSet;
86 public BitSet compatibleRegs(DalvInsn insn) {
88 BitSet bits = new BitSet(1);
Form52c.java 28 import java.util.BitSet;
94 public BitSet compatibleRegs(DalvInsn insn) {
96 BitSet bits = new BitSet(2);
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 22 u_int8_t operation; /* bitset of operations */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedSetException.as 31 public var expecting:BitSet;
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedSetException.java 31 public BitSet expecting;
36 public MismatchedSetException(BitSet expecting, IntStream input) {
  /external/bison/src/
ielr.h 23 #include <bitset.h>
44 bitset **item_lookahead_sets);
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter.h 8 #include <bitset>
60 std::bitset<MAX_FINGERS> altered_slots_;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
DeadCodeRemover.java 29 import java.util.BitSet;
49 private final BitSet worklist;
73 worklist = new BitSet(regCount);
182 private boolean isCircularNoSideEffect(int regV, BitSet set) {
194 set = new BitSet(regCount);
235 BitSet noSideEffectRegs;
241 * @param noSideEffectRegs to-build bitset of regs that are
244 public NoSideEffectVisitor(BitSet noSideEffectRegs) {
SetFactory.java 34 * A value of 3072 here is somewhere around 1.125mb of total bitset size.
42 * A value of 3072 here is somewhere around 1.125mb of total bitset size.
51 * The total size of a bitset for this would be the count of blocks
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 42 import java.util.BitSet;
64 BitSet registers = new BitSet(registerCount);
94 private void addArgsRegs(BitSet registers) {
134 private void addMergeRegs(BitSet registers, int registerCount) {
158 private void addParamRegs(BitSet registers, int registerCount) {
168 private boolean writeFullMergeRegs(IndentingWriter writer, BitSet registers, int registerCount)
236 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.hash/
bitset.pass.cpp 21 #include <bitset>
29 typedef std::bitset<N> T;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
all.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
any.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
none.pass.cpp 12 #include <bitset>
18 std::bitset<N> v;
to_string.pass.cpp 24 #include <bitset>
32 std::bitset<N>
35 std::bitset<N> v;
45 std::bitset<N> v = make_bitset<N>();
80 std::bitset<N> v = make_bitset<N>();
115 std::bitset<N> v = make_bitset<N>();
  /external/llvm/include/llvm/Support/
Debug.h 63 /// DEBUG_WITH_TYPE("bitset", dbgs() << "Bitset contains: " << Bitset << "\n");
66 /// is not specified, or is specified as "bitset".
95 // DEBUG(dbgs() << "Bitset contains: " << Bitset << "\n");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 56 //public List<BitSet> following;
57 public BitSet[] following;
152 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
153 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
163 following = (BitSet[])state.following.Clone();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 58 //public List<BitSet> following;
59 public BitSet[] following;
155 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
156 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
167 following = (BitSet[])state.following.Clone();
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 24 import java.util.BitSet;
254 public BitSet allowedKeyManagement;
260 public BitSet allowedProtocols;
266 public BitSet allowedAuthAlgorithms;
272 public BitSet allowedPairwiseCiphers;
278 public BitSet allowedGroupCiphers;
336 allowedKeyManagement = new BitSet();
337 allowedProtocols = new BitSet();
338 allowedAuthAlgorithms = new BitSet();
339 allowedPairwiseCiphers = new BitSet();
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SetFactory.java 34 * A value of 3072 here is somewhere around 1.125mb of total bitset size.
42 * A value of 3072 here is somewhere around 1.125mb of total bitset size.
51 * The total size of a bitset for this would be the count of blocks
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitAllocator.java 27 import java.util.BitSet;
42 private final BitSet mapped;
49 mapped = new BitSet(ssaMeth.getRegCount());

Completed in 317 milliseconds

1 2 3 4 5 6 7 891011>>