sigh              193 arch/x86/math-emu/errors.c 			       (long)(r->sigh >> 16),
sigh              194 arch/x86/math-emu/errors.c 			       (long)(r->sigh & 0xFFFF),
sigh              378 arch/x86/math-emu/errors.c 	isNaN = (exponent(a) == EXP_OVER) && (a->sigh & 0x80000000);
sigh              382 arch/x86/math-emu/errors.c 	signalling = isNaN && !(a->sigh & 0x40000000);
sigh              399 arch/x86/math-emu/errors.c 		if (!(a->sigh & 0x80000000)) {	/* pseudo-NaN ? */
sigh              403 arch/x86/math-emu/errors.c 		a->sigh |= 0x40000000;
sigh              430 arch/x86/math-emu/errors.c 			    && (a->sigh & 0x80000000)))
sigh              432 arch/x86/math-emu/errors.c 		&& !((exponent(b) == EXP_OVER) && (b->sigh & 0x80000000)));
sigh              446 arch/x86/math-emu/errors.c 			signalling = !(a->sigh & b->sigh & 0x40000000);
sigh              456 arch/x86/math-emu/errors.c 			signalling = !(a->sigh & 0x40000000);
sigh              463 arch/x86/math-emu/errors.c 		signalling = !(b->sigh & 0x40000000);
sigh              478 arch/x86/math-emu/errors.c 		if (!(x->sigh & 0x80000000))	/* pseudo-NaN ? */
sigh              487 arch/x86/math-emu/errors.c 		dest->sigh |= 0x40000000;
sigh              120 arch/x86/math-emu/fpu_emu.h 	unsigned sigh;
sigh              109 arch/x86/math-emu/fpu_etc.c 			if ((st0_ptr->sigh & 0x80000000)
sigh               70 arch/x86/math-emu/fpu_tags.c 	else if ((ptr->sigh == 0x80000000) && (ptr->sigl == 0))
sigh               78 arch/x86/math-emu/fpu_tags.c 		&& !((ptr->sigh == 0x80000000) && (ptr->sigl == 0)));
sigh              127 arch/x86/math-emu/fpu_trig.c 			    ((st0_ptr->sigh > CONST_PI2.sigh)
sigh              128 arch/x86/math-emu/fpu_trig.c 			     || ((st0_ptr->sigh == CONST_PI2.sigh)
sigh              171 arch/x86/math-emu/fpu_trig.c 	dest->sigh = num;
sigh              199 arch/x86/math-emu/fpu_trig.c 		    && (st0_ptr->sigh & 0x80000000);
sigh              200 arch/x86/math-emu/fpu_trig.c 		if (isNaN && !(st0_ptr->sigh & 0x40000000)) {	/* Signaling ? */
sigh              205 arch/x86/math-emu/fpu_trig.c 				st0_ptr->sigh |= 0x40000000;
sigh              837 arch/x86/math-emu/fpu_trig.c 				    && (tmp.sigh & 0xc0000000)) {
sigh              912 arch/x86/math-emu/fpu_trig.c 			if (!(tmp.sigh | tmp.sigl)) {
sigh             1040 arch/x86/math-emu/fpu_trig.c 			if ((st0_ptr->sigh == 0x80000000)
sigh             1046 arch/x86/math-emu/fpu_trig.c 					exponent.sigh = e;
sigh             1049 arch/x86/math-emu/fpu_trig.c 					exponent.sigh = -e;
sigh             1156 arch/x86/math-emu/fpu_trig.c 			    (st0_ptr->sigh == 0x80000000) &&
sigh             1405 arch/x86/math-emu/fpu_trig.c 				    !((st0_ptr->sigh == 0x80000000) &&
sigh               79 arch/x86/math-emu/poly_atan.c 			       ((st0_ptr->sigh < st1_ptr->sigh) ||
sigh               80 arch/x86/math-emu/poly_atan.c 				((st0_ptr->sigh == st1_ptr->sigh) &&
sigh               38 arch/x86/math-emu/poly_l2.c 	if (st0_ptr->sigh > (unsigned)0xb504f334) {
sigh               46 arch/x86/math-emu/poly_l2.c 		x.sigh = st0_ptr->sigh - 0x80000000;
sigh               73 arch/x86/math-emu/poly_sin.c 	    || ((exponent == -1) && (st0_ptr->sigh <= 0xe21240aa))) {
sigh               76 arch/x86/math-emu/poly_sin.c 		argSqrd.msw = st0_ptr->sigh;
sigh              223 arch/x86/math-emu/poly_sin.c 	    || ((exponent == -1) && (st0_ptr->sigh <= 0xb00d6f54))) {
sigh              226 arch/x86/math-emu/poly_sin.c 		argSqrd.msw = st0_ptr->sigh;
sigh               70 arch/x86/math-emu/poly_tan.c 	    || ((exponent == -1) && (st0_ptr->sigh > 0xc90fdaa2))) {
sigh               61 arch/x86/math-emu/reg_add_sub.c 				diff = a->sigh - b->sigh;	/* This works only if the ms bits
sigh              172 arch/x86/math-emu/reg_add_sub.c 			diff = a->sigh - b->sigh;	/* Works only if ms bits are identical */
sigh              295 arch/x86/math-emu/reg_add_sub.c 			if ((tagb == TW_Denormal) && (b->sigh & 0x80000000)) {
sigh              307 arch/x86/math-emu/reg_add_sub.c 		if ((taga == TW_Denormal) && (a->sigh & 0x80000000)) {
sigh               95 arch/x86/math-emu/reg_compare.c 				    (st0_ptr->sigh & 0xc0000000) == 0x80000000;
sigh               98 arch/x86/math-emu/reg_compare.c 						    sigh & 0x80000000));
sigh              102 arch/x86/math-emu/reg_compare.c 				    (b->sigh & 0xc0000000) == 0x80000000;
sigh              104 arch/x86/math-emu/reg_compare.c 						 && (b->sigh & 0x80000000));
sigh              135 arch/x86/math-emu/reg_compare.c 	if (!(st0_ptr->sigh & 0x80000000))
sigh              137 arch/x86/math-emu/reg_compare.c 	if (!(b->sigh & 0x80000000))
sigh              143 arch/x86/math-emu/reg_compare.c 		diff = st0_ptr->sigh - b->sigh;	/* Works only if ms bits are
sigh               30 arch/x86/math-emu/reg_convert.c 		if (x->sigh & 0x80000000) {
sigh               42 arch/x86/math-emu/reg_convert.c 	if (!(x->sigh & 0x80000000)) {
sigh               59 arch/x86/math-emu/reg_ld_str.c 		if (!(ptr->sigh | ptr->sigl)) {
sigh               71 arch/x86/math-emu/reg_ld_str.c 	if (!(ptr->sigh & 0x80000000)) {
sigh              113 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh = 0x80000000;
sigh              120 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh = (m64 << 11) | 0x80000000;
sigh              121 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh |= l64 >> 21;
sigh              134 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh = m64 << 11;
sigh              135 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh |= l64 >> 21;
sigh              143 arch/x86/math-emu/reg_ld_str.c 		loaded_data->sigh = (m64 << 11) | 0x80000000;
sigh              144 arch/x86/math-emu/reg_ld_str.c 		loaded_data->sigh |= l64 >> 21;
sigh              178 arch/x86/math-emu/reg_ld_str.c 		loaded_data->sigh = m32;
sigh              187 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh = 0x80000000;
sigh              194 arch/x86/math-emu/reg_ld_str.c 			loaded_data->sigh = m32 | 0x80000000;
sigh              199 arch/x86/math-emu/reg_ld_str.c 		loaded_data->sigh = m32 | 0x80000000;
sigh              262 arch/x86/math-emu/reg_ld_str.c 	loaded_data->sigh = s;
sigh              291 arch/x86/math-emu/reg_ld_str.c 	loaded_data->sigh = s << 16;
sigh              351 arch/x86/math-emu/reg_ld_str.c 		FPU_put_user(st0_ptr->sigh,
sigh              403 arch/x86/math-emu/reg_ld_str.c 				    ((tmp.sigh == 0x00100000) && (tmp.sigl == 0)
sigh              418 arch/x86/math-emu/reg_ld_str.c 			l[1] = tmp.sigh;
sigh              449 arch/x86/math-emu/reg_ld_str.c 						if (tmp.sigh == 0xffffffff) {
sigh              451 arch/x86/math-emu/reg_ld_str.c 							tmp.sigh = 0x80000000;
sigh              456 arch/x86/math-emu/reg_ld_str.c 							tmp.sigh++;
sigh              467 arch/x86/math-emu/reg_ld_str.c 			l[0] = (tmp.sigl >> 11) | (tmp.sigh << 21);
sigh              468 arch/x86/math-emu/reg_ld_str.c 			l[1] = ((tmp.sigh >> 11) & 0xfffff);
sigh              513 arch/x86/math-emu/reg_ld_str.c 			    && (st0_ptr->sigh & 0x80000000)) {
sigh              517 arch/x86/math-emu/reg_ld_str.c 							     sigh << 21);
sigh              518 arch/x86/math-emu/reg_ld_str.c 				l[1] = ((st0_ptr->sigh >> 11) & 0xfffff);
sigh              519 arch/x86/math-emu/reg_ld_str.c 				if (!(st0_ptr->sigh & 0x40000000)) {
sigh              589 arch/x86/math-emu/reg_ld_str.c 				      ((st0_ptr->sigh & 0x000000ff)
sigh              605 arch/x86/math-emu/reg_ld_str.c 			if (tmp.sigl | (tmp.sigh & 0x000000ff)) {
sigh              606 arch/x86/math-emu/reg_ld_str.c 				unsigned long sigh = tmp.sigh;
sigh              612 arch/x86/math-emu/reg_ld_str.c 					increment = ((sigh & 0xff) > 0x80)	/* more than half */
sigh              613 arch/x86/math-emu/reg_ld_str.c 					    ||(((sigh & 0xff) == 0x80) && sigl)	/* more than half */
sigh              614 arch/x86/math-emu/reg_ld_str.c 					    ||((sigh & 0x180) == 0x180);	/* round to even */
sigh              618 arch/x86/math-emu/reg_ld_str.c 					    ? 0 : (sigl | (sigh & 0xff));
sigh              622 arch/x86/math-emu/reg_ld_str.c 					    ? (sigl | (sigh & 0xff)) : 0;
sigh              633 arch/x86/math-emu/reg_ld_str.c 					if (sigh >= 0xffffff00) {
sigh              635 arch/x86/math-emu/reg_ld_str.c 						tmp.sigh = 0x80000000;
sigh              640 arch/x86/math-emu/reg_ld_str.c 						tmp.sigh &= 0xffffff00;
sigh              641 arch/x86/math-emu/reg_ld_str.c 						tmp.sigh += 0x100;
sigh              644 arch/x86/math-emu/reg_ld_str.c 					tmp.sigh &= 0xffffff00;	/* Finish the truncation */
sigh              649 arch/x86/math-emu/reg_ld_str.c 			templ = (tmp.sigh >> 8) & 0x007fffff;
sigh              695 arch/x86/math-emu/reg_ld_str.c 			    && (st0_ptr->sigh & 0x80000000)) {
sigh              697 arch/x86/math-emu/reg_ld_str.c 				templ = st0_ptr->sigh >> 8;
sigh              698 arch/x86/math-emu/reg_ld_str.c 				if (!(st0_ptr->sigh & 0x40000000)) {
sigh              774 arch/x86/math-emu/reg_ld_str.c 	((long *)&tll)[1] = t.sigh;
sigh              776 arch/x86/math-emu/reg_ld_str.c 	    ((t.sigh & 0x80000000) &&
sigh              777 arch/x86/math-emu/reg_ld_str.c 	     !((t.sigh == 0x80000000) && (t.sigl == 0) && signnegative(&t)))) {
sigh              822 arch/x86/math-emu/reg_ld_str.c 	if (t.sigh ||
sigh              868 arch/x86/math-emu/reg_ld_str.c 	if (t.sigh ||
sigh              920 arch/x86/math-emu/reg_ld_str.c 	if ((t.sigh > 0x0de0b6b3) ||
sigh              921 arch/x86/math-emu/reg_ld_str.c 	    ((t.sigh == 0x0de0b6b3) && (t.sigl > 0xa763ffff))) {
sigh              982 arch/x86/math-emu/reg_ld_str.c 		r->sigl = r->sigh = ~0;	/* The largest representable number */
sigh              987 arch/x86/math-emu/reg_ld_str.c 	very_big = !(~(r->sigh) | ~(r->sigl));	/* test for 0xfff...fff */
sigh             1101 arch/x86/math-emu/reg_ld_str.c 				     sigh))
sigh             1108 arch/x86/math-emu/reg_ld_str.c 			} else if (fpu_register(i).sigh & 0x80000000)
sigh              499 kernel/ptrace.c static int ignoring_children(struct sighand_struct *sigh)
sigh              502 kernel/ptrace.c 	spin_lock(&sigh->siglock);
sigh              503 kernel/ptrace.c 	ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
sigh              504 kernel/ptrace.c 	      (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
sigh              505 kernel/ptrace.c 	spin_unlock(&sigh->siglock);