control_word      167 arch/x86/math-emu/errors.c 	       control_word & 0x1000 ? 1 : 0,
control_word      168 arch/x86/math-emu/errors.c 	       (control_word & 0x800) >> 11, (control_word & 0x400) >> 10,
control_word      169 arch/x86/math-emu/errors.c 	       (control_word & 0x200) >> 9, (control_word & 0x100) >> 8,
control_word      170 arch/x86/math-emu/errors.c 	       control_word & 0x80 ? 1 : 0,
control_word      171 arch/x86/math-emu/errors.c 	       control_word & SW_Precision ? 1 : 0,
control_word      172 arch/x86/math-emu/errors.c 	       control_word & SW_Underflow ? 1 : 0,
control_word      173 arch/x86/math-emu/errors.c 	       control_word & SW_Overflow ? 1 : 0,
control_word      174 arch/x86/math-emu/errors.c 	       control_word & SW_Zero_Div ? 1 : 0,
control_word      175 arch/x86/math-emu/errors.c 	       control_word & SW_Denorm_Op ? 1 : 0,
control_word      176 arch/x86/math-emu/errors.c 	       control_word & SW_Invalid ? 1 : 0);
control_word      323 arch/x86/math-emu/errors.c 		if (partial_status & ~control_word & CW_Exceptions)
control_word      334 arch/x86/math-emu/errors.c 	if ((~control_word & n & CW_Exceptions) || (n == EX_INTERNAL)) {
control_word      386 arch/x86/math-emu/errors.c 			if (control_word & CW_Invalid) {
control_word      391 arch/x86/math-emu/errors.c 			return (!(control_word & CW_Invalid) ? FPU_Exception :
control_word      397 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      408 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Special;
control_word      434 arch/x86/math-emu/errors.c 		if (control_word & CW_Invalid) {
control_word      439 arch/x86/math-emu/errors.c 		return (!(control_word & CW_Invalid) ? FPU_Exception : 0) |
control_word      474 arch/x86/math-emu/errors.c 	if ((!signalling) || (control_word & CW_Invalid)) {
control_word      492 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Special;
control_word      502 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      507 arch/x86/math-emu/errors.c 	return (!(control_word & CW_Invalid) ? FPU_Exception : 0) | TAG_Valid;
control_word      517 arch/x86/math-emu/errors.c 	if (control_word & CW_ZeroDiv) {
control_word      526 arch/x86/math-emu/errors.c 	return (!(control_word & CW_ZeroDiv) ? FPU_Exception : 0) | tag;
control_word      533 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision) {
control_word      546 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision)
control_word      555 arch/x86/math-emu/errors.c 	if (control_word & CW_Precision) {	/* The masked response */
control_word      564 arch/x86/math-emu/errors.c 	if (control_word & CW_Denormal) {	/* The masked response */
control_word      577 arch/x86/math-emu/errors.c 	if (control_word & CW_Overflow) {
control_word      588 arch/x86/math-emu/errors.c 	if (control_word & CW_Overflow) {
control_word      605 arch/x86/math-emu/errors.c 	if (control_word & CW_Underflow) {
control_word      620 arch/x86/math-emu/errors.c 	if (control_word & CW_Underflow) {
control_word      633 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      648 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      662 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word      676 arch/x86/math-emu/errors.c 	if (control_word & CW_Invalid) {
control_word       24 arch/x86/math-emu/fpu_arith.c 	FPU_add(&st(i), FPU_gettagi(i), 0, control_word);
control_word       32 arch/x86/math-emu/fpu_arith.c 	FPU_mul(&st(i), FPU_gettagi(i), 0, control_word);
control_word       39 arch/x86/math-emu/fpu_arith.c 	FPU_sub(0, FPU_rm, control_word);
control_word       46 arch/x86/math-emu/fpu_arith.c 	FPU_sub(REV, FPU_rm, control_word);
control_word       53 arch/x86/math-emu/fpu_arith.c 	FPU_div(0, FPU_rm, control_word);
control_word       60 arch/x86/math-emu/fpu_arith.c 	FPU_div(REV, FPU_rm, control_word);
control_word       68 arch/x86/math-emu/fpu_arith.c 	FPU_add(&st(i), FPU_gettagi(i), i, control_word);
control_word       75 arch/x86/math-emu/fpu_arith.c 	FPU_mul(&st(0), FPU_gettag0(), FPU_rm, control_word);
control_word       82 arch/x86/math-emu/fpu_arith.c 	FPU_sub(DEST_RM, FPU_rm, control_word);
control_word       89 arch/x86/math-emu/fpu_arith.c 	FPU_sub(REV | DEST_RM, FPU_rm, control_word);
control_word       96 arch/x86/math-emu/fpu_arith.c 	FPU_div(DEST_RM, FPU_rm, control_word);
control_word      103 arch/x86/math-emu/fpu_arith.c 	FPU_div(REV | DEST_RM, FPU_rm, control_word);
control_word      111 arch/x86/math-emu/fpu_arith.c 	if (FPU_add(&st(i), FPU_gettagi(i), i, control_word) >= 0)
control_word      119 arch/x86/math-emu/fpu_arith.c 	if (FPU_mul(&st(0), FPU_gettag0(), FPU_rm, control_word) >= 0)
control_word      127 arch/x86/math-emu/fpu_arith.c 	if (FPU_sub(DEST_RM, FPU_rm, control_word) >= 0)
control_word      135 arch/x86/math-emu/fpu_arith.c 	if (FPU_sub(REV | DEST_RM, FPU_rm, control_word) >= 0)
control_word      143 arch/x86/math-emu/fpu_arith.c 	if (FPU_div(DEST_RM, FPU_rm, control_word) >= 0)
control_word      151 arch/x86/math-emu/fpu_arith.c 	if (FPU_div(REV | DEST_RM, FPU_rm, control_word) >= 0)
control_word      121 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      147 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      155 arch/x86/math-emu/fpu_aux.c 		if (control_word & CW_Invalid) {
control_word      328 arch/x86/math-emu/fpu_entry.c 						    && (control_word &
control_word      396 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      401 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      417 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      423 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      429 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      438 arch/x86/math-emu/fpu_entry.c 						control_word);
control_word      447 arch/x86/math-emu/fpu_entry.c 					    && (control_word & CW_Invalid))
control_word       39 arch/x86/math-emu/fpu_trig.c 	int old_cw = control_word, saved_status = partial_status;
control_word       47 arch/x86/math-emu/fpu_trig.c 	control_word &= ~CW_RC;
control_word       48 arch/x86/math-emu/fpu_trig.c 	control_word |= RC_CHOP;
control_word      145 arch/x86/math-emu/fpu_trig.c 	control_word = old_cw;
control_word      202 arch/x86/math-emu/fpu_trig.c 			if (control_word & CW_Invalid) {
control_word      216 arch/x86/math-emu/fpu_trig.c 			if (control_word & CW_Invalid) {
control_word      285 arch/x86/math-emu/fpu_trig.c 		if (control_word & CW_Invalid) {
control_word      423 arch/x86/math-emu/fpu_trig.c 		if (control_word & EX_Invalid) {
control_word      470 arch/x86/math-emu/fpu_trig.c 		tag = wm_sqrt(st0_ptr, 0, 0, control_word, SIGN_POS);
control_word      695 arch/x86/math-emu/fpu_trig.c 		if (control_word & CW_Invalid) {
control_word      801 arch/x86/math-emu/fpu_trig.c 		old_cw = control_word;
control_word      807 arch/x86/math-emu/fpu_trig.c 		control_word &= ~CW_RC;
control_word      808 arch/x86/math-emu/fpu_trig.c 		control_word |= RC_CHOP;
control_word      869 arch/x86/math-emu/fpu_trig.c 				control_word = old_cw;
control_word      914 arch/x86/math-emu/fpu_trig.c 				control_word = old_cw;
control_word      928 arch/x86/math-emu/fpu_trig.c 		control_word = old_cw;
control_word      936 arch/x86/math-emu/fpu_trig.c 		    && !(control_word & CW_Underflow)) {
control_word     1485 arch/x86/math-emu/fpu_trig.c 	int old_cw = control_word;
control_word     1512 arch/x86/math-emu/fpu_trig.c 		control_word &= ~CW_RC;
control_word     1513 arch/x86/math-emu/fpu_trig.c 		control_word |= RC_CHOP;
control_word     1516 arch/x86/math-emu/fpu_trig.c 		control_word = old_cw;
control_word     1523 arch/x86/math-emu/fpu_trig.c 		FPU_round(st0_ptr, 0, 0, control_word, sign);
control_word      163 arch/x86/math-emu/load_store.c 		sv_cw = control_word;
control_word      164 arch/x86/math-emu/load_store.c 		control_word |= RC_CHOP;
control_word      169 arch/x86/math-emu/load_store.c 		control_word = sv_cw;
control_word      173 arch/x86/math-emu/load_store.c 		sv_cw = control_word;
control_word      174 arch/x86/math-emu/load_store.c 		control_word |= RC_CHOP;
control_word      179 arch/x86/math-emu/load_store.c 		control_word = sv_cw;
control_word      183 arch/x86/math-emu/load_store.c 		sv_cw = control_word;
control_word      184 arch/x86/math-emu/load_store.c 		control_word |= RC_CHOP;
control_word      189 arch/x86/math-emu/load_store.c 		control_word = sv_cw;
control_word      255 arch/x86/math-emu/load_store.c 		FPU_get_user(control_word,
control_word      258 arch/x86/math-emu/load_store.c 		if (partial_status & ~control_word & CW_Exceptions)
control_word      263 arch/x86/math-emu/load_store.c 		control_word |= 0x40;	/* An 80486 appears to always set this bit */
control_word      295 arch/x86/math-emu/load_store.c 		FPU_put_user(control_word,
control_word      216 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      224 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      262 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      310 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      320 arch/x86/math-emu/reg_compare.c 			return !(control_word & CW_Invalid);
control_word      360 arch/x86/math-emu/reg_compare.c 		return !(control_word & CW_Invalid);
control_word      371 arch/x86/math-emu/reg_compare.c 			return !(control_word & CW_Invalid);
control_word      117 arch/x86/math-emu/reg_constant.c 	(constants_table[FPU_rm]) (control_word & CW_RC);
control_word      363 arch/x86/math-emu/reg_ld_str.c 	if (control_word & CW_Invalid) {
control_word      410 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Underflow))
control_word      414 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      422 arch/x86/math-emu/reg_ld_str.c 				switch (control_word & CW_RC) {
control_word      473 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Overflow))
control_word      476 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      503 arch/x86/math-emu/reg_ld_str.c 			if (control_word & CW_Underflow)
control_word      522 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Invalid))
control_word      530 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Invalid))
control_word      538 arch/x86/math-emu/reg_ld_str.c 		if (control_word & CW_Invalid) {
control_word      596 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Underflow))
control_word      600 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      610 arch/x86/math-emu/reg_ld_str.c 				switch (control_word & CW_RC) {
control_word      654 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Overflow))
control_word      657 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Precision))
control_word      686 arch/x86/math-emu/reg_ld_str.c 			if (control_word & CW_Underflow)
control_word      701 arch/x86/math-emu/reg_ld_str.c 					if (!(control_word & CW_Invalid))
control_word      709 arch/x86/math-emu/reg_ld_str.c 				if (!(control_word & CW_Invalid))
control_word      723 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      781 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      828 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      874 arch/x86/math-emu/reg_ld_str.c 		if (control_word & EX_Invalid) {
control_word      925 arch/x86/math-emu/reg_ld_str.c 		if (control_word & CW_Invalid) {
control_word      991 arch/x86/math-emu/reg_ld_str.c 	switch (control_word & CW_RC) {
control_word     1038 arch/x86/math-emu/reg_ld_str.c 		FPU_get_user(control_word, (unsigned short __user *)s);
control_word     1060 arch/x86/math-emu/reg_ld_str.c 		FPU_get_user(control_word, (unsigned short __user *)s);
control_word     1078 arch/x86/math-emu/reg_ld_str.c 	control_word &= ~0xe080;
control_word     1083 arch/x86/math-emu/reg_ld_str.c 	if (partial_status & ~control_word & CW_Exceptions)
control_word     1151 arch/x86/math-emu/reg_ld_str.c 		FPU_put_user(control_word & ~0xe080, (unsigned long __user *)d);
control_word     1153 arch/x86/math-emu/reg_ld_str.c 		FPU_put_user(control_word, (unsigned short __user *)d);
control_word     1179 arch/x86/math-emu/reg_ld_str.c 		control_word &= ~0xe080;
control_word     1181 arch/x86/math-emu/reg_ld_str.c 		control_word |= 0xffff0040;
control_word     1187 arch/x86/math-emu/reg_ld_str.c 		if (__copy_to_user(d, &control_word, 7 * 4))
control_word     1193 arch/x86/math-emu/reg_ld_str.c 	control_word |= CW_Exceptions;
control_word      102 drivers/crypto/cavium/cpt/cptvf_algs.c 	u64 *offset_control = &rctx->control_word;
control_word      112 drivers/crypto/cavium/cpt/cptvf_algs.h 	u64 control_word;
control_word      192 drivers/crypto/padlock-aes.c 				  struct cword *control_word, int count)
control_word      196 drivers/crypto/padlock-aes.c 		      : "d"(control_word), "b"(key), "c"(count));
control_word      200 drivers/crypto/padlock-aes.c 				 u8 *iv, struct cword *control_word, int count)
control_word      204 drivers/crypto/padlock-aes.c 		      : "d" (control_word), "b" (key), "c" (count));
control_word      261 drivers/crypto/padlock-aes.c 				      void *control_word, u32 count)
control_word      266 drivers/crypto/padlock-aes.c 		ecb_crypt(input, output, key, control_word, count);
control_word      275 drivers/crypto/padlock-aes.c 			      : "d"(control_word), "b"(key), "c"(initial));
control_word      279 drivers/crypto/padlock-aes.c 		      : "d"(control_word), "b"(key), "c"(count));
control_word      283 drivers/crypto/padlock-aes.c 				     u8 *iv, void *control_word, u32 count)
control_word      288 drivers/crypto/padlock-aes.c 		return cbc_crypt(input, output, key, iv, control_word, count);
control_word      295 drivers/crypto/padlock-aes.c 			      : "d" (control_word), "b" (key), "c" (initial));
control_word      299 drivers/crypto/padlock-aes.c 		      : "d" (control_word), "b" (key), "c" (count));
control_word      683 drivers/net/ethernet/sun/sungem.c 			dma_len = le64_to_cpu(txd->control_word) & TXDCTRL_BUFSZ;
control_word     1044 drivers/net/ethernet/sun/sungem.c 		txd->control_word = cpu_to_le64(ctrl);
control_word     1082 drivers/net/ethernet/sun/sungem.c 			txd->control_word = cpu_to_le64(this_ctrl | len);
control_word     1092 drivers/net/ethernet/sun/sungem.c 		txd->control_word =
control_word     1614 drivers/net/ethernet/sun/sungem.c 					       le64_to_cpu(txd->control_word) &
control_word     1666 drivers/net/ethernet/sun/sungem.c 		txd->control_word = 0;
control_word      832 drivers/net/ethernet/sun/sungem.h 	__le64	control_word;