Lines Matching refs:tmp16
147 uint16_t tmp16; in uuid_str_to_bin() local
163 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
164 memcpy(uuid_bin + 4, &tmp16, 2); in uuid_str_to_bin()
166 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
167 memcpy(uuid_bin + 6, &tmp16, 2); in uuid_str_to_bin()
172 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
173 memcpy(uuid_bin + 4, &tmp16, 2); in uuid_str_to_bin()
175 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
176 memcpy(uuid_bin + 6, &tmp16, 2); in uuid_str_to_bin()
179 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16)); in uuid_str_to_bin()
180 memcpy(uuid_bin + 8, &tmp16, 2); in uuid_str_to_bin()