Searched refs:Bitmap (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dbitmap.rb11 class Bitmap < TkPhotoImage class in class:Tk.BWidget
16 class Tk::BWidget::Bitmap
18 @path = tk_call_without_enc('Bitmap::get', name)
/macosx-10.9.5/libauto-185.5/tests/
H A Dtest_bitmaps.cpp29 char bits[Bitmap::bytes_needed(64)];
30 Bitmap bitmap(64, bits);
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/blt/scripts/
H A Dstipples.rb3 $stipples['bdiagonal1'] = Tk::BLT::Bitmap.new(<<EOD)
10 $stipples['bdiagonal2'] = Tk::BLT::Bitmap.new(<<EOD)
17 $stipples['checker2'] = Tk::BLT::Bitmap.new(<<EOD)
25 $stipples['checker3'] = Tk::BLT::Bitmap.new(<<EOD)
32 $stipples['cross1'] = Tk::BLT::Bitmap.new(<<EOD)
39 $stipples['cross2'] = Tk::BLT::Bitmap.new(<<EOD)
46 $stipples['cross3'] = Tk::BLT::Bitmap.new(<<EOD)
53 $stipples['crossdiag'] = Tk::BLT::Bitmap.new(<<EOD)
60 $stipples['dot1'] = Tk::BLT::Bitmap.new(<<EOD)
67 $stipples['dot2'] = Tk::BLT::Bitmap
[all...]
/macosx-10.9.5/libauto-185.5/
H A DRegion.h59 Bitmap _pending; // "ready to use" bitmap overlayed on _scan_space
60 Bitmap _marks; // bitmap for the marks used during reachability analysis
61 Bitmap _pinned; // bitmap for compaction
126 inline Bitmap &pending() { return _pending; }
127 inline Bitmap &marks() { return _marks; }
128 inline Bitmap &pinned() { return _pinned; }
H A DBitmap.cpp21 Bitmap.cpp
22 High Performance Bitmap
27 #include "Bitmap.h"
32 //----- Bitmap -----//
51 void Bitmap::set_bits_large(const usword_t bp, const usword_t n) const {
75 void Bitmap::clear_bits_large(const usword_t bp, const usword_t n) const {
93 bool Bitmap::bits_are_clear_large(const usword_t bp, const usword_t n) const {
124 usword_t Bitmap::count_set() const {
160 usword_t Bitmap::previous_set(const usword_t bp) const {
189 usword_t Bitmap
[all...]
H A DBitmap.h21 Bitmap.h
22 High Performance Bitmap
36 //----- Bitmap -----//
48 class Bitmap : public Range { class in namespace:Auto
89 Bitmap() {} function in class:Auto::Bitmap
90 Bitmap(usword_t n, void *bits) { function in class:Auto::Bitmap
337 // This is the basis for all the Bitmap atomic operations
429 Bitmap &_bitmap; // the bitmap being examined
442 AtomicCursor(Bitmap &b, usword_t start, usword_t length) : _bitmap(b), _index(start), _offset(start), _max_index(start + length) {
H A DRegion.cpp172 usword_t newBitmapSize = Bitmap::bytes_needed(_n_quantum);
H A DZone.h34 #include "Bitmap.h"
132 Bitmap _in_subzone; // indicates which allocations are used for subzone region
133 Bitmap _in_large; // indicates which allocations are used for large blocks
164 Bitmap _large_bits; // bitmap of top half - tracks quanta used for large blocks
254 usword_t in_subzone_size = Bitmap::bytes_needed(subzone_quantum_max);
255 usword_t in_large_size = Bitmap::bytes_needed(allocate_quantum_large_max);
257 usword_t arena_size = Bitmap::bytes_needed(allocate_quantum_large_max);
H A DZoneCollectors.cpp102 Bitmap::AtomicCursor cursor = sz->pending_cursor();
H A DSubzone.h32 #include "Bitmap.h"
597 inline Bitmap::AtomicCursor pending_cursor() { return Bitmap::AtomicCursor(_region->pending(), _quantum_bias, allocation_limit()); }
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dbitmap.tcl7 # - Bitmap::get
8 # - Bitmap::_init
10 namespace eval Bitmap {
11 Widget::define Bitmap bitmap -classonly
27 # Command Bitmap::get
29 proc Bitmap::get { name } {
76 # Command Bitmap::_init
78 proc Bitmap::_init { } {
94 Bitmap::_init
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/
H A Dtkclass.rb27 Bitmap = TkcBitmap
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/bwidget/
H A Ddemo.rb94 add(:image=>Tk::BWidget::Bitmap.new('new'),
100 add(:image=>Tk::BWidget::Bitmap.new('open'),
106 add(:image=>Tk::BWidget::Bitmap.new('save'),
122 add(:image=>Tk::BWidget::Bitmap.new('cut'),
128 add(:image=>Tk::BWidget::Bitmap.new('copy'),
134 add(:image=>Tk::BWidget::Bitmap.new('paste'),
H A Dtree.rb136 :image=>Tk::BWidget::Bitmap.new('openfold'))
163 :image=>Tk::BWidget::Bitmap.new('folder'),
177 tree.itemconfigure(node, :image=>Tk::BWidget::Bitmap.new('folder'))
179 tree.itemconfigure(node, :image=>Tk::BWidget::Bitmap.new('openfold'))
183 tree.itemconfigure(node, :image=>Tk::BWidget::Bitmap.new(img))
235 :image=>Tk::BWidget::Bitmap.new('folder'))
240 :image=>Tk::BWidget::Bitmap.new('file'))
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/blt/
H A Dpareto.rb33 pattern1 = Tk::BLT::Bitmap.define([ [4, 4], [1, 2, 4, 8] ])
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkedBlock.h29 #include <wtf/Bitmap.h>
181 WTF::Bitmap<atomsPerBlock, WTF::BitmapAtomic> m_marks;
183 WTF::Bitmap<atomsPerBlock, WTF::BitmapNotAtomic> m_marks;
185 OwnPtr<WTF::Bitmap<atomsPerBlock> > m_newlyAllocated;
H A DMarkedBlock.cpp187 m_newlyAllocated = adoptPtr(new WTF::Bitmap<atomsPerBlock>());
H A DMarkedSpace.h30 #include <wtf/Bitmap.h>
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32gui.h74 typedef HBITMAP Bitmap; typedef
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dbitmap.rb10 class Bitmap < TkObject class in class:Tk
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/
H A Dblt.rb158 autoload :Bitmap, 'tkextlib/blt/bitmap.rb'
H A Dbwidget.rb120 autoload :Bitmap, 'tkextlib/bwidget/bitmap'
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGRegisterSet.h35 #include <wtf/Bitmap.h>
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dpushbutton.itk62 itk_option define -bitmap bitmap Bitmap {}
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/incoming/src/
H A Dcollapsablewidget.itk92 itk_option define -labelbitmap labelBitmap Bitmap {}

Completed in 136 milliseconds

12