Lines Matching refs:temp
129 u32 temp = 0; in fill_output_last() local
130 temp |= 1 << 28; /* OUTPUT_LAST */ in fill_output_last()
133 temp |= 1 << 27; in fill_output_last()
136 temp |= 3 << 20; in fill_output_last()
138 temp |= 3 << 18; /* must take branch */ in fill_output_last()
139 temp |= data_size; in fill_output_last()
141 ol->q[0] = cpu_to_le32(temp); in fill_output_last()
154 u32 temp = 2 << 28; /* INPUT_MORE */ in fill_input_more() local
155 temp |= 8 << 24; /* s = 1, update xferStatus and resCount */ in fill_input_more()
157 temp |= 0 << 20; /* interrupts, i=0 in packet-per-buffer mode */ in fill_input_more()
158 temp |= 0x0 << 16; /* disable branch to address for packet-per-buffer mode */ in fill_input_more()
160 temp |= data_size; in fill_input_more()
162 im->q[0] = cpu_to_le32(temp); in fill_input_more()
173 u32 temp = 3 << 28; /* INPUT_LAST */ in fill_input_last() local
174 temp |= 8 << 24; /* s = 1, update xferStatus and resCount */ in fill_input_last()
176 temp |= 3 << 20; /* enable interrupts */ in fill_input_last()
177 temp |= 0xC << 16; /* enable branch to address */ in fill_input_last()
179 temp |= data_size; in fill_input_last()
181 il->q[0] = cpu_to_le32(temp); in fill_input_last()