Home
last modified time | relevance | path

Searched refs:tempData (Results 1 – 9 of 9) sorted by relevance

/external/eigen/Eigen/src/QR/
DHouseholderQR.h219 …lder_qr_inplace_unblocked(MatrixQR& mat, HCoeffs& hCoeffs, typename MatrixQR::Scalar* tempData = 0)
232 if(tempData==0)
235 tempData = tempVector.data();
249 … .applyHouseholderOnTheLeft(mat.col(k).tail(remainingRows-1), hCoeffs.coeffRef(k), tempData+k+1);
257 typename MatrixQR::Scalar* tempData = 0)
269 if(tempData==0)
272 tempData = tempVector.data();
295 householder_qr_inplace_unblocked(A11_21, hCoeffsSegment, tempData);
DHouseholderQR_MKL.h49 EIGTYPE* tempData = 0) \
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DAudioBus.cpp362 float* tempData = temp.data(); in speakersSumFrom5_1_ToMono() local
365 vadd(sourceL, 1, sourceR, 1, tempData, 1, length()); in speakersSumFrom5_1_ToMono()
367 vsmul(tempData, 1, &scale, tempData, 1, length()); in speakersSumFrom5_1_ToMono()
368 vadd(tempData, 1, destination, 1, destination, 1, length()); in speakersSumFrom5_1_ToMono()
371 vadd(sourceSL, 1, sourceSR, 1, tempData, 1, length()); in speakersSumFrom5_1_ToMono()
373 vsmul(tempData, 1, &scale, tempData, 1, length()); in speakersSumFrom5_1_ToMono()
374 vadd(tempData, 1, destination, 1, destination, 1, length()); in speakersSumFrom5_1_ToMono()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoderTest.cpp200 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); in TEST() local
201 decoder->setData(tempData.get(), length == data->size()); in TEST()
226 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); in TEST() local
227 decoder->setData(tempData.get(), length == data->size()); in TEST()
315 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); in TEST() local
316 decoder->setData(tempData.get(), true); in TEST()
350 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); in TEST() local
351 decoder->setData(tempData.get(), false); in TEST()
/external/skia/src/gpu/
DGrAAHairLinePathRenderer.cpp54 bool tempData = NULL == data; in push_quad_index_data() local
55 if (tempData) { in push_quad_index_data()
84 if (tempData) { in push_quad_index_data()
96 bool tempData = NULL == data; in push_line_index_data() local
97 if (tempData) { in push_line_index_data()
137 if (tempData) { in push_line_index_data()
/external/chromium_org/third_party/skia/src/gpu/
DGrAAHairLinePathRenderer.cpp54 bool tempData = NULL == data; in push_quad_index_data() local
55 if (tempData) { in push_quad_index_data()
84 if (tempData) { in push_quad_index_data()
96 bool tempData = NULL == data; in push_line_index_data() local
97 if (tempData) { in push_line_index_data()
137 if (tempData) { in push_line_index_data()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
DWEBPImageDecoderTest.cpp172 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), length); in testByteByByteDecode() local
173 decoder->setData(tempData.get(), length == data->size()); in testByteByByteDecode()
535 RefPtr<SharedBuffer> tempData = SharedBuffer::create(data->data(), data->size() - 10); in TEST() local
536 decoder->setData(tempData.get(), false); in TEST()
/external/chromium_org/third_party/icu/source/i18n/
Ducol_elm.cpp1981 UCATableHeader *tempData = uprv_uca_assembleTable(tempTable, status); in uprv_uca_canonicalClosure() local
1982 tempColl = ucol_initCollator(tempData, 0, t->UCA, status); in uprv_uca_canonicalClosure()
1996 } else if(tempData != 0) { in uprv_uca_canonicalClosure()
1997 uprv_free(tempData); in uprv_uca_canonicalClosure()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DWebGLRenderingContextBase.cpp3419 Vector<uint8_t> tempData; in texImage2D() local
3422 … height, format, type, m_unpackAlignment, m_unpackFlipY, m_unpackPremultiplyAlpha, data, tempData)) in texImage2D()
3424 data = tempData.data(); in texImage2D()
3657 Vector<uint8_t> tempData; in texSubImage2D() local
3664 tempData)) in texSubImage2D()
3666 data = tempData.data(); in texSubImage2D()