Searched refs:input (Results 1 – 7 of 7) sorted by relevance
144 u_char input[3] = { 0, 0, 0 }; /* make compiler happy */ local152 input[0] = *src++;153 input[1] = *src++;154 input[2] = *src++;157 output[0] = (u_int32_t)input[0] >> 2;158 output[1] = ((u_int32_t)(input[0] & 0x03) << 4) +159 ((u_int32_t)input[1] >> 4);160 output[2] = ((u_int32_t)(input[1] & 0x0f) << 2) +161 ((u_int32_t)input[2] >> 6);162 output[3] = input[2] & 0x3f;[all …]
14 u32 input[16]; /* could be compressed */ member59 x->input[4] = U8TO32_LITTLE(k + 0); in chacha_keysetup()60 x->input[5] = U8TO32_LITTLE(k + 4); in chacha_keysetup()61 x->input[6] = U8TO32_LITTLE(k + 8); in chacha_keysetup()62 x->input[7] = U8TO32_LITTLE(k + 12); in chacha_keysetup()69 x->input[8] = U8TO32_LITTLE(k + 0); in chacha_keysetup()70 x->input[9] = U8TO32_LITTLE(k + 4); in chacha_keysetup()71 x->input[10] = U8TO32_LITTLE(k + 8); in chacha_keysetup()72 x->input[11] = U8TO32_LITTLE(k + 12); in chacha_keysetup()73 x->input[0] = U8TO32_LITTLE(constants + 0); in chacha_keysetup()[all …]
24 T1 input; member30 T1 input; member44 T input; member51 T input; member145 data[i].expected, f(data[i].input)) << "Failed on element " << i;156 EXPECT_EQ(data[i].expected, f(data[i].input)) << "Failed on element " << i;184 f(data[i].input, &out1, &out2);201 out1 = f(data[i].input, &out2);217 out1 = f(data[i].input, &out2);
94 dmx_input_t input; member
171 struct uhid_input_req input; member
509 def process_file(self, input): argument511 parser.parse_file(input)
83 written by Steven G. Kargl with input from Bruce D. Evans