Home
last modified time | relevance | path

Searched refs:REAL_SIZE (Results 1 – 25 of 51) sorted by relevance

123

/dports/lang/php74/php-7.4.27/ext/mysqlnd/
H A Dmysqlnd_alloc.c95 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
100 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
131 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
136 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
171 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
177 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
388 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
393 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
423 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
428 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
[all …]
/dports/lang/php80/php-8.0.15/ext/mysqlnd/
H A Dmysqlnd_alloc.c93 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
98 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
129 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
134 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
169 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
175 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
386 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
391 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
421 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
426 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
[all …]
/dports/www/mod_php80/php-8.0.15/ext/mysqlnd/
H A Dmysqlnd_alloc.c93 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
98 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
129 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
134 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
169 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
175 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
386 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
391 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
421 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
426 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
[all …]
/dports/www/mod_php74/php-7.4.27/ext/mysqlnd/
H A Dmysqlnd_alloc.c95 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
100 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
131 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
136 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
171 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
177 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
388 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
393 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
423 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
428 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
[all …]
/dports/games/openmw/openmw-openmw-0.47.0/apps/opencs/model/world/
H A Dcellcoordinates.cpp74 …d = static_cast<float>(worldPos.x() * ESM::Land::LAND_TEXTURE_SIZE / ESM::Land::REAL_SIZE - 0.25f); in toTextureCoords()
75 …d = static_cast<float>(worldPos.y() * ESM::Land::LAND_TEXTURE_SIZE / ESM::Land::REAL_SIZE + 0.25f); in toTextureCoords()
85 …o xd = static_cast<float>(worldPos.x() * (ESM::Land::LAND_SIZE - 1) / ESM::Land::REAL_SIZE + 0.5f); in toVertexCoords()
86 …o yd = static_cast<float>(worldPos.y() * (ESM::Land::LAND_SIZE - 1) / ESM::Land::REAL_SIZE + 0.5f); in toVertexCoords()
96 …return ESM::Land::REAL_SIZE * (static_cast<float>(textureGlobal) + 0.25f) / ESM::Land::LAND_TEXTUR… in textureGlobalXToWorldCoords()
101 …return ESM::Land::REAL_SIZE * (static_cast<float>(textureGlobal) - 0.25f) / ESM::Land::LAND_TEXTUR… in textureGlobalYToWorldCoords()
106 return ESM::Land::REAL_SIZE * static_cast<float>(vertexGlobal) / (ESM::Land::LAND_SIZE - 1); in vertexGlobalToWorldCoords()
/dports/www/mod_php81/php-8.1.1/ext/mysqlnd/
H A Dmysqlnd_alloc.c65 #define REAL_SIZE(s) (collect_memory_statistics? (s) + EXTRA_SIZE : (s)) macro
75 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
94 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
117 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
136 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
160 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
180 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
273 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
304 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pestrndup()
/dports/lang/php81/php-8.1.1/ext/mysqlnd/
H A Dmysqlnd_alloc.c65 #define REAL_SIZE(s) (collect_memory_statistics? (s) + EXTRA_SIZE : (s)) macro
75 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
94 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
117 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
136 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
160 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
180 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
273 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
304 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pestrndup()
/dports/lang/php73/php-7.3.33/ext/mysqlnd/
H A Dmysqlnd_alloc.c99 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
139 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
183 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
222 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
267 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
308 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
413 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
452 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
493 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
558 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
[all …]
/dports/www/mod_php73/php-7.3.33/ext/mysqlnd/
H A Dmysqlnd_alloc.c99 ret = emalloc_rel(REAL_SIZE(size)); in _mysqlnd_emalloc()
139 ret = pemalloc_rel(REAL_SIZE(size), persistent); in _mysqlnd_pemalloc()
183 ret = ecalloc_rel(nmemb, REAL_SIZE(size)); in _mysqlnd_ecalloc()
222 ret = pecalloc_rel(nmemb, REAL_SIZE(size), persistent); in _mysqlnd_pecalloc()
267 ret = erealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
308 ret = perealloc_rel(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); in _mysqlnd_perealloc()
413 ret = malloc(REAL_SIZE(size)); in _mysqlnd_malloc()
452 ret = calloc(nmemb, REAL_SIZE(size)); in _mysqlnd_calloc()
493 ret = realloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_realloc()
558 ret = pemalloc_rel(REAL_SIZE(length + 1), persistent); in _mysqlnd_pememdup()
[all …]
/dports/games/openmw/openmw-openmw-0.47.0/apps/opencs/view/render/
H A Dterrainselection.cpp133 …const int landHeightsNudge = (ESM::Land::REAL_SIZE / ESM::Land::LAND_SIZE) / (ESM::Land::LAND_SIZE… in drawTextureSelection()
155 …CellCoordinates::textureGlobalXToWorldCoords(x) + (i - 1) * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
156 …orld::CellCoordinates::textureGlobalXToWorldCoords(x) + i * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
167 …:CellCoordinates::textureGlobalXToWorldCoords(x) + (i - 1) *(ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
168 …orld::CellCoordinates::textureGlobalXToWorldCoords(x) + i * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
179 …CellCoordinates::textureGlobalYToWorldCoords(y) + (i - 1) * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
180 …orld::CellCoordinates::textureGlobalYToWorldCoords(y) + i * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
191 …CellCoordinates::textureGlobalYToWorldCoords(y) + (i - 1) * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
192 …orld::CellCoordinates::textureGlobalYToWorldCoords(y) + i * (ESM::Land::REAL_SIZE / (ESM::Land::LA… in drawTextureSelection()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/samples/image/
H A Dimage.cpp454 REAL_SIZE = SIZE - 2*BORDER enumerator
495 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
504 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
508 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
509 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
510 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
512 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
515 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/samples/image/
H A Dimage.cpp454 REAL_SIZE = SIZE - 2*BORDER enumerator
495 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
504 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
508 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
509 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
510 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
512 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
515 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/samples/image/
H A Dimage.cpp526 REAL_SIZE = SIZE - 2*BORDER enumerator
567 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
576 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
580 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
581 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
582 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
584 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
587 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/games/openmw/openmw-openmw-0.47.0/components/misc/
H A Dcoordinateconverter.hpp16 : mCellX(exterior ? cellX * ESM::Land::REAL_SIZE : 0), in CoordinateConverter()
17 mCellY(exterior ? cellY * ESM::Land::REAL_SIZE : 0) in CoordinateConverter()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/samples/image/
H A Dimage.cpp304 REAL_SIZE = SIZE - 2*BORDER enumerator
346 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
356 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
360 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
361 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
362 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
364 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
367 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/samples/image/
H A Dimage.cpp304 REAL_SIZE = SIZE - 2*BORDER enumerator
346 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
356 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
360 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
361 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
362 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
364 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
367 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/samples/image/
H A Dimage.cpp304 REAL_SIZE = SIZE - 2*BORDER enumerator
346 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
356 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
360 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
361 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
362 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
364 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
367 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/samples/image/
H A Dimage.cpp304 REAL_SIZE = SIZE - 2*BORDER enumerator
346 wxSize(REAL_SIZE, REAL_SIZE)); in InitAlphaBitmap()
356 for ( int y = 0; y < REAL_SIZE; ++y ) in InitAlphaBitmap()
360 int r = y < REAL_SIZE/3 ? 255 : 0, in InitAlphaBitmap()
361 g = (REAL_SIZE/3 <= y) && (y < 2*(REAL_SIZE/3)) ? 255 : 0, in InitAlphaBitmap()
362 b = 2*(REAL_SIZE/3) <= y ? 255 : 0; in InitAlphaBitmap()
364 for ( int x = 0; x < REAL_SIZE; ++x ) in InitAlphaBitmap()
367 unsigned a = (wxAlphaPixelData::Iterator::ChannelType)((x*255.)/REAL_SIZE); in InitAlphaBitmap()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/machine/xstormy16/
H A Dtiny-malloc.c120 #define REAL_SIZE(sz) \ macro
138 size_t real_size = REAL_SIZE (sz); in malloc()
278 size_t real_size = REAL_SIZE (sz); in realloc()
342 size_t real_size = REAL_SIZE (sz); in memalign()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/machine/xstormy16/
H A Dtiny-malloc.c120 #define REAL_SIZE(sz) \ macro
138 size_t real_size = REAL_SIZE (sz); in malloc()
278 size_t real_size = REAL_SIZE (sz); in realloc()
342 size_t real_size = REAL_SIZE (sz); in memalign()
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/newlib/libc/machine/xstormy16/
H A Dtiny-malloc.c120 #define REAL_SIZE(sz) \ macro
138 size_t real_size = REAL_SIZE (sz); in malloc()
278 size_t real_size = REAL_SIZE (sz); in realloc()
342 size_t real_size = REAL_SIZE (sz); in memalign()
/dports/devel/tinygo/tinygo-0.14.1/lib/picolibc/newlib/libc/machine/xstormy16/
H A Dtiny-malloc.c120 #define REAL_SIZE(sz) \ macro
138 size_t real_size = REAL_SIZE (sz); in malloc()
278 size_t real_size = REAL_SIZE (sz); in realloc()
342 size_t real_size = REAL_SIZE (sz); in memalign()
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Dstructseq.c32 #define REAL_SIZE(op) REAL_SIZE_TP(Py_TYPE(op)) macro
74 size = REAL_SIZE(obj); in structseq_traverse()
89 size = REAL_SIZE(obj); in structseq_dealloc()
287 n_fields = REAL_SIZE(self); in structseq_reduce()
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Dstructseq.c32 #define REAL_SIZE(op) REAL_SIZE_TP(Py_TYPE(op)) macro
74 size = REAL_SIZE(obj); in structseq_traverse()
89 size = REAL_SIZE(obj); in structseq_dealloc()
287 n_fields = REAL_SIZE(self); in structseq_reduce()
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Dstructseq.c32 #define REAL_SIZE(op) REAL_SIZE_TP(Py_TYPE(op)) macro
74 size = REAL_SIZE(obj); in structseq_traverse()
89 size = REAL_SIZE(obj); in structseq_dealloc()
287 n_fields = REAL_SIZE(self); in structseq_reduce()

123