OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pImg
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
stats_scorer.cpp
27
unsigned char*
pImg
= static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
33
float val = static_cast<float>(
pImg
[i]);
47
unsigned char*
pImg
= static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
59
float val = static_cast<float>(*(
pImg
+ disp + x));
histogram.cpp
28
inline void addPixelToHistogram(unsigned char*&
pImg
, int* pHist, int numBins) {
29
int R = *(
pImg
++);
30
int G = *(
pImg
++);
31
int B = *(
pImg
++);
32
++
pImg
;
41
unsigned char*
pImg
= static_cast<unsigned char*>(env->GetDirectBufferAddress(imageBuffer));
55
addPixelToHistogram(
pImg
, pHist, numBins);
61
pImg
+= 4; // Note that otherwise addPixelToHistogram advances
pImg
by 4
65
addPixelToHistogram(
pImg
, pHist, numBins)
[
all
...]
/external/libpng/contrib/visupng/
VisualPng.c
809
BYTE *
pImg
;
846
pImg
= pStretchedImage;
858
*
pImg
++ = r;
859
*
pImg
++ = g;
860
*
pImg
++ = b;
865
*
pImg
++ = a;
Completed in 91 milliseconds