Home
last modified time | relevance | path

Searched refs:Bitmap (Results 1 – 25 of 130) sorted by relevance

123456

/third_party/mesa3d/src/gallium/frontends/hgl/
Dbitmap_wrapper.h35 typedef void Bitmap; typedef
42 Bitmap* create_bitmap(int32 width, int32 height, color_space colorSpace);
43 void delete_bitmap(Bitmap* bitmap);
45 void copy_bitmap_bits(const Bitmap* bitmap, void* data, int32 length);
46 void import_bitmap_bits(const Bitmap* bitmap, void* data, int32 length,
49 void get_bitmap_size(const Bitmap* bitmap, int32* width, int32* height);
50 color_space get_bitmap_color_space(const Bitmap* bitmap);
51 int32 get_bitmap_bytes_per_row(const Bitmap* bitmap);
52 int32 get_bitmap_bits_length(const Bitmap* bitmap);
54 void dump_bitmap(const Bitmap* bitmap);
Dbitmap_wrapper.cpp43 Bitmap*
48 return (Bitmap*)bb; in create_bitmap()
54 get_bitmap_size(const Bitmap* bitmap, int32* width, int32* height) in get_bitmap_size()
67 get_bitmap_color_space(const Bitmap* bitmap) in get_bitmap_color_space()
77 copy_bitmap_bits(const Bitmap* bitmap, void* data, int32 length) in copy_bitmap_bits()
88 import_bitmap_bits(const Bitmap* bitmap, void* data, int32 length, in import_bitmap_bits()
100 delete_bitmap(Bitmap* bitmap) in delete_bitmap()
108 get_bitmap_bytes_per_row(const Bitmap* bitmap) in get_bitmap_bytes_per_row()
118 get_bitmap_bits_length(const Bitmap* bitmap) in get_bitmap_bits_length()
128 dump_bitmap(const Bitmap* bitmap) in dump_bitmap()
/third_party/node/deps/v8/src/heap/
Dmarking.cc10 const size_t Bitmap::kSize = Bitmap::CellsCount() * Bitmap::kBytesPerCell;
18 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange()
19 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in AllBitsSetInRange()
21 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange()
22 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in AllBitsSetInRange()
47 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in AllBitsClearInRange()
48 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in AllBitsClearInRange()
50 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsClearInRange()
51 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in AllBitsClearInRange()
105 seq_length * Bitmap::kBitsPerCell); in Flush()
Dmarking.h94 class V8_EXPORT_PRIVATE Bitmap {
132 V8_INLINE static Bitmap* FromAddress(Address addr) { in FromAddress()
133 return reinterpret_cast<Bitmap*>(addr); in FromAddress()
144 class ConcurrentBitmap : public Bitmap {
276 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in SetRange()
277 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in SetRange()
279 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in SetRange()
280 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in SetRange()
307 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in ClearRange()
308 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in ClearRange()
[all …]
Dmark-compact-inl.h128 Bitmap* bitmap, Address start) in iterator()
136 it_.Advance(Bitmap::IndexToCell( in iterator()
137 Bitmap::CellAlignIndex(chunk_->AddressToMarkbitIndex(start)))); in iterator()
174 if (trailing_zeros >= Bitmap::kBitIndexMask) { in AdvanceToNextValidObject()
212 end_mark_bit_index >> Bitmap::kBitsPerCellLog2; in AdvanceToNextValidObject()
214 1u << Bitmap::IndexInCell(end_mark_bit_index); in AdvanceToNextValidObject()
Dmark-compact.h38 MarkBitCellIterator(const MemoryChunk* chunk, Bitmap* bitmap) in MarkBitCellIterator()
41 Bitmap::IndexToCell(chunk_->AddressToMarkbitIndex(chunk_->area_end())); in MarkBitCellIterator()
44 Bitmap::IndexToCell(chunk_->AddressToMarkbitIndex(cell_base_)); in MarkBitCellIterator()
53 DCHECK_EQ(cell_index_, Bitmap::IndexToCell(Bitmap::CellAlignIndex( in CurrentCell()
59 DCHECK_EQ(cell_index_, Bitmap::IndexToCell(Bitmap::CellAlignIndex( in CurrentCellBase()
65 cell_base_ += Bitmap::kBitsPerCell * kTaggedSize; in Advance()
75 cell_base_ += diff * (Bitmap::kBitsPerCell * kTaggedSize); in Advance()
109 inline iterator(const MemoryChunk* chunk, Bitmap* bitmap, Address start);
138 LiveObjectRange(const MemoryChunk* chunk, Bitmap* bitmap) in LiveObjectRange()
151 Bitmap* bitmap_;
Dmemory-chunk-layout.cc18 return ::RoundUp(MemoryChunk::kHeaderSize + Bitmap::kSize, in CodePageGuardStartOffset()
45 return RoundUp(MemoryChunk::kHeaderSize + Bitmap::kSize, kDoubleSize); in ObjectStartOffsetInDataPage()
Dmemory-chunk-layout.h21 class Bitmap; variable
70 FIELD(Bitmap*, YoungGenerationBitmap),
Dmemory-chunk.cc415 static_cast<Bitmap*>(base::Calloc(1, Bitmap::kSize)); in AllocateYoungGenerationBitmap()
/third_party/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DCorrectnessActivity.java4 import android.graphics.Bitmap;
82 private void saveAsPng(int asset, Bitmap bitmap) { in saveAsPng()
88 bitmap.compress(Bitmap.CompressFormat.PNG, /*quality ignored for PNG*/100, out); in saveAsPng()
126 Bitmap out = grabScreenshot(); in runCorrectness()
132 private Bitmap grabScreenshot() { in grabScreenshot()
133 Bitmap outBitmap = Bitmap.createBitmap(OUTPUT_DIMS, OUTPUT_DIMS, in grabScreenshot()
134 Bitmap.Config.ARGB_8888); in grabScreenshot()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
DSurface.java10 import android.graphics.Bitmap;
25 public Surface(Bitmap bitmap) { in Surface()
100 private static long CreateBitmapInstance(Bitmap bitmap) { in CreateBitmapInstance()
107 private static native long nCreateBitmap(Bitmap bitmap); in nCreateBitmap()
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
DMainActivity.java11 import android.graphics.Bitmap;
47 Bitmap.Config conf = Bitmap.Config.ARGB_8888; in onCreate()
48 Bitmap bmp = Bitmap.createBitmap(400, 400, conf); in onCreate()
/third_party/python/Doc/library/
Dimghdr.rst36 | ``'pbm'`` | Portable Bitmap Files |
46 | ``'xbm'`` | X Bitmap Files |
/third_party/skia/third_party/externals/opengl-registry/extensions/HP/
DHP_texture_lighting.txt119 Bitmap |
120 Bitmap -----> Rasterization -->+
/third_party/openGLES/extensions/HP/
DHP_texture_lighting.txt119 Bitmap |
120 Bitmap -----> Rasterization -->+
/third_party/openGLES/extensions/MESA/
DMESA_window_pos.txt37 rely on a subtle side-effect of the Bitmap command in order to circumvent
47 CopyPixels or Bitmap.
/third_party/skia/third_party/externals/opengl-registry/extensions/MESA/
DMESA_window_pos.txt37 rely on a subtle side-effect of the Bitmap command in order to circumvent
47 CopyPixels or Bitmap.
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_window_pos.txt43 on a subtle side-effect of the Bitmap command in order to avoid frustum
54 Bitmap. Many matrix operations can be avoided when mixing 2D and 3D
85 of the depth range. That's where one would usually want Bitmap,
129 rasterization (Bitmap, DrawPixels) time. Instead, this extension
/third_party/openGLES/extensions/ARB/
DARB_window_pos.txt53 on a subtle side-effect of the Bitmap command in order to avoid frustum
64 Bitmap. Many matrix operations can be avoided when mixing 2D and 3D
95 of the depth range. That's where one would usually want Bitmap,
139 rasterization (Bitmap, DrawPixels) time. Instead, this extension
/third_party/skia/third_party/externals/opengl-registry/extensions/SUNX/
DSUNX_constant_data.txt36 interpreted and therefore affects DrawPixels, Bitmap,
98 In immediate mode, for DrawPixels()/Bitmap(), specifying constant data
/third_party/openGLES/extensions/SUNX/
DSUNX_constant_data.txt36 interpreted and therefore affects DrawPixels, Bitmap,
98 In immediate mode, for DrawPixels()/Bitmap(), specifying constant data
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dserialization_test.cc149 TEST(Serialization, Bitmap) { in TEST() argument
/third_party/skia/third_party/externals/opengl-registry/extensions/NVX/
DNVX_conditional_render.txt97 performing an implicit Begin and End, DrawPixels (section 3.6), Bitmap
183 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
/third_party/openGLES/extensions/NVX/
DNVX_conditional_render.txt97 performing an implicit Begin and End, DrawPixels (section 3.6), Bitmap
183 RESOLVED: All rendering commands (DrawPixels, Bitmap, Clear, Accum,
/third_party/rust/crates/unicode-ident/
DREADME.md163 This crate is a pure-Rust implementation of [Roaring Bitmap], a data structure
166 [Roaring Bitmap]: https://roaringbitmap.org/about/
178 reference implementation of Roaring Bitmap. This crate was consistently about

123456