/l4re-core-master/uclibc/lib/contrib/uclibc/libm/ |
A D | e_scalb.c | 22 double __ieee754_scalb(double x, double fn) in __ieee754_scalb() argument 24 if (isnan(x)||isnan(fn)) return x*fn; in __ieee754_scalb() 25 if (!isfinite(fn)) { in __ieee754_scalb() 26 if(fn>0.0) return x*fn; in __ieee754_scalb() 27 else return x/(-fn); in __ieee754_scalb() 29 if (rint(fn)!=fn) return (fn-fn)/(fn-fn); in __ieee754_scalb() 30 if ( fn > 65000.0) return scalbn(x, 65000); in __ieee754_scalb() 32 return scalbn(x,(int)fn); in __ieee754_scalb() 42 double scalb(double x, double fn) in scalb() argument 44 double z = __ieee754_scalb(x, fn); in scalb() [all …]
|
A D | e_rem_pio2.c | 71 double z=0.0,w,t,r,fn; in __ieee754_rem_pio2() local 108 fn = (double)n; in __ieee754_rem_pio2() 109 r = t-fn*pio2_1; in __ieee754_rem_pio2() 110 w = fn*pio2_1t; /* 1st round good to 85 bit */ in __ieee754_rem_pio2() 121 w = fn*pio2_2; in __ieee754_rem_pio2() 123 w = fn*pio2_2t-((t-r)-w); in __ieee754_rem_pio2() 129 w = fn*pio2_3; in __ieee754_rem_pio2() 131 w = fn*pio2_3t-((t-r)-w); in __ieee754_rem_pio2()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/microblaze/ |
A D | clone.c | 13 int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...) in clone() 16 if (fn && child_stack) in clone() 21 int exitCode = fn(arg); in clone() 30 __clone2(int (*fn)(void *arg), void *child_stack, size_t stack_size, in __clone2() 34 if (fn && child_stack) in __clone2() 41 int exitCode = fn(arg); in __clone2()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/unistd/ |
A D | clone_cruft.h | 11 # define do_clone(fn, stack, flags, arg) \ argument 12 __clone2(fn, stack, crappy_sizeof(stack), flags, arg, NULL, NULL, NULL) 16 # define do_clone(fn, stack, flags, arg) \ argument 17 clone(fn, stack, flags, arg) 21 # define do_clone(fn, stack, flags, arg) \ argument 22 clone(fn, stack+crappy_sizeof(stack), flags, arg)
|
/l4re-core-master/libc_backends/lib/mount/ |
A D | mount.cc | 50 static void parse_fstab_line(const char *fn, int line_nr, in parse_fstab_line() argument 86 fn, line_nr, line.l(), line.s()); in parse_fstab_line() 100 fn, line_nr, s1, s2, s3, 0, s5, strerror(errno)); in parse_fstab_line() 106 fprintf(stderr, "libmount: %s.%d: memory allocation error\n", fn, line_nr); in parse_fstab_line() 113 static void parse_fstab(const char *fn, char *fstab, size_t sz) in parse_fstab() argument 120 printf("libmount: Parsing '%s'\n", fn); in parse_fstab() 126 parse_fstab_line(fn, line_nr, fstab, s); in parse_fstab()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/ |
A D | clone.S | 13 ; int clone(int (*fn)(void *), void *child_stack, 30 cmp r0, 0 ; @fn can't be NULL 34 ; @fn and @args needed after the syscall for child 36 ; r0 containg @fn will be clobbered AFTER syscall (with ret val) 52 ; child jumps off to @fn with @arg as argument 56 ; falls thru to _exit() with result from @fn (already in r0)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/bfin/ |
A D | clone.c | 14 clone (int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...) in clone() 18 if (fn && child_stack) { in clone() 38 : "qA" (__NR_clone), "q1" (child_stack), "q0" (flags), "a" (arg), "a" (fn), "i" (__NR_exit) in clone()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/avr32/ |
A D | clone.c | 18 int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...) in clone() 20 register int (*_fn)(void *arg) = fn; in clone() 26 if (!fn) in clone()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/nios2/ |
A D | clone.c | 20 int clone (int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...) in clone() 24 if (fn && child_stack) { in clone() 41 arg0 = (*fn) (arg); in clone()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/v850/ |
A D | clone.c | 18 clone (int (*fn)(void *arg), void *child_stack, int flags, void *arg) in clone() 22 if (fn && child_stack) in clone() 40 arg0 = (*fn) (arg); in clone()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | expr.c | 1056 fn(data, NULL, "y"); in expr_print() 1061 fn(data, NULL, "("); in expr_print() 1070 fn(data, NULL, "!"); in expr_print() 1078 fn(data, NULL, "="); in expr_print() 1086 fn(data, NULL, "!="); in expr_print() 1091 fn(data, NULL, " || "); in expr_print() 1107 fn(data, NULL, "["); in expr_print() 1109 fn(data, NULL, " "); in expr_print() 1111 fn(data, NULL, "]"); in expr_print() 1117 fn(data, NULL, buf); in expr_print() [all …]
|
A D | lkc_proto.h | 11 P(conf_set_changed_callback, void,(void (*fn)(void))); 12 P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap))); 57 P(expr_print,void,(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, i…
|
/l4re-core-master/uclibc/lib/libpthread/src/ |
A D | l4.cc | 42 void (*fn)(pthread_t) = (void (*)(pthread_t))arg; in cb() local 44 fn(th->p_tid); in cb() 47 void pthread_l4_for_each_thread(void (*fn)(pthread_t)) in pthread_l4_for_each_thread() 53 request.req_args.for_each.arg = (void *)fn; in pthread_l4_for_each_thread() 54 request.req_args.for_each.fn = cb; in pthread_l4_for_each_thread()
|
A D | manager.cc | 113 void (*fn)(void *, pthread_descr)); 173 request.req_args.create.fn, in __pthread_manager() 219 request.req_args.for_each.fn); in __pthread_manager() 1019 void (*fn)(void *, pthread_descr)) in pthread_for_each_thread() 1026 fn(arg, th); in pthread_for_each_thread() 1029 fn(arg, __pthread_main_thread); in pthread_for_each_thread()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/include/ |
A D | dl-syscall.h | 62 static __always_inline int _dl_open(const char *fn, in _syscall1() 65 return INLINE_SYSCALL(openat, 4, AT_FDCWD, fn, flags, mode); in _syscall1() 70 static __always_inline _syscall3(int, _dl_open, const char *, fn, int, flags, 89 fn, struct stat *, stat, int, flags) in _syscall3()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/c6x/ |
A D | clone.S | 21 ; int _clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg); 31 ;int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) 34 ; int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg, 43 || MV .D1 A4,A9 ; backup fn and child_stack pointers
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/fnmatch/ |
A D | fnmatch_loop.c | 209 UCHAR fn; in FCT() local 228 fn = FOLD ((UCHAR) *n); in FCT() 602 if (!is_range && c == fn) in FCT() 631 fcollseq = __collseq_table_lookup (collseq, fn); in FCT() 643 fcollseq = collseq[fn]; in FCT() 843 if (cold <= fn && fn <= cend) in FCT()
|
/l4re-core-master/l4util/lib/src/ |
A D | parse_cmdline.c | 31 parse_cmd_fn_t fn; // function to call member 183 pa[c].arg.fn = va_arg(va, parse_cmd_fn_t); in parse_cmdlinev() 266 pa[idx].arg.fn(pa[idx].val.id); in parse_cmdlinev()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/ext/ |
A D | typelist.h | 403 apply(Fn& fn, Typelist) 406 a(fn); 411 apply_generator(Fn& fn, Typelist) 414 a(fn); 419 apply_generator(Fn& fn, TypelistT, TypelistV) 424 a(fn);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/ext/ |
A D | typelist.h | 403 apply(Fn& fn, Typelist) 406 a(fn); 411 apply_generator(Fn& fn, Typelist) 414 a(fn); 419 apply_generator(Fn& fn, TypelistT, TypelistV) 424 a(fn);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/ext/ |
A D | typelist.h | 403 apply(Fn& fn, Typelist) 406 a(fn); 411 apply_generator(Fn& fn, Typelist) 414 a(fn); 419 apply_generator(Fn& fn, TypelistT, TypelistV) 424 a(fn);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/ext/ |
A D | typelist.h | 382 apply(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 385 a(fn); in _GLIBCXX_VISIBILITY() 390 apply_generator(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 393 a(fn); in _GLIBCXX_VISIBILITY() 398 apply_generator(Fn& fn, TypelistT, TypelistV) in _GLIBCXX_VISIBILITY() 403 a(fn); in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/ext/ |
A D | typelist.h | 382 apply(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 385 a(fn); in _GLIBCXX_VISIBILITY() 390 apply_generator(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 393 a(fn); in _GLIBCXX_VISIBILITY() 398 apply_generator(Fn& fn, TypelistT, TypelistV) in _GLIBCXX_VISIBILITY() 403 a(fn); in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/ext/ |
A D | typelist.h | 382 apply(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 385 a(fn); in _GLIBCXX_VISIBILITY() 390 apply_generator(Fn& fn, Typelist) in _GLIBCXX_VISIBILITY() 393 a(fn); in _GLIBCXX_VISIBILITY() 398 apply_generator(Fn& fn, TypelistT, TypelistV) in _GLIBCXX_VISIBILITY() 403 a(fn); in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/ext/ |
A D | typelist.h | 403 apply(Fn& fn, Typelist) 406 a(fn); 411 apply_generator(Fn& fn, Typelist) 414 a(fn); 419 apply_generator(Fn& fn, TypelistT, TypelistV) 424 a(fn);
|