Home
last modified time | relevance | path

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

/src/contrib/arm-optimized-routines/string/bench/
H A Dmemcpy.c21 #define MAX_SIZE (1024 * 1024) macro
23 static uint8_t a[MAX_SIZE + 4096 + 64] __attribute__((__aligned__(4096)));
24 static uint8_t b[MAX_SIZE + 4096 + 64] __attribute__((__aligned__(4096)));
151 for (int size = MIN_SIZE; size <= MAX_SIZE; size *= 2) in memcpy_random()
H A Dmemset.c21 #define MAX_SIZE (1024 * 1024) macro
23 static uint8_t a[MAX_SIZE + 4096] __attribute__((__aligned__(4096)));
129 for (int size = MIN_SIZE; size <= MAX_SIZE; size *= 2) in memset_random()
/src/tools/test/stress2/misc/
H A Dsendfile26.sh122 } while (cursor < MAX_SIZE);
150 chunk_size, MAX_SIZE);
161 } while (cursor < MAX_SIZE);
203 } while (ret == 0 && cursor < MAX_SIZE);
/src/crypto/krb5/src/lib/krb5/rcache/
H A Drc_file2.c41 #define MAX_SIZE INT32_MAX macro
63 if (*nrecords > MAX_SIZE / RECORD_LEN) in next_table()
65 if (*offset > MAX_SIZE - (*nrecords * RECORD_LEN)) in next_table()
/src/crypto/krb5/src/include/
H A Dwin-mac.h55 #ifdef MAX_SIZE /* Microsoft defines MAX_SIZE as max size of size_t */
56 #define SIZE_MAX MAX_SIZE
/src/contrib/lua/src/
H A Dlstring.c227 if (l_unlikely(l * sizeof(char) >= (MAX_SIZE - sizeof(TString)))) in luaS_newlstr()
263 if (l_unlikely(s > MAX_SIZE - udatamemoffset(nuvalue))) in luaS_newudata()
H A Dllimits.h44 #define MAX_SIZE (sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \ macro
H A Dllex.c61 if (luaZ_sizebuffer(b) >= MAX_SIZE/2) in save()
H A Dlvm.c671 if (l_unlikely(l >= MAX_SIZE - sizeof(TString) - tl)) { in luaV_concat()
/src/contrib/ncurses/ncurses/base/
H A Dlib_screen.c47 #define MAX_SIZE 0x3fff /* 16k is big enough for a window or pad */ macro
538 tmp._maxy > MAX_SIZE || in getwin()
540 tmp._maxx > MAX_SIZE) { in getwin()