Home
last modified time | relevance | path

Searched refs:sigh (Results 1 – 19 of 19) sorted by relevance

/OK3568_Linux_fs/kernel/arch/x86/math-emu/
H A Dreg_ld_str.c59 if (!(ptr->sigh | ptr->sigl)) { in FPU_tagof()
71 if (!(ptr->sigh & 0x80000000)) { in FPU_tagof()
113 loaded_data->sigh = 0x80000000; in FPU_load_double()
120 loaded_data->sigh = (m64 << 11) | 0x80000000; in FPU_load_double()
121 loaded_data->sigh |= l64 >> 21; in FPU_load_double()
134 loaded_data->sigh = m64 << 11; in FPU_load_double()
135 loaded_data->sigh |= l64 >> 21; in FPU_load_double()
143 loaded_data->sigh = (m64 << 11) | 0x80000000; in FPU_load_double()
144 loaded_data->sigh |= l64 >> 21; in FPU_load_double()
178 loaded_data->sigh = m32; in FPU_load_single()
[all …]
H A Derrors.c193 (long)(r->sigh >> 16), in FPU_printall()
194 (long)(r->sigh & 0xFFFF), in FPU_printall()
378 isNaN = (exponent(a) == EXP_OVER) && (a->sigh & 0x80000000); in real_1op_NaN()
382 signalling = isNaN && !(a->sigh & 0x40000000); in real_1op_NaN()
399 if (!(a->sigh & 0x80000000)) { /* pseudo-NaN ? */ in real_1op_NaN()
403 a->sigh |= 0x40000000; in real_1op_NaN()
430 && (a->sigh & 0x80000000))) in real_2op_NaN()
432 && !((exponent(b) == EXP_OVER) && (b->sigh & 0x80000000))); in real_2op_NaN()
446 signalling = !(a->sigh & b->sigh & 0x40000000); in real_2op_NaN()
456 signalling = !(a->sigh & 0x40000000); in real_2op_NaN()
[all …]
H A Dreg_compare.c95 (st0_ptr->sigh & 0xc0000000) == 0x80000000; in compare()
98 sigh & 0x80000000)); in compare()
102 (b->sigh & 0xc0000000) == 0x80000000; in compare()
104 && (b->sigh & 0x80000000)); in compare()
135 if (!(st0_ptr->sigh & 0x80000000)) in compare()
137 if (!(b->sigh & 0x80000000)) in compare()
143 diff = st0_ptr->sigh - b->sigh; /* Works only if ms bits are in compare()
H A Dreg_add_sub.c61 diff = a->sigh - b->sigh; /* This works only if the ms bits in FPU_add()
172 diff = a->sigh - b->sigh; /* Works only if ms bits are identical */ in FPU_sub()
295 if ((tagb == TW_Denormal) && (b->sigh & 0x80000000)) { in add_sub_specials()
307 if ((taga == TW_Denormal) && (a->sigh & 0x80000000)) { in add_sub_specials()
H A Dfpu_trig.c127 ((st0_ptr->sigh > CONST_PI2.sigh) in trig_arg()
128 || ((st0_ptr->sigh == CONST_PI2.sigh) in trig_arg()
171 dest->sigh = num; in convert_l2reg()
199 && (st0_ptr->sigh & 0x80000000); in single_arg_2_error()
200 if (isNaN && !(st0_ptr->sigh & 0x40000000)) { /* Signaling ? */ in single_arg_2_error()
205 st0_ptr->sigh |= 0x40000000; in single_arg_2_error()
837 && (tmp.sigh & 0xc0000000)) { in do_fprem()
912 if (!(tmp.sigh | tmp.sigl)) { in do_fprem()
1040 if ((st0_ptr->sigh == 0x80000000) in fyl2x()
1046 exponent.sigh = e; in fyl2x()
[all …]
H A Dpoly_atan.c79 ((st0_ptr->sigh < st1_ptr->sigh) || in poly_atan()
80 ((st0_ptr->sigh == st1_ptr->sigh) && in poly_atan()
H A Dreg_convert.c30 if (x->sigh & 0x80000000) { in FPU_to_exp16()
42 if (!(x->sigh & 0x80000000)) { in FPU_to_exp16()
H A Dpoly_sin.c73 || ((exponent == -1) && (st0_ptr->sigh <= 0xe21240aa))) { in poly_sine()
76 argSqrd.msw = st0_ptr->sigh; in poly_sine()
223 || ((exponent == -1) && (st0_ptr->sigh <= 0xb00d6f54))) { in poly_cos()
226 argSqrd.msw = st0_ptr->sigh; in poly_cos()
H A Dfpu_tags.c70 else if ((ptr->sigh == 0x80000000) && (ptr->sigl == 0)) in FPU_Special()
78 && !((ptr->sigh == 0x80000000) && (ptr->sigl == 0))); in isNaN()
H A Dpoly_l2.c38 if (st0_ptr->sigh > (unsigned)0xb504f334) { in poly_l2()
46 x.sigh = st0_ptr->sigh - 0x80000000; in poly_l2()
H A Dfpu_etc.c109 if ((st0_ptr->sigh & 0x80000000) in fxam()
H A Dpoly_tan.c70 || ((exponent == -1) && (st0_ptr->sigh > 0xc90fdaa2))) { in poly_tan()
H A Dfpu_emu.h120 unsigned sigh; member
/OK3568_Linux_fs/kernel/kernel/
H A Dptrace.c537 static int ignoring_children(struct sighand_struct *sigh) in ignoring_children() argument
540 spin_lock(&sigh->siglock); in ignoring_children()
541 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) || in ignoring_children()
542 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT); in ignoring_children()
543 spin_unlock(&sigh->siglock); in ignoring_children()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/pkgconf/pkgconf/
H A D0001-tuple-test-for-and-stop-string-processing-on-truncat.patch9 decided to blog about it instead. sigh.
/OK3568_Linux_fs/kernel/Documentation/core-api/
H A Derrseq.rst100 glitches and he makes a mistake. He sighs a heavy sigh, and marks it
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Darcnet.rst27 didn't even have to install the patch. <sigh>
/OK3568_Linux_fs/external/xserver/
H A DChangeLog8420 Pushed the wrong thing, sigh.
9347 Also unbreak 'make distcheck', sigh autotools.
39307 The reason is miarc.c provided its own definitions (sigh) of min/max,
39309 uses a double (sigh) and some min-involving math for its loop index
58289 current drawables (sigh), we do still need to loseCurrent so that we
68859 intentionally exported (sigh xf86Priv.h) so that drivers can check that
139969 XQuartz: CFBundleShortVersionString needs to conform to X.Y.Z as well... sigh
178779 Fixing the Mesa build again, sigh. Add slang_execute_x86.c. Add
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...