Lines Matching refs:tmp16
146 uint16_t tmp16; in uuid_str_to_bin() local
162 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
163 memcpy(uuid_bin + 4, &tmp16, 2); in uuid_str_to_bin()
165 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
166 memcpy(uuid_bin + 6, &tmp16, 2); in uuid_str_to_bin()
171 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
172 memcpy(uuid_bin + 4, &tmp16, 2); in uuid_str_to_bin()
174 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
175 memcpy(uuid_bin + 6, &tmp16, 2); in uuid_str_to_bin()
178 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16)); in uuid_str_to_bin()
179 memcpy(uuid_bin + 8, &tmp16, 2); in uuid_str_to_bin()