HomeSort by relevance Sort by last modified time
    Searched refs:BitVector (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /dalvik/vm/
BitVector.h 27 * All operations on a BitVector are unsynchronized.
29 struct BitVector {
37 BitVector *pBits;
43 BitVector* dvmAllocBitVector(unsigned int startBits, bool expandable);
44 void dvmFreeBitVector(BitVector* pBits);
59 int dvmAllocBit(BitVector* pBits);
60 void dvmSetBit(BitVector* pBits, unsigned int num);
61 void dvmClearBit(BitVector* pBits, unsigned int num);
62 void dvmClearAllBits(BitVector* pBits);
63 void dvmSetInitialBits(BitVector* pBits, unsigned int numBits)
    [all...]
BitVector.cpp 32 BitVector* dvmAllocBitVector(unsigned int startBits, bool expandable)
34 BitVector* bv;
39 bv = (BitVector*) malloc(sizeof(BitVector));
50 * Free a BitVector.
52 void dvmFreeBitVector(BitVector* pBits)
68 int dvmAllocBit(BitVector* pBits)
102 void dvmSetBit(BitVector* pBits, unsigned int num)
116 ALOGE("BitVector expansion to %d failed", newSize * sizeof(u4));
130 void dvmClearBit(BitVector* pBits, unsigned int num
    [all...]
  /external/chromium_org/v8/src/
hydrogen-environment-liveness.h 54 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live);
56 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live);
57 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
66 ZoneList<BitVector*> live_at_block_start_;
68 ZoneList<BitVector*> first_simulate_invalid_for_index_;
80 BitVector went_live_since_last_simulate_;
data-flow.h 41 class BitVector: public ZoneObject {
43 // Iterator for the elements of this BitVector.
46 explicit Iterator(BitVector* target)
80 BitVector* target_;
85 friend class BitVector;
88 BitVector(int length, Zone* zone)
96 BitVector(const BitVector& other, Zone* zone)
107 BitVector& operator=(const BitVector& rhs)
    [all...]
data-flow.cc 37 void BitVector::Print() {
52 void BitVector::Iterator::Advance() {
  /external/stlport/test/eh/
test_bit_vector.cpp 36 typedef EH_BIT_VECTOR BitVector;
39 container_category(const BitVector&)
53 gTestController.SetCurrentTestName("BitVector::reserve()");
56 void operator()( BitVector& v ) const
74 BitVector emptyVector;
75 BitVector testVector, testVector2;
93 StrongCheck(testVector, test_insert_one<BitVector>(testVector) );
94 StrongCheck(testVector, test_insert_one<BitVector>(testVector,0) );
95 StrongCheck(testVector, test_insert_one<BitVector>(testVector, (int)testVector.size()) );
97 StrongCheck(testVector, test_insert_n<BitVector>(testVector, random_number(random_base) ) )
    [all...]
  /external/chromium_org/v8/test/cctest/
test-dataflow.cc 37 TEST(BitVector) {
41 BitVector v(15, &zone);
48 BitVector w(15, &zone);
56 BitVector v(64, &zone);
61 BitVector::Iterator iter(&v);
74 BitVector v(15, &zone);
76 BitVector w(15, &zone);
84 BitVector v(15, &zone);
86 BitVector w(15, &zone);
90 BitVector u(w, &zone)
    [all...]
  /external/v8/test/cctest/
test-dataflow.cc 37 TEST(BitVector) {
42 BitVector v(15, zone);
49 BitVector w(15, zone);
57 BitVector v(64, zone);
62 BitVector::Iterator iter(&v);
75 BitVector v(15, zone);
77 BitVector w(15, zone);
85 BitVector v(15, zone);
87 BitVector w(15, zone);
91 BitVector u(w, zone)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ReachableCode.h 24 class BitVector;
50 llvm::BitVector &Reachable);
  /dalvik/vm/analysis/
VfyBasicBlock.h 46 BitVector* liveRegs; /* liveness for each register */
  /dalvik/vm/compiler/
CompilerUtility.h 66 BitVector* dvmCompilerAllocBitVector(unsigned int startBits, bool expandable);
67 bool dvmCompilerSetBit(BitVector* pBits, unsigned int num);
68 bool dvmCompilerClearBit(BitVector* pBits, unsigned int num);
69 void dvmCompilerMarkAllBits(BitVector *pBits, bool set);
70 void dvmDebugBitVector(char *msg, const BitVector *bv, int length);
74 const BitVector *bv, int length);
Loop.h 24 BitVector *isIndVarV; // length == numSSAReg
  /external/v8/src/
data-flow.h 41 class BitVector: public ZoneObject {
43 // Iterator for the elements of this BitVector.
46 explicit Iterator(BitVector* target)
80 BitVector* target_;
85 friend class BitVector;
88 BitVector(int length, Zone* zone)
96 BitVector(const BitVector& other, Zone* zone)
107 BitVector& operator=(const BitVector& rhs)
    [all...]
data-flow.cc 37 void BitVector::Print() {
52 void BitVector::Iterator::Advance() {
  /external/marisa-trie/lib/marisa/
bitvector.h 9 class BitVector {
11 BitVector();
81 void swap(BitVector *rhs);
91 BitVector(const BitVector &);
92 BitVector &operator=(const BitVector &);
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
bitvector.h 9 class BitVector {
11 BitVector();
81 void swap(BitVector *rhs);
91 BitVector(const BitVector &);
92 BitVector &operator=(const BitVector &);
  /external/chromium_org/third_party/WebKit/Source/wtf/
BitVector.cpp 27 #include "BitVector.h"
37 void BitVector::setSlow(const BitVector& other)
52 void BitVector::resize(size_t numBits)
67 void BitVector::clearAll()
75 BitVector::OutOfLineBits* BitVector::OutOfLineBits::create(size_t numBits)
83 void BitVector::OutOfLineBits::destroy(OutOfLineBits* outOfLineBits)
88 void BitVector::resizeOutOfLine(size_t numBits)
109 void BitVector::dump(PrintStream& out
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 20 #include "llvm/ADT/BitVector.h"
61 /// CalleeSavedrRegs - A bitvector of callee saved registers for the target.
63 BitVector CalleeSavedRegs;
68 BitVector RegsAvailable;
72 BitVector KillRegs, DefRegs;
117 void getRegsUsed(BitVector &used, bool includeReserved);
121 BitVector getRegsAvailable(const TargetRegisterClass *RC);
180 void setUsed(BitVector &Regs) {
183 void setUnused(BitVector &Regs) {
192 void addRegWithSubRegs(BitVector &BV, unsigned Reg)
    [all...]
  /external/llvm/lib/CodeGen/
SpillPlacement.h 37 class BitVector;
51 BitVector *ActiveNodes;
98 void prepare(BitVector &RegBundles);
136 /// The selected bundles are returned in the bitvector passed to prepare().
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPURegisterInfo.h 18 #include "llvm/ADT/BitVector.h"
38 virtual BitVector getReservedRegs(const MachineFunction &MF) const {
39 assert(!"Unimplemented"); return BitVector();
SIRegisterInfo.cpp 27 BitVector SIRegisterInfo::getReservedRegs(const MachineFunction &MF) const
29 BitVector Reserved(getNumRegs());
SIRegisterInfo.h 32 virtual BitVector getReservedRegs(const MachineFunction &MF) const;
  /external/llvm/lib/Target/R600/
AMDGPURegisterInfo.h 19 #include "llvm/ADT/BitVector.h"
37 virtual BitVector getReservedRegs(const MachineFunction &MF) const {
38 assert(!"Unimplemented"); return BitVector();
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPURegisterInfo.h 18 #include "llvm/ADT/BitVector.h"
38 virtual BitVector getReservedRegs(const MachineFunction &MF) const {
39 assert(!"Unimplemented"); return BitVector();
SIRegisterInfo.cpp 27 BitVector SIRegisterInfo::getReservedRegs(const MachineFunction &MF) const
29 BitVector Reserved(getNumRegs());

Completed in 899 milliseconds

1 2 3 4 5 6 7