intValue          311 axscript/ByteArrayGlue.cpp 			int intValue = core->integer(value);
intValue          312 axscript/ByteArrayGlue.cpp 			m_byteArray[index] = (U8)(intValue);
intValue          462 core/MathUtils.cpp 		int32_t intValue = _mm_cvttsd_si32(_mm_set_sd(value));
intValue          464 core/MathUtils.cpp 		int32_t intValue;
intValue          466 core/MathUtils.cpp 		_asm fistp [intValue];
intValue          468 core/MathUtils.cpp 		int32_t intValue = _mm_cvttsd_si32(_mm_set_sd(value));
intValue          470 core/MathUtils.cpp 		int32_t intValue = MathUtils::real2int(value);
intValue          472 core/MathUtils.cpp 		return intValue;
intValue          479 core/MathUtils.cpp 		int32_t intValue = real_to_int(value);
intValue          481 core/MathUtils.cpp 		if ((value == (double)(intValue)) && ((uint32_t)intValue != 0x80000000))
intValue          519 core/MathUtils.cpp 		int32_t intValue = real_to_int(value);
intValue          521 core/MathUtils.cpp 		if (value != (double)(intValue))
intValue          529 core/MathUtils.cpp 			intValue = real_to_int(value);
intValue          532 core/MathUtils.cpp 		return intValue;
intValue          910 core/MathUtils.cpp 			int32_t intValue = _mm_cvttsd_si32(_mm_set_sd(value));
intValue          912 core/MathUtils.cpp 			int32_t intValue;
intValue          914 core/MathUtils.cpp 			_asm fistp [intValue];
intValue          916 core/MathUtils.cpp 			int32_t intValue = _mm_cvttsd_si32(_mm_set_sd(value));
intValue          918 core/MathUtils.cpp 			int32_t intValue = real2int(value);
intValue          920 core/MathUtils.cpp 			if ((value == (double)(intValue)) && ((uint32_t)intValue != 0x80000000))
intValue          921 core/MathUtils.cpp 				return convertIntegerToStringBase10(core, intValue, kTreatAsSigned);
intValue           60 core/NativeObjectHelpers.h 		inline uint32 ClampIndex(double intValue, uint32 length)
intValue           63 core/NativeObjectHelpers.h 			if (intValue < 0.0) 
intValue           65 core/NativeObjectHelpers.h 				if (intValue + length < 0.0) 
intValue           68 core/NativeObjectHelpers.h 					result = (uint32)(intValue + length);
intValue           70 core/NativeObjectHelpers.h 			else if (intValue > length) 
intValue           72 core/NativeObjectHelpers.h 			else if (intValue != intValue) // lookout for NaN.  It converts to a 0 int value on Win, but as 0xffffffff on Mac
intValue           75 core/NativeObjectHelpers.h 				result = (uint32)intValue;
intValue           80 core/NativeObjectHelpers.h 		inline uint32 ClampIndexInt(int intValue, uint32 length)
intValue           83 core/NativeObjectHelpers.h 			if (intValue < 0) 
intValue           85 core/NativeObjectHelpers.h 				if (intValue + int(length) < 0) 
intValue           88 core/NativeObjectHelpers.h 					result = (uint32)(intValue + length);
intValue           90 core/NativeObjectHelpers.h 			else if (intValue > int(length)) 
intValue           93 core/NativeObjectHelpers.h 				result = (uint32)intValue;
intValue          127 eval/eval-parse-expr.cpp 					name = doubleToStr(intValue());
intValue          219 eval/eval-parse-expr.cpp 					int32_t i = intValue();
intValue         1058 eval/eval-parse.h 	int32_t intValue();
intValue          331 shell/ByteArrayGlue.cpp 			int intValue = AvmCore::integer(value);
intValue          332 shell/ByteArrayGlue.cpp 			m_byteArray[index] = (U8)(intValue);
intValue          159 utils/abcasm/src/abcasm/MethodBodyInfo.java 		insn(opcode.intValue(), imm_list.toArray());