Home | History | Annotate | Download | only in disk_cache

Lines Matching refs:Bitmap

5 #include "net/disk_cache/bitmap.h"
43 Bitmap::Bitmap(int num_bits, bool clear_bits)
54 Bitmap::Bitmap(uint32* map, int num_bits, int num_words)
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::Toggle(int index) {
119 void Bitmap::SetMapElement(int array_index, uint32 value) {
125 uint32 Bitmap::GetMapElement(int array_index) const {
131 void Bitmap::SetMap(const uint32* map, int size) {
135 void Bitmap::SetRange(int begin, int end, bool value) {
160 bool Bitmap::TestRange(int begin, int end, bool value) const {
212 bool Bitmap::FindNextBit(int* index, int limit, bool value) const {
275 int Bitmap::FindBits(int* index, int limit, bool value) const {
293 void Bitmap::SetWordBits(int start, int len, bool value) {