/sysdeps/nptl/ |
A D | pthread_early_init.h | 32 struct rlimit limit; in __pthread_early_init() local 33 if (__getrlimit (RLIMIT_STACK, &limit) != 0 in __pthread_early_init() 34 || limit.rlim_cur == RLIM_INFINITY) in __pthread_early_init() 37 limit.rlim_cur = ARCH_STACK_DEFAULT_SIZE; in __pthread_early_init() 38 else if (limit.rlim_cur < PTHREAD_STACK_MIN) in __pthread_early_init() 41 limit.rlim_cur = PTHREAD_STACK_MIN; in __pthread_early_init() 48 if (limit.rlim_cur < minstack) in __pthread_early_init() 49 limit.rlim_cur = minstack; in __pthread_early_init() 52 limit.rlim_cur = ALIGN_UP (limit.rlim_cur, pagesz); in __pthread_early_init() 53 __default_pthread_attr.internal.stacksize = limit.rlim_cur; in __pthread_early_init()
|
/sysdeps/posix/ |
A D | ulimit.c | 38 struct rlimit limit; in __ulimit() local 48 if (__getrlimit (RLIMIT_FSIZE, &limit) == 0) in __ulimit() 50 result = (limit.rlim_cur == RLIM_INFINITY in __ulimit() 51 ? LONG_MAX : limit.rlim_cur / 512); in __ulimit() 62 limit.rlim_cur = RLIM_INFINITY; in __ulimit() 63 limit.rlim_max = RLIM_INFINITY; in __ulimit() 68 limit.rlim_cur = newlimit * 512; in __ulimit() 69 limit.rlim_max = newlimit * 512; in __ulimit() 73 result = __setrlimit (RLIMIT_FSIZE, &limit); in __ulimit()
|
/sysdeps/unix/ |
A D | get_child_max.c | 28 struct rlimit limit; in __get_child_max() local 29 if (__getrlimit (RLIMIT_NPROC, &limit) == 0 in __get_child_max() 30 && limit.rlim_cur != RLIM_INFINITY) in __get_child_max() 31 return limit.rlim_cur; in __get_child_max()
|
/sysdeps/mach/hurd/ |
A D | getdtsz.c | 29 rlim_t limit; in __getdtablesize() local 33 limit = _hurd_rlimits[RLIMIT_NOFILE].rlim_cur; in __getdtablesize() 40 return limit == RLIM_INFINITY ? -1 : (int) limit; in __getdtablesize()
|
/sysdeps/aarch64/ |
A D | memcmp.S | 30 #define limit x2 macro 51 cmp limit, 16 61 cmp limit, 32 63 cmp limit, 160 65 sub limit, limit, 32 74 cmp limit, 16 85 subs limit, limit, 32 154 add limit, limit, tmp 156 sub limit, limit, 64 + 16 162 subs limit, limit, 64 [all …]
|
A D | strncmp.S | 32 #define limit x2 macro 89 subs limit, limit, #8 102 add limit, limit, 8 /* Rewind limit to before last subs. */ 183 adds limit, limit, count 184 csinv limit, limit, xzr, lo 192 cmp limit, #16 199 subs limit, limit, #1 213 sub limit, limit, count 256 subs limit, limit, #8 294 cmp limit, #8 [all …]
|
/sysdeps/pthread/ |
A D | tst-create-detached.c | 88 struct rlimit limit; in do_test() local 89 if (getrlimit (RLIMIT_AS, &limit) != 0) in do_test() 97 if (limit.rlim_cur == RLIM_INFINITY || limit.rlim_cur > target) in do_test() 99 limit.rlim_cur = target; in do_test() 100 if (setrlimit (RLIMIT_AS, &limit) != 0) in do_test()
|
/sysdeps/i386/fpu/ |
A D | e_log10.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : log10(2)
|
A D | e_log10f.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : log10(2)
|
A D | e_log10l.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : log10(2)
|
A D | e_log2.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : 1
|
A D | e_log.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : log(2) 77 fcompl MO(limit) // x-1 : x : log(2)
|
A D | e_log2l.S | 17 .type limit,@object 18 limit: .double 0.29 label 19 ASM_SIZE_DIRECTIVE(limit) 43 fcompl MO(limit) // x-1 : x : 1
|
A D | e_logl.S | 18 .type limit,@object 19 limit: .double 0.29 label 20 ASM_SIZE_DIRECTIVE(limit) 47 fcompl MO(limit) // x-1 : x : log(2) 82 fcompl MO(limit) // x-1 : x : log(2)
|
A D | e_acosh.S | 28 .type limit,@object 29 limit: .double 0.29 label 30 ASM_SIZE_DIRECTIVE(limit) 62 fcoml MO(limit)
|
A D | e_acoshf.S | 28 .type limit,@object 29 limit: .double 0.29 label 30 ASM_SIZE_DIRECTIVE(limit) 62 fcoml MO(limit)
|
A D | e_acoshl.S | 34 .type limit,@object 35 limit: .double 0.29 label 36 ASM_SIZE_DIRECTIVE(limit) 69 fcoml MO(limit)
|
A D | e_atanh.S | 32 .type limit,@object 33 limit: .double 0.29 label 34 ASM_SIZE_DIRECTIVE(limit) 78 fcoml MO(limit) // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
|
A D | e_atanhf.S | 32 .type limit,@object 33 limit: .double 0.29 label 34 ASM_SIZE_DIRECTIVE(limit) 78 fcoml MO(limit) // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
|
A D | e_atanhl.S | 37 .type limit,@object 38 limit: .double 0.29 label 39 ASM_SIZE_DIRECTIVE(limit) 92 fcoml MO(limit) // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
|
A D | s_log1p.S | 17 limit: .double 0.29 label 48 fcompl MO(limit)
|
/sysdeps/x86_64/fpu/ |
A D | e_log10l.S | 18 .type limit,@object 19 limit: .double 0.29 label 20 ASM_SIZE_DIRECTIVE(limit) 41 fcompl MO(limit) // x-1 : x : log10(2) 75 fcompl MO(limit) // x-1 : x : log10(2)
|
A D | e_log2l.S | 18 .type limit,@object 19 limit: .double 0.29 label 20 ASM_SIZE_DIRECTIVE(limit) 41 fcompl MO(limit) // x-1 : x : 1 75 fcompl MO(limit) // x-1 : x : 1
|
A D | e_logl.S | 18 .type limit,@object 19 limit: .double 0.29 label 20 ASM_SIZE_DIRECTIVE(limit) 44 fcompl MO(limit) // x-1 : x : log(2) 78 fcompl MO(limit) // x-1 : x : log(2)
|
/sysdeps/i386/i686/fpu/ |
A D | e_logl.S | 19 .type limit,@object 20 limit: .double 0.29 label 21 ASM_SIZE_DIRECTIVE(limit) 46 fld MO(limit) // 0.29 : |x-1| : x-1 : x : log(2) 79 fld MO(limit) // 0.29 : |x-1| : x-1 : x : log(2)
|