Searched defs:imod (Results 1 - 4 of 4) sorted by relevance

/external/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp120 static inline int imod (int a, int b) function in namespace:tcu::TexVerifierUtil
145 return imod(c, size);
149 return (size - 1) - mirror(imod(c, 2*size) - size);
H A DtcuTexture.cpp1083 static inline int imod (int a, int b) function in namespace:tcu
1121 return imod(c, size);
1124 return imod(c, size);
1127 return (size - 1) - mirror(imod(c, 2*size) - size);
/external/openssl/crypto/conf/
H A Dconf_mod.c111 static void module_finish(CONF_IMODULE *imod);
352 CONF_IMODULE *imod = NULL; local
355 imod = OPENSSL_malloc(sizeof(CONF_IMODULE));
356 if (!imod)
359 imod->pmod = pmod;
360 imod->name = BUF_strdup(name);
361 imod->value = BUF_strdup(value);
362 imod->usr_data = NULL;
364 if (!imod->name || !imod
458 CONF_IMODULE *imod; local
470 module_finish(CONF_IMODULE *imod) argument
[all...]
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1954 unsigned imod = fieldFromInstruction(Insn, 18, 2); local
1968 // imod == '01' --> UNPREDICTABLE
1970 // return failure here. The '01' imod value is unprintable, so there's
1973 if (imod == 1) return MCDisassembler::Fail;
1975 if (imod && M) {
1977 Inst.addOperand(MCOperand::CreateImm(imod));
1980 } else if (imod && !M) {
1982 Inst.addOperand(MCOperand::CreateImm(imod));
1985 } else if (!imod && M) {
1990 // imod
2001 unsigned imod = fieldFromInstruction(Insn, 9, 2); local
3775 unsigned imod = fieldFromInstruction(Insn, 4, 1) | 0x2; local
[all...]

Completed in 122 milliseconds