Home
last modified time | relevance | path

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

/hardware/google/graphics/common/libmemtrack/
Dmali.cpp107 long long int temp_val = 0, total_memory_size = 0, native_buf_mem_size = 0; in mali_memtrack_get_memory() local
164 … ret = sscanf(line, "%*s %15s %15s %*s %*s %lld \n", memory_type, memory_type_2, &temp_val); in mali_memtrack_get_memory()
173 if ((INT64_MAX - temp_val) > native_buf_mem_size) in mali_memtrack_get_memory()
174 native_buf_mem_size += temp_val; in mali_memtrack_get_memory()
193 ret = sscanf(line, "%15s %*s %*s %lld \n", memory_type, &temp_val); in mali_memtrack_get_memory()
200 if ((INT64_MAX - temp_val) > total_memory_size) in mali_memtrack_get_memory()
201 total_memory_size += temp_val; in mali_memtrack_get_memory()
/hardware/knowles/athletico/sound_trigger_hal/tests/
Ddump_debug_info.c333 uint32_t temp_val = block->reg_vals[k]; in dump_all_regs() local
335 ALOGD("0x%X\t\t\t0x%08X", temp_arb_addr, temp_val); in dump_all_regs()
337 fprintf(out_fp, "0x%X\t\t\t0x%08X\n", temp_arb_addr, temp_val); in dump_all_regs()
/hardware/google/pixel/thermal/
Dthermal-helper.cpp1261 float temp_val = 0.0; in readThermalSensor() local
1279 temp_val += 1; in readThermalSensor()
1282 temp_val += sensor_readings[i] * coefficient; in readThermalSensor()
1286 temp_val = std::numeric_limits<float>::lowest(); in readThermalSensor()
1287 if (sensor_readings[i] * coefficient > temp_val) in readThermalSensor()
1288 temp_val = sensor_readings[i] * coefficient; in readThermalSensor()
1292 temp_val = std::numeric_limits<float>::max(); in readThermalSensor()
1293 if (sensor_readings[i] * coefficient < temp_val) in readThermalSensor()
1294 temp_val = sensor_readings[i] * coefficient; in readThermalSensor()
1301 *temp = (temp_val + sensor_info.virtual_sensor_info->offset); in readThermalSensor()