Home
last modified time | relevance | path

Searched refs:IS_BIT (Results 1 – 2 of 2) sorted by relevance

/arch/arc/kernel/
Ddisasm.c75 fieldA = (IS_BIT(state->words[0], 16)) ? in disasm_instr()
79 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr()
85 if (IS_BIT(state->words[0], 16)) { in disasm_instr()
88 fieldA = (IS_BIT(state->words[0], 17)) ? in disasm_instr()
99 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr()
168 (!IS_BIT(state->words[0], 5)))) { in disasm_instr()
178 && (IS_BIT(state->words[0], 5)))) { in disasm_instr()
253 if ((!IS_BIT(state->words[0], 5)) && in disasm_instr()
275 if ((!IS_BIT(state->words[0], 5)) && in disasm_instr()
/arch/arc/include/asm/
Ddisasm.h34 #define IS_BIT(word, n) ((word) & (1<<n)) macro
95 if (IS_BIT(value, (bits - 1))) in sign_extend()