Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem.cc113 JSAMPLE* tempdata = nullptr; in UncompressLow() local
130 delete[] tempdata; in UncompressLow()
268 tempdata = new JSAMPLE[cinfo.output_width * 4]; in UncompressLow()
271 tempdata = new JSAMPLE[cinfo.output_width * components]; in UncompressLow()
285 num_lines_read = jpeg_read_scanlines(&cinfo, &tempdata, 1); in UncompressLow()
294 const int c = tempdata[offset + 0]; in UncompressLow()
295 const int m = tempdata[offset + 1]; in UncompressLow()
296 const int y = tempdata[offset + 2]; in UncompressLow()
297 const int k = tempdata[offset + 3]; in UncompressLow()
314 num_lines_read = jpeg_read_scanlines(&cinfo, &tempdata, 1); in UncompressLow()
[all …]
/external/chromium-trace/catapult/devil/devil/android/perf/
Dthermal_throttle.py36 tempdata = self._device.ReadFile(OmapThrottlingDetector.OMAP_TEMP_FILE)
37 return float(tempdata) / 1000.0
/external/google-breakpad/src/processor/
Dstatic_address_map_unittest.cc64 const int tempdata[] = {5, 10, 14, 15, 16, 20}; in SetUp() local
66 testdata[2][i] = tempdata[i]; in SetUp()