Lines Matching refs:in
115 union arm_nnword in; in clamp_output()
120 in.word = arm_nn_read_s8x4(source); in clamp_output()
122 in.bytes[0] = MAX(in.bytes[0], act_min); in clamp_output()
123 in.bytes[0] = MIN(in.bytes[0], act_max); in clamp_output()
124 in.bytes[1] = MAX(in.bytes[1], act_min); in clamp_output()
125 in.bytes[1] = MIN(in.bytes[1], act_max); in clamp_output()
126 in.bytes[2] = MAX(in.bytes[2], act_min); in clamp_output()
127 in.bytes[2] = MIN(in.bytes[2], act_max); in clamp_output()
128 in.bytes[3] = MAX(in.bytes[3], act_min); in clamp_output()
129 in.bytes[3] = MIN(in.bytes[3], act_max); in clamp_output()
131 arm_nn_write_s8x4_ia(&source, in.word); in clamp_output()