Lines Matching +defs:lo +defs:size
166 // 3 - fast allocation using sync, non-sync free lists of any size, non-self
167 // free lists of limited size.
538 int size;
858 // Declare local char buffers with this size for printing debug and info
979 int size;
1197 #define KMP_MAX_STKSIZE 0x10000000 /* 256Mb max size on 32-bit AIX */
1208 // Minimum stack size for pthread for VE is 4MB.
1212 // The default stack size for worker threads on AIX is 4MB.
1394 unsigned reserved : 29; // Ensure size of 32 bits
1724 long maxrss; /* the maximum resident set size utilized (in kilobytes) */
1824 size_t size; /* The data size for this descriptor */
1857 #define KMP_HASH_TABLE_LOG2 9 /* log2 of the hash table size */
1859 (1 << KMP_HASH_TABLE_LOG2) /* size of the hash table */
2029 kmp_int32 type_size; /* the size of types in private_info */
2043 // Dummy to retain the structure size after making ordered_iteration scalar
2053 // Dummy to retain the structure size after making ordered_iteration scalar
2579 size_t size;
2891 // Free lists keep same-size free memory slots for fast memory allocation
3198 int t_size_changed; // team size was changed?: 0: no, 1: yes, -1: changed via
3427 extern int __kmp_chunk; /* default runtime chunk size */
3430 extern size_t __kmp_stksize; /* stack size per thread */
3432 extern size_t __kmp_monitor_stksize; /* stack size for monitor thread */
3438 __kmp_malloc_pool_incr; /* incremental size of pool for kmp_malloc() */
3463 extern size_t __kmp_sys_min_stksize; /* system-defined minimum stack size */
3695 size_t size, char const *format, ...);
3760 extern void *___kmp_allocate(size_t size KMP_SRC_LOC_DECL);
3761 extern void *___kmp_page_allocate(size_t size KMP_SRC_LOC_DECL);
3763 #define __kmp_allocate(size) ___kmp_allocate((size)KMP_SRC_LOC_CURR)
3764 #define __kmp_page_allocate(size) ___kmp_page_allocate((size)KMP_SRC_LOC_CURR)
3769 size_t size KMP_SRC_LOC_DECL);
3773 #define __kmp_fast_allocate(this_thr, size) \
3774 ___kmp_fast_allocate((this_thr), (size)KMP_SRC_LOC_CURR)
3779 extern void *___kmp_thread_malloc(kmp_info_t *th, size_t size KMP_SRC_LOC_DECL);
3783 size_t size KMP_SRC_LOC_DECL);
3785 #define __kmp_thread_malloc(th, size) \
3786 ___kmp_thread_malloc((th), (size)KMP_SRC_LOC_CURR)
3789 #define __kmp_thread_realloc(th, ptr, size) \
3790 ___kmp_thread_realloc((th), (ptr), (size)KMP_SRC_LOC_CURR)
3905 extern void __kmp_expand_host_name(char *buffer, size_t size);
4052 KMP_EXPORT void *kmpc_malloc(size_t size);
4053 KMP_EXPORT void *kmpc_aligned_malloc(size_t size, size_t alignment);
4055 KMP_EXPORT void *kmpc_realloc(void *ptr, size_t size);
4198 void *data, size_t size);
4468 kmp_int64 lo; // lower
4482 void *data, size_t size,
4529 size_t KMP_EXPAND_NAME(ompc_get_affinity_format)(char *buffer, size_t size);