control_word      166 arch/x86/math-emu/errors.c 	       control_word & 0x1000 ? 1 : 0,
control_word      167 arch/x86/math-emu/errors.c 	       (control_word & 0x800) >> 11, (control_word & 0x400) >> 10,
control_word      168 arch/x86/math-emu/errors.c 	       (control_word & 0x200) >> 9, (control_word & 0x100) >> 8,
control_word      169 arch/x86/math-emu/errors.c 	       control_word & 0x80 ? 1 : 0,
control_word      170 arch/x86/math-emu/errors.c 	       control_word & SW_Precision ? 1 : 0,
control_word      171 arch/x86/math-emu/errors.c 	       control_word & SW_Underflow ? 1 : 0,
control_word      172 arch/x86/math-emu/errors.c 	       control_word & SW_Overflow ? 1 : 0,
control_word      173 arch/x86/math-emu/errors.c 	       control_word & SW_Zero_Div ? 1 : 0,
control_word      174 arch/x86/math-emu/errors.c 	       control_word & SW_Denorm_Op ? 1 : 0,
control_word      175 arch/x86/math-emu/errors.c 	       control_word & SW_Invalid ? 1 : 0);
control_word      321 arch/x86/math-emu/errors.c 		if (partial_status & ~control_word & CW_Exceptions)
control_word      332 arch/x86/math-emu/errors.c 	if ((~control_word & n & CW_Exceptions) || (n == EX_INTERNAL)) {
control_word      389 arch/x86/math-emu/errors.c 			if (control_word & CW_Invalid) {
control_word      394 arch/x86/math-emu/errors.c 			return (!(control_word & CW_Invalid) ? FPU_Exception :
control_word      400 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      411 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Special;
control_word      437 arch/x86/math-emu/errors.c 		if (control_word & CW_Invalid) {
control_word      442 arch/x86/math-emu/errors.c 		return (!(control_word & CW_Invalid) ? FPU_Exception : 0) |
control_word      477 arch/x86/math-emu/errors.c 	if ((!signalling) || (control_word & CW_Invalid)) {
control_word      495 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Special;
control_word      505 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      510 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Valid;
control_word      520 arch/x86/math-emu/errors.c 	if (control_word & CW_ZeroDiv) {
control_word      529 arch/x86/math-emu/errors.c 	return (!(control_word & CW_ZeroDiv) ? FPU_Exception : 0) | tag;
control_word      536 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision) {
control_word      549 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision)
control_word      558 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision) {	/* The masked response */
control_word      567 arch/x86/math-emu/errors.c 	if (control_word & CW_Denormal) {	/* The masked response */
control_word      580 arch/x86/math-emu/errors.c 	if (control_word & CW_Overflow) {
control_word      591 arch/x86/math-emu/errors.c 	if (control_word & CW_Overflow) {
control_word      608 arch/x86/math-emu/errors.c 	if (control_word & CW_Underflow) {
control_word      623 arch/x86/math-emu/errors.c 	if (control_word & CW_Underflow) {
control_word      636 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      651 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      665 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      679 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word       23 arch/x86/math-emu/fpu_arith.c 	FPU_add(&st(i), FPU_gettagi(i), 0, control_word);
control_word       31 arch/x86/math-emu/fpu_arith.c 	FPU_mul(&st(i), FPU_gettagi(i), 0, control_word);
control_word       38 arch/x86/math-emu/fpu_arith.c 	FPU_sub(0, FPU_rm, control_word);
control_word       45 arch/x86/math-emu/fpu_arith.c 	FPU_sub(REV, FPU_rm, control_word);
control_word       52 arch/x86/math-emu/fpu_arith.c 	FPU_div(0, FPU_rm, control_word);
control_word       59 arch/x86/math-emu/fpu_arith.c 	FPU_div(REV, FPU_rm, control_word);
control_word       67 arch/x86/math-emu/fpu_arith.c 	FPU_add(&st(i), FPU_gettagi(i), i, control_word);
control_word       74 arch/x86/math-emu/fpu_arith.c 	FPU_mul(&st(0), FPU_gettag0(), FPU_rm, control_word);
control_word       81 arch/x86/math-emu/fpu_arith.c 	FPU_sub(DEST_RM, FPU_rm, control_word);
control_word       88 arch/x86/math-emu/fpu_arith.c 	FPU_sub(REV | DEST_RM, FPU_rm, control_word);
control_word       95 arch/x86/math-emu/fpu_arith.c 	FPU_div(DEST_RM, FPU_rm, control_word);
control_word      102 arch/x86/math-emu/fpu_arith.c 	FPU_div(REV | DEST_RM, FPU_rm, control_word);
control_word      110 arch/x86/math-emu/fpu_arith.c 	if (FPU_add(&st(i), FPU_gettagi(i), i, control_word) >= 0)
control_word      118 arch/x86/math-emu/fpu_arith.c 	if (FPU_mul(&st(0), FPU_gettag0(), FPU_rm, control_word) >= 0)
control_word      126 arch/x86/math-emu/fpu_arith.c 	if (FPU_sub(DEST_RM, FPU_rm, control_word) >= 0)
control_word      134 arch/x86/math-emu/fpu_arith.c 	if (FPU_sub(REV | DEST_RM, FPU_rm, control_word) >= 0)
control_word      142 arch/x86/math-emu/fpu_arith.c 	if (FPU_div(DEST_RM, FPU_rm, control_word) >= 0)
control_word      150 arch/x86/math-emu/fpu_arith.c 	if (FPU_div(REV | DEST_RM, FPU_rm, control_word) >= 0)
control_word       35 arch/x86/math-emu/fpu_aux.c 	control_word = 0x037f;
control_word      111 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      137 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      145 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      369 arch/x86/math-emu/fpu_entry.c 						    && (control_word &
control_word      437 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      442 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      458 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      464 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      470 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      479 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      488 arch/x86/math-emu/fpu_entry.c 					    && (control_word & CW_Invalid))
control_word       38 arch/x86/math-emu/fpu_trig.c 	int old_cw = control_word, saved_status = partial_status;
control_word       46 arch/x86/math-emu/fpu_trig.c 	control_word &= ~CW_RC;
control_word       47 arch/x86/math-emu/fpu_trig.c 	control_word |= RC_CHOP;
control_word      144 arch/x86/math-emu/fpu_trig.c 	control_word = old_cw;
control_word      201 arch/x86/math-emu/fpu_trig.c 			if (control_word & CW_Invalid) {
control_word      215 arch/x86/math-emu/fpu_trig.c 			if (control_word & CW_Invalid) {
control_word      284 arch/x86/math-emu/fpu_trig.c 		if (control_word & CW_Invalid) {
control_word      422 arch/x86/math-emu/fpu_trig.c 		if (control_word & EX_Invalid) {
control_word      469 arch/x86/math-emu/fpu_trig.c 		tag = wm_sqrt(st0_ptr, 0, 0, control_word, SIGN_POS);
control_word      694 arch/x86/math-emu/fpu_trig.c 		if (control_word & CW_Invalid) {
control_word      800 arch/x86/math-emu/fpu_trig.c 		old_cw = control_word;
control_word      806 arch/x86/math-emu/fpu_trig.c 		control_word &= ~CW_RC;
control_word      807 arch/x86/math-emu/fpu_trig.c 		control_word |= RC_CHOP;
control_word      868 arch/x86/math-emu/fpu_trig.c 				control_word = old_cw;
control_word      913 arch/x86/math-emu/fpu_trig.c 				control_word = old_cw;
control_word      927 arch/x86/math-emu/fpu_trig.c 		control_word = old_cw;
control_word      935 arch/x86/math-emu/fpu_trig.c 		    && !(control_word & CW_Underflow)) {
control_word     1484 arch/x86/math-emu/fpu_trig.c 	int old_cw = control_word;
control_word     1511 arch/x86/math-emu/fpu_trig.c 		control_word &= ~CW_RC;
control_word     1512 arch/x86/math-emu/fpu_trig.c 		control_word |= RC_CHOP;
control_word     1515 arch/x86/math-emu/fpu_trig.c 		control_word = old_cw;
control_word     1522 arch/x86/math-emu/fpu_trig.c 		FPU_round(st0_ptr, 0, 0, control_word, sign);
control_word      215 arch/x86/math-emu/load_store.c 		FPU_get_user(control_word,
control_word      218 arch/x86/math-emu/load_store.c 		if (partial_status & ~control_word & CW_Exceptions)
control_word      223 arch/x86/math-emu/load_store.c 		control_word |= 0x40;	/* An 80486 appears to always set this bit */
control_word      255 arch/x86/math-emu/load_store.c 		FPU_put_user(control_word,
control_word      215 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      223 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      261 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      271 arch/x86/math-emu/reg_compare.c 			return !(control_word & CW_Invalid);
control_word      116 arch/x86/math-emu/reg_constant.c 	(constants_table[FPU_rm]) (control_word & CW_RC);
control_word      362 arch/x86/math-emu/reg_ld_str.c 	if (control_word & CW_Invalid) {
control_word      409 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Underflow))
control_word      413 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      421 arch/x86/math-emu/reg_ld_str.c 				switch (control_word & CW_RC) {
control_word      472 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Overflow))
control_word      475 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      502 arch/x86/math-emu/reg_ld_str.c 			if (control_word & CW_Underflow)
control_word      521 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Invalid))
control_word      529 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Invalid))
control_word      537 arch/x86/math-emu/reg_ld_str.c 		if (control_word & CW_Invalid) {
control_word      595 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Underflow))
control_word      599 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      609 arch/x86/math-emu/reg_ld_str.c 				switch (control_word & CW_RC) {
control_word      653 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Overflow))
control_word      656 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      685 arch/x86/math-emu/reg_ld_str.c 			if (control_word & CW_Underflow)
control_word      700 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Invalid))
control_word      708 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Invalid))
control_word      722 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      780 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      827 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      873 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      924 arch/x86/math-emu/reg_ld_str.c 		if (control_word & CW_Invalid) {
control_word      990 arch/x86/math-emu/reg_ld_str.c 	switch (control_word & CW_RC) {
control_word     1037 arch/x86/math-emu/reg_ld_str.c 		FPU_get_user(control_word, (unsigned short __user *)s);
control_word     1059 arch/x86/math-emu/reg_ld_str.c 		FPU_get_user(control_word, (unsigned short __user *)s);
control_word     1077 arch/x86/math-emu/reg_ld_str.c 	control_word &= ~0xe080;
control_word     1082 arch/x86/math-emu/reg_ld_str.c 	if (partial_status & ~control_word & CW_Exceptions)
control_word     1150 arch/x86/math-emu/reg_ld_str.c 		FPU_put_user(control_word & ~0xe080, (unsigned long __user *)d);
control_word     1152 arch/x86/math-emu/reg_ld_str.c 		FPU_put_user(control_word, (unsigned short __user *)d);
control_word     1178 arch/x86/math-emu/reg_ld_str.c 		control_word &= ~0xe080;
control_word     1180 arch/x86/math-emu/reg_ld_str.c 		control_word |= 0xffff0040;
control_word     1186 arch/x86/math-emu/reg_ld_str.c 		if (__copy_to_user(d, &control_word, 7 * 4))
control_word     1192 arch/x86/math-emu/reg_ld_str.c 	control_word |= CW_Exceptions;