OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RunHead
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/core/
SkRegionPriv.h
21
struct SkRegion::
RunHead
{
25
static
RunHead
* Alloc(int count)
32
RunHead
* head = (
RunHead
*)sk_malloc_throw(sizeof(
RunHead
) + count * sizeof(RunType));
55
RunHead
* ensureWritable()
59
RunHead
* writable = this;
SkAAClip.h
68
struct
RunHead
;
80
RunHead
* fRunHead;
SkAAClip.cpp
56
struct SkAAClip::
RunHead
{
62
return (YOffset*)((char*)this + sizeof(
RunHead
));
65
return (const YOffset*)((const char*)this + sizeof(
RunHead
));
74
static
RunHead
* Alloc(int rowCount, size_t dataSize) {
75
size_t size = sizeof(
RunHead
) + rowCount * sizeof(YOffset) + dataSize;
76
RunHead
* head = (
RunHead
*)sk_malloc_throw(size);
94
static
RunHead
* AllocRect(const SkIRect& bounds) {
98
RunHead
* head =
RunHead
::Alloc(1, rowSize)
[
all
...]
SkRegion.cpp
108
fRunHead =
RunHead
::Alloc(count);
118
SkTSwap<
RunHead
*>(fRunHead, other.fRunHead);
469
const SkRegion::
RunHead
* ah = fRunHead;
470
const SkRegion::
RunHead
* bh = b.fRunHead;
[
all
...]
SkRegion_path.cpp
306
tmp.fRunHead =
RunHead
::Alloc(count);
/external/skia/include/core/
SkRegion.h
22
#define SkRegion_gEmptyRunHeadPtr ((SkRegion::
RunHead
*)-1)
387
struct
RunHead
;
390
RunHead
* fRunHead;
404
friend struct
RunHead
;
Completed in 126 milliseconds