Searched refs:temp_value (Results 1 – 3 of 3) sorted by relevance
64 char **temp_value; in SPDY_name_value_add() local160 if (NULL == (temp_value = malloc((pair->num_values + 1) * sizeof(char *)))) in SPDY_name_value_add()164 memcpy(temp_value, pair->value, pair->num_values * sizeof(char *)); in SPDY_name_value_add()165 if (NULL == (temp_value[pair->num_values] = strdup (value))) in SPDY_name_value_add()167 free(temp_value); in SPDY_name_value_add()171 pair->value = temp_value; in SPDY_name_value_add()
316 unsigned int temp_value = static_cast<unsigned int>(value); in SwitchEndian() local317 return ((temp_value >> 24)) | in SwitchEndian()318 ((temp_value << 8) & 0x00ff0000) | in SwitchEndian()319 ((temp_value >> 8) & 0x0000ff00) | in SwitchEndian()320 ((temp_value << 24)); in SwitchEndian()
80 const long temp_value = strtol(line, &err, 10); in ReadIntFromFile() local82 *value = temp_value; in ReadIntFromFile()