Searched defs:Bitmap (Results 1 - 7 of 7) sorted by relevance

/external/chromium/net/disk_cache/
H A Dbitmap.h14 class Bitmap { class in namespace:disk_cache
16 Bitmap() : map_(NULL), num_bits_(0), array_size_(0), alloc_(false) {} function in class:disk_cache::Bitmap
20 Bitmap(int num_bits, bool clear_bits);
22 // Constructs a Bitmap with the actual storage provided by the caller. |map|
25 Bitmap(uint32* map, int num_bits, int num_words);
27 ~Bitmap();
131 DISALLOW_COPY_AND_ASSIGN(Bitmap);
H A Dbitmap.cc43 Bitmap::Bitmap(int num_bits, bool clear_bits) function in class:disk_cache::Bitmap
54 Bitmap::Bitmap(uint32* map, int num_bits, int num_words) function in class:disk_cache::Bitmap
63 Bitmap::~Bitmap() {
68 void Bitmap::Resize(int num_bits, bool clear_bits) {
92 void Bitmap::Set(int index, bool value) {
103 bool Bitmap::Get(int index) const {
111 void Bitmap
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbriva.c77 RivaBitmap *Bitmap = (RivaBitmap *)(mapped_io + BITMAP_OFFSET); local
96 RIVA_FIFO_FREE(Bitmap, 1);
97 Bitmap->Color1A = color;
99 RIVA_FIFO_FREE(Bitmap, 2);
100 Bitmap->UnclippedRectangle[0].TopLeft = (dstX << 16) | dstY;
101 Bitmap->UnclippedRectangle[0].WidthHeight = (dstW << 16) | dstH;
H A Driva_mmio.h401 RivaBitmap *Bitmap; member in struct:_riva_hw_inst
/external/webkit/Source/JavaScriptCore/wtf/
H A DBitmap.h30 class Bitmap { class in namespace:WTF
35 Bitmap();
63 inline Bitmap<size>::Bitmap() function in class:WTF::Bitmap
69 inline bool Bitmap<size>::get(size_t n) const
75 inline void Bitmap<size>::set(size_t n)
81 inline bool Bitmap<size>::testAndSet(size_t n)
91 inline void Bitmap<size>::clear(size_t n)
97 inline void Bitmap<size>::clearAll()
103 inline size_t Bitmap<siz
[all...]
/external/regex-re2/re2/
H A Dprog.h19 class Bitmap { class in namespace:re2
21 Bitmap() { Reset(); } function in class:re2::Bitmap
45 DISALLOW_EVIL_CONSTRUCTORS(Bitmap);
207 const Bitmap<256>& byterange() { return byterange_; }
363 Bitmap<256> byterange_; // byterange.Get(x) true if x ends a
/external/v8/src/
H A Dspaces.h166 // Bitmap is a sequence of cells each containing fixed number of bits.
167 class Bitmap { class in namespace:v8::internal
214 INLINE(static Bitmap* FromAddress(Address addr)) {
215 return reinterpret_cast<Bitmap*>(addr);
495 CODE_POINTER_ALIGN(MAP_POINTER_ALIGN(kHeaderSize + Bitmap::kSize));
538 inline Bitmap* markbits() {
539 return Bitmap::FromAddress(address() + kHeaderSize);

Completed in 646 milliseconds