OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDebugOutput
(Results
1 - 3
of
3
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
imagetesthandler.cpp
28
mDebugOutput
= NULL;
34
mDebugOutput
= NULL;
35
mDebugOutput
= new unsigned char[debugHeight * debugWidth * 4];
36
memset(
mDebugOutput
, 0, debugHeight * debugWidth * 4);
47
memcpy(
mDebugOutput
, inputImage, mDebugHeight * mDebugWidth * 4);
52
if (
mDebugOutput
!= NULL) {
53
delete[]
mDebugOutput
;
54
mDebugOutput
= new unsigned char[mDebugHeight * mDebugWidth * 4];
55
memset(
mDebugOutput
, 0, mDebugHeight * mDebugWidth * 4);
64
mDebugOutput
[(row*mDebugWidth + column) * 4] = color.r()
[
all
...]
/cts/apps/CtsVerifier/include/colorchecker/
imagetesthandler.h
31
virtual ~ImageTestHandler() { delete[]
mDebugOutput
; }
37
const unsigned char* debug_output() const { return
mDebugOutput
; }
52
unsigned char*
mDebugOutput
;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
CameraTests.java
53
private Bitmap
mDebugOutput
;
70
return
mDebugOutput
;
Completed in 54 milliseconds