HomeSort by relevance Sort by last modified time
    Searched full:bitset (Results 476 - 500 of 1378) sorted by null

<<11121314151617181920>>

  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/2.1.3/
gradle-core-2.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/2.2.3/
gradle-core-2.2.3.jar 
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 109 uptr Update8bitCounterBitsetAndClearCounters(u8 *bitset);
474 // Map every 8bit counter to a 8-bit bitset and clear the counter.
475 uptr CoverageData::Update8bitCounterBitsetAndClearCounters(u8 *bitset) {
478 // For better speed we map 8 counters to 8 bytes of bitset at once.
480 CHECK_EQ(reinterpret_cast<uptr>(bitset) % kBatchSize, 0);
487 if (!bitset) {
495 u64 *pb64 = reinterpret_cast<u64*>(bitset + cur);
714 InternalScopedBuffer<u8> bitset(n);
715 coverage_data.Update8bitCounterBitsetAndClearCounters(bitset.data());
727 WriteToFile(fd, bitset.data() + r.beg, r.end - r.beg)
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0-alpha1/
builder-2.0.0-alpha1.jar 
  /external/guice/extensions/persist/lib/
oro-2.0.8.jar 
  /prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar 
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 65 Readonly my $usage => 'void match(IntStream input, int ttype, BitSet follow)';
122 Readonly my $usage => 'void mismatch(IntStream input, int ttype, BitSet follow)';
304 Readonly my $usage => 'BitSet combine_follows(boolean exact)';
309 my $follow_set = ANTLR::Runtime::BitSet->new();
322 Readonly my $usage => 'void recover_from_mismatched_token(IntStream input, int ttype, BitSet follow)';
364 Readonly my $usage => 'void recover_from_mismatched_set(IntStream input, RecognitionException e, BitSet follow)';
382 Readonly my $usage => 'boolean recover_from_mismatched_element(IntStream input, RecognitionException e, BitSet follow)';
418 Readonly my $usage => 'void consume_until(IntStream input, (int token_type | BitSet set))';
421 if ($_[2]->isa('ANTLR::Runtime::BitSet')) {
441 Readonly my $usage => 'void push_follow(BitSet fset)'
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
dynamic_bitset 50 * Dynamic Bitset.
53 * Proposal to Add a Dynamically Sizeable Bitset to the Standard Library.
420 * << "index 3 in the bitset is " << b[3] << endl;
640 __throw_out_of_range(__N("dynamic_bitset::bitset initial position "
685 * @brief Swap with another bitset.
718 * @brief Return the allocator for the bitset.
725 * @brief Resize the bitset.
738 * @brief Clear the bitset.
748 * @brief Push a bit onto the high end of the bitset.
1179 // 23.3.5.3 bitset operations
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
dynamic_bitset 50 * Dynamic Bitset.
53 * Proposal to Add a Dynamically Sizeable Bitset to the Standard Library.
420 * << "index 3 in the bitset is " << b[3] << endl;
640 __throw_out_of_range(__N("dynamic_bitset::bitset initial position "
685 * @brief Swap with another bitset.
718 * @brief Return the allocator for the bitset.
725 * @brief Resize the bitset.
738 * @brief Clear the bitset.
748 * @brief Push a bit onto the high end of the bitset.
1179 // 23.3.5.3 bitset operations
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
dynamic_bitset 50 * Dynamic Bitset.
53 * Proposal to Add a Dynamically Sizeable Bitset to the Standard Library.
420 * << "index 3 in the bitset is " << b[3] << endl;
640 __throw_out_of_range(__N("dynamic_bitset::bitset initial position "
685 * @brief Swap with another bitset.
718 * @brief Return the allocator for the bitset.
725 * @brief Resize the bitset.
738 * @brief Clear the bitset.
748 * @brief Push a bit onto the high end of the bitset.
1179 // 23.3.5.3 bitset operations
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 131 public virtual object Match(IIntStream input, int ttype, BitSet follow) {
159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) {
167 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW();
180 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
387 BitSet followSet = ComputeErrorRecoverySet();
495 protected virtual BitSet ComputeErrorRecoverySet() {
553 protected virtual BitSet ComputeContextSensitiveRuleFOLLOW() {
561 protected virtual BitSet CombineFollows(bool exact) {
563 BitSet followSet = new BitSet();
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 141 public virtual object Match( IIntStream input, int ttype, BitSet follow )
174 public virtual bool MismatchIsMissingToken( IIntStream input, BitSet follow )
185 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW();
199 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
455 BitSet followSet = ComputeErrorRecoverySet();
565 protected virtual BitSet ComputeErrorRecoverySet()
624 protected virtual BitSet ComputeContextSensitiveRuleFOLLOW()
633 protected virtual BitSet CombineFollows(bool exact)
636 BitSet followSet = new BitSet();
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 21 import java.util.BitSet;
71 * BitSet of printable characters as defined in RFC 1521.
73 private static final BitSet PRINTABLE_CHARS = new BitSet(256);
136 * bitset of characters deemed quoted-printable
141 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 59 import java.util.BitSet;
88 @Nonnull private final BitSet analyzedState;
139 analyzedState = new BitSet(analyzedInstructions.size());
183 BitSet instructionsToAnalyze = new BitSet(analyzedInstructions.size());
190 BitSet undeodexedInstructions = new BitSet(analyzedInstructions.size());
344 private void propagateChanges(@Nonnull BitSet changedInstructions, int registerNumber, boolean override) {
365 BitSet changedInstructions = new BitSet(analyzedInstructions.size())
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/
builder-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/
builder-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-rc1/
builder-2.1.0-rc1.jar 
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SignalController.java 24 import java.util.BitSet;
80 public void updateConnectivity(BitSet connectedTransports, BitSet validatedTransports) {
  /frameworks/minikin/libs/minikin/
FontFamily.cpp 203 const std::unique_ptr<SparseBitSet>& bitset = mCmapFmt14Coverage[vsIndex]; local
204 if (bitset.get() == nullptr) {
208 return bitset->get(codepoint);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
MimeStreamParser.java 27 import java.util.BitSet;
53 private static BitSet fieldChars = null;
62 fieldChars = new BitSet();
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 50 import java.util.BitSet;
145 BitSet wasUtf8 = new BitSet(offsets.length);
250 private Constant parse0(int idx, BitSet wasUtf8) {
  /device/google/dragon/sensor_hub/
cros_ec_sensors.h 24 #include <utils/BitSet.h>
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as 181 * the token type BitSet. Return null if no tokens were found. This
186 public function getTokensBitSet(start:int, stop:int, types:BitSet):Array {
215 return getTokensBitSet(start,stop,new BitSet(types));
219 return getTokensBitSet(start,stop,BitSet.of(ttype));
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
antlr3.properties 22 org/antlr/runtime/BitSet.js,\

Completed in 1640 milliseconds

<<11121314151617181920>>