Home
last modified time | relevance | path

Searched refs:temp_value (Results 1 – 3 of 3) sorted by relevance

/external/libmicrohttpd/src/microspdy/
Dstructures.c64 char **temp_value; in SPDY_name_value_add() local
160 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()
/external/ceres-solver/examples/
Dlibmv_bundle_adjuster.cc316 unsigned int temp_value = static_cast<unsigned int>(value); in SwitchEndian() local
317 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()
/external/google-benchmark/src/
Dsysinfo.cc80 const long temp_value = strtol(line, &err, 10); in ReadIntFromFile() local
82 *value = temp_value; in ReadIntFromFile()