Home
last modified time | relevance | path

Searched refs:blocSize (Results 1 – 10 of 10) sorted by relevance

/dports/www/firefox-esr/firefox-91.8.0/gfx/2d/
H A DIterableArena.h78 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
80 if (AlignedSize(mCursor + blocSize) > mSize) {
86 while (AlignedSize(mCursor + blocSize) > newSize) {
101 GetHeader(offset)->mBlocSize = blocSize;
102 mCursor += blocSize;
146 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
147 MOZ_ASSERT(blocSize != 0); in Next()
148 mCursor += blocSize; in Next()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/2d/
H A DIterableArena.h78 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
80 if (AlignedSize(mCursor + blocSize) > mSize) {
86 while (AlignedSize(mCursor + blocSize) > newSize) {
101 GetHeader(offset)->mBlocSize = blocSize;
102 mCursor += blocSize;
146 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
147 MOZ_ASSERT(blocSize != 0); in Next()
148 mCursor += blocSize; in Next()
/dports/www/firefox/firefox-99.0/gfx/2d/
H A DIterableArena.h78 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
80 if (AlignedSize(mCursor + blocSize) > mSize) {
86 while (AlignedSize(mCursor + blocSize) > newSize) {
101 GetHeader(offset)->mBlocSize = blocSize;
102 mCursor += blocSize;
146 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
147 MOZ_ASSERT(blocSize != 0); in Next()
148 mCursor += blocSize; in Next()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/2d/
H A DIterableArena.h78 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
80 if (AlignedSize(mCursor + blocSize) > mSize) {
86 while (AlignedSize(mCursor + blocSize) > newSize) {
101 GetHeader(offset)->mBlocSize = blocSize;
102 mCursor += blocSize;
146 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
147 MOZ_ASSERT(blocSize != 0); in Next()
148 mCursor += blocSize; in Next()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/2d/
H A DIterableArena.h77 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
79 if (AlignedSize(mCursor + blocSize) > mSize) {
85 while (AlignedSize(mCursor + blocSize) > newSize) {
100 GetHeader(offset)->mBlocSize = blocSize;
101 mCursor += blocSize;
145 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
146 MOZ_ASSERT(blocSize != 0); in Next()
147 mCursor += blocSize; in Next()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/2d/
H A DIterableArena.h86 const size_t blocSize = AlignedSize(sizeof(Header) + aSize); variable
88 if (AlignedSize(mCursor + blocSize) > mSize) {
94 while (AlignedSize(mCursor + blocSize) > newSize) {
108 GetHeader(offset)->mBlocSize = blocSize;
109 mCursor += blocSize;
160 const size_t blocSize = aArena->GetHeader(mCursor)->mBlocSize; in Next() local
161 MOZ_ASSERT(blocSize != 0); in Next()
162 mCursor += blocSize; in Next()
/dports/editors/hexedit/hexedit-1.5/
H A Ddisplay.c91 …r += normalSpaces * (h % blocSize) + (h / blocSize) * (normalSpaces * blocSize + 1) + (hexOrAscii … in computeCursorXPos()
152 blocSize = modes[bySector].blocSize; in initDisplay()
158 blocSize = modes[maximized].blocSize; in initDisplay()
161 for (lineLength = blocSize; computeLineSize() <= COLS; lineLength += blocSize); in initDisplay()
162 lineLength -= blocSize; in initDisplay()
222 if (i > offset) MAXATTRPRINTW(bufferAttr[i] & MARKED, (((i - offset) % blocSize) ? " " : " ")); in displayLine()
H A Dinteract.c58 move_cursor(+blocSize); in forward_chars()
63 move_cursor(-blocSize); in backward_chars()
68 move_cursor(+lineLength * blocSize); in next_lines()
73 move_cursor(-lineLength * blocSize); in previous_lines()
155 removeFromEdited(base + cursor, blocSize); in delete_backward_chars()
H A Dhexedit.h67 int blocSize, lineLength, page; member
98 extern int cursor, blocSize, lineLength, colsUsed, page;
H A Dhexedit.c27 int cursor, blocSize, lineLength, colsUsed, page; variable