OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RunHead
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkRegionPriv.h
36
struct SkRegion::
RunHead
{
62
static
RunHead
* Alloc(int count) {
68
RunHead
* head = (
RunHead
*)sk_malloc_throw(sizeof(
RunHead
) + count * sizeof(RunType));
77
static
RunHead
* Alloc(int count, int yspancount, int intervalCount) {
81
RunHead
* head = Alloc(count);
96
RunHead
* ensureWritable() {
97
RunHead
* writable = this;
SkAAClip.h
68
struct
RunHead
;
80
RunHead
* fRunHead;
SkAAClip.cpp
58
struct SkAAClip::
RunHead
{
64
return (YOffset*)((char*)this + sizeof(
RunHead
));
67
return (const YOffset*)((const char*)this + sizeof(
RunHead
));
76
static
RunHead
* Alloc(int rowCount, size_t dataSize) {
77
size_t size = sizeof(
RunHead
) + rowCount * sizeof(YOffset) + dataSize;
78
RunHead
* head = (
RunHead
*)sk_malloc_throw(size);
96
static
RunHead
* AllocRect(const SkIRect& bounds) {
100
RunHead
* head =
RunHead
::Alloc(1, rowSize)
[
all
...]
SkRegion.cpp
104
fRunHead =
RunHead
::Alloc(count, ySpanCount, intervalCount);
108
fRunHead =
RunHead
::Alloc(count);
111
void SkRegion::allocateRuns(const
RunHead
& head) {
112
fRunHead =
RunHead
::Alloc(head.fRunCount,
124
SkTSwap<
RunHead
*>(fRunHead, other.fRunHead);
523
const SkRegion::
RunHead
* ah = fRunHead;
524
const SkRegion::
RunHead
* bh = b.fRunHead;
[
all
...]
SkRegion_path.cpp
353
tmp.fRunHead =
RunHead
::Alloc(count);
/external/skia/src/core/
SkRegionPriv.h
36
struct SkRegion::
RunHead
{
62
static
RunHead
* Alloc(int count) {
68
RunHead
* head = (
RunHead
*)sk_malloc_throw(sizeof(
RunHead
) + count * sizeof(RunType));
77
static
RunHead
* Alloc(int count, int yspancount, int intervalCount) {
81
RunHead
* head = Alloc(count);
96
RunHead
* ensureWritable() {
97
RunHead
* writable = this;
SkAAClip.h
68
struct
RunHead
;
80
RunHead
* fRunHead;
SkAAClip.cpp
58
struct SkAAClip::
RunHead
{
64
return (YOffset*)((char*)this + sizeof(
RunHead
));
67
return (const YOffset*)((const char*)this + sizeof(
RunHead
));
76
static
RunHead
* Alloc(int rowCount, size_t dataSize) {
77
size_t size = sizeof(
RunHead
) + rowCount * sizeof(YOffset) + dataSize;
78
RunHead
* head = (
RunHead
*)sk_malloc_throw(size);
96
static
RunHead
* AllocRect(const SkIRect& bounds) {
100
RunHead
* head =
RunHead
::Alloc(1, rowSize)
[
all
...]
SkRegion.cpp
104
fRunHead =
RunHead
::Alloc(count, ySpanCount, intervalCount);
108
fRunHead =
RunHead
::Alloc(count);
111
void SkRegion::allocateRuns(const
RunHead
& head) {
112
fRunHead =
RunHead
::Alloc(head.fRunCount,
124
SkTSwap<
RunHead
*>(fRunHead, other.fRunHead);
523
const SkRegion::
RunHead
* ah = fRunHead;
524
const SkRegion::
RunHead
* bh = b.fRunHead;
[
all
...]
SkRegion_path.cpp
353
tmp.fRunHead =
RunHead
::Alloc(count);
/external/chromium_org/third_party/skia/include/core/
SkRegion.h
22
#define SkRegion_gEmptyRunHeadPtr ((SkRegion::
RunHead
*)-1)
402
struct
RunHead
;
407
void allocateRuns(const
RunHead
& src);
410
RunHead
* fRunHead;
442
friend struct
RunHead
;
/external/skia/include/core/
SkRegion.h
22
#define SkRegion_gEmptyRunHeadPtr ((SkRegion::
RunHead
*)-1)
402
struct
RunHead
;
407
void allocateRuns(const
RunHead
& src);
410
RunHead
* fRunHead;
442
friend struct
RunHead
;
Completed in 1385 milliseconds