Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem.cc107 JSAMPLE* tempdata = nullptr; in UncompressLow() local
119 delete[] tempdata; in UncompressLow()
252 tempdata = new JSAMPLE[cinfo.output_width * 4]; in UncompressLow()
255 tempdata = new JSAMPLE[cinfo.output_width * components]; in UncompressLow()
269 num_lines_read = jpeg_read_scanlines(&cinfo, &tempdata, 1); in UncompressLow()
278 const int c = tempdata[offset + 0]; in UncompressLow()
279 const int m = tempdata[offset + 1]; in UncompressLow()
280 const int y = tempdata[offset + 2]; in UncompressLow()
281 const int k = tempdata[offset + 3]; in UncompressLow()
298 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/libmojo/third_party/catapult/devil/devil/android/perf/
Dthermal_throttle.py34 tempdata = self._device.ReadFile(OmapThrottlingDetector.OMAP_TEMP_FILE)
35 return float(tempdata) / 1000.0
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
DRTPencode.cc1602 int16_t* tempdata; in NetEQTest_encode() local
1616 tempdata = &indata[k * frameLen]; in NetEQTest_encode()
1622 localVad |= WebRtcVad_Process(VAD_inst[k], sampleRate, tempdata, in NetEQTest_encode()
1624 tempdata += sampleRate_30; in NetEQTest_encode()
1627 localVad |= WebRtcVad_Process(VAD_inst[k], sampleRate, tempdata, in NetEQTest_encode()
1629 tempdata += sampleRate_20; in NetEQTest_encode()
1632 localVad |= WebRtcVad_Process(VAD_inst[k], sampleRate, tempdata, in NetEQTest_encode()
1634 tempdata += sampleRate_10; in NetEQTest_encode()
/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()