mod              3982 core/AvmCore.cpp 			ad = MathUtils::mod(ad,4294967296.0); // ad %= 0x10000000
mod              3500 core/CodegenLIR.cpp                 LIns* out = callIns(FUNCTIONID(mod), 2,
mod               107 core/Date.cpp  		double result = MathUtils::mod(t, kMsecPerDay);
mod               191 core/Date.cpp  		int result = (int) MathUtils::mod(Day(t) + 4,  7);
mod               218 core/Date.cpp  		int result = (int) MathUtils::mod(MathUtils::floor((t + 0.5) / kMsecPerHour), kHoursPerDay);
mod               236 core/Date.cpp  		int result = (int) MathUtils::mod(MathUtils::floor(time / kMsecPerMinute), kMinutesPerHour);
mod               245 core/Date.cpp  		int result = (int) MathUtils::mod(MathUtils::floor(time / kMsecPerSecond), kSecondsPerMinute);
mod               254 core/Date.cpp  		int result = (int) MathUtils::mod(time, kMsecPerSecond);
mod               301 core/Date.cpp  		month = MathUtils::mod(month, 12);
mod               143 core/Domain.cpp 		uint32_t mod = m_globalMemoryBaseRefNum % REFS_PER_CHUNK;
mod               148 core/Domain.cpp 		if (!mod)
mod               159 core/Domain.cpp 		refs->refs[mod] = baseRef;
mod               170 core/Domain.cpp 		uint32_t mod = m_globalMemorySizeRefNum % REFS_PER_CHUNK;
mod               174 core/Domain.cpp 		if (!mod)
mod               182 core/Domain.cpp 		refs->refs[mod] = sizeRef;
mod               205 core/Domain.cpp 					int mod = n % REFS_PER_CHUNK;
mod               209 core/Domain.cpp 					if (!mod)
mod               216 core/Domain.cpp 					uint8_t** p = (baseRefs->refs[mod]);
mod               231 core/Domain.cpp 					int mod = n % REFS_PER_CHUNK;
mod               233 core/Domain.cpp 					if (!mod) // start with SECOND chunk
mod               240 core/Domain.cpp 					uint32_t* p = (sizeRefs->refs[mod]);
mod              1603 core/Interpreter.cpp 					sp[0] = core->doubleToAtom(MathUtils::mod(DOUBLE_VALUE(a1), DOUBLE_VALUE(a2)));
mod              1609 core/Interpreter.cpp 				sp[0] = core->doubleToAtom(MathUtils::mod(d1, d2));
mod               583 core/MathUtils.cpp 				return (MathUtils::mod(exponent, 2) != 0) ? base : 0-base;
mod               683 core/MathUtils.cpp 			if (MathUtils::mod(y, 2) != 0) {
mod              1761 core/MathUtils.cpp 			double mod = MathUtils::mod(dr,ds);
mod              1762 core/MathUtils.cpp 			dr = mod;
mod               110 core/MathUtils.h 		static double mod(double x, double y);
mod               556 extensions/JavaGlue.cpp 		jint mod = jni->CallIntMethod(method, vm->java_lang_reflect_Method_getModifiers() );
mod               557 extensions/JavaGlue.cpp 		bool is = isStatic(mod);
mod               644 extensions/JavaGlue.cpp 		jint mod = jni->CallIntMethod(field, vm->java_lang_reflect_Field_getModifiers() );
mod               645 extensions/JavaGlue.cpp 		bool is = isStatic(mod);
mod               724 extensions/JavaGlue.cpp 		jint mod = jni->CallIntMethod(field, vm->java_lang_reflect_Field_getModifiers() );
mod               725 extensions/JavaGlue.cpp 		bool is = isStatic(mod);
mod              1118 nanojit/Nativei386.cpp         LInsp div = mod->oprnd1();
mod              1122 nanojit/Nativei386.cpp         NanoAssert(mod->isop(LIR_mod));
mod              1128 nanojit/Nativei386.cpp         prepResultReg(mod, rmask(EDX));