OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rCount
(Results
1 - 7
of
7
) sorted by null
/device/generic/goldfish/camera/fake-pipeline2/
Sensor.cpp
441
uint32_t
rCount
, gCount, bCount;
450
rCount
= (pixel[Scene::R]+(outX+outY)%64) * scale64x;
454
*px++ =
rCount
< 255*64 ?
rCount
/ 64 : 255;
479
uint32_t
rCount
, gCount, bCount;
488
rCount
= (pixel[Scene::R]+(outX+outY)%64) * scale64x;
492
*px++ =
rCount
< 255*64 ?
rCount
/ 64 : 255;
527
int32_t
rCount
, gCount, bCount;
538
rCount
= (pixel[Scene::R]+(outX+outY)%64) * scale64x
[
all
...]
/device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/
Sensor.cpp
436
uint32_t
rCount
, gCount, bCount;
439
rCount
= pixel[Scene::R] * scale64x;
443
*px++ =
rCount
< 255 * 64 ?
rCount
/ 64 : 255;
465
uint32_t
rCount
, gCount, bCount;
468
rCount
= pixel[Scene::R] * scale64x;
472
*px++ =
rCount
< 255 * 64 ?
rCount
/ 64 : 255;
510
int32_t
rCount
, gCount, bCount;
513
rCount
= pixel[Scene::R] * scale64x
[
all
...]
/external/icu/icu4c/source/i18n/
csdetect.cpp
123
int32_t
rCount
= UPRV_LENGTHOF(tempArray);
125
fCSRecognizers = NEW_ARRAY(CSRecognizerInfo *,
rCount
);
131
fCSRecognizers_size =
rCount
;
132
for (int32_t r = 0; r <
rCount
; r += 1) {
/external/dng_sdk/source/
dng_bad_pixels.cpp
610
uint32
rCount
= stream.Get_uint32 ();
612
SafeUint32Add(12, SafeUint32Add(SafeUint32Mult(pCount, 8), SafeUint32Mult(
rCount
, 16)));
634
for (index = 0; index <
rCount
; index++)
672
printf ("Bad Rects: %u\n", (unsigned)
rCount
);
674
for (index = 0; index <
rCount
&& index < gDumpLineLimit; index++)
684
if (
rCount
> gDumpLineLimit)
686
printf (" ... %u bad rects skipped\n", (unsigned) (
rCount
- gDumpLineLimit));
701
uint32
rCount
= fList->RectCount ();
703
stream.Put_uint32 (12 + pCount * 8 +
rCount
* 16);
708
stream.Put_uint32 (
rCount
);
[
all
...]
/external/antlr/runtime/C/src/
antlr3debughandlers.c
335
int
rCount
;
343
rCount
= recv(delboy->socket, &buffer, 1, 0);
345
while (
rCount
== 1 && buffer != '\n');
352
if (
rCount
!= 1)
355
ANTLR3_PRINTF("Received char count was %d, and last char received was %02X\n",
rCount
, buffer);
/external/skia/src/core/
SkStroke.cpp
621
int
rCount
= 0;
628
SkEvalCubicAt(cubic, t, &reduction[
rCount
], nullptr, nullptr);
629
if (reduction[
rCount
] != cubic[0] && reduction[
rCount
] != cubic[3]) {
630
++
rCount
;
633
if (
rCount
== 0) {
640
return (ReductionType) (kQuad_ReductionType +
rCount
);
[
all
...]
/external/skqp/src/core/
SkStroke.cpp
620
int
rCount
= 0;
627
SkEvalCubicAt(cubic, t, &reduction[
rCount
], nullptr, nullptr);
628
if (reduction[
rCount
] != cubic[0] && reduction[
rCount
] != cubic[3]) {
629
++
rCount
;
632
if (
rCount
== 0) {
639
return (ReductionType) (kQuad_ReductionType +
rCount
);
[
all
...]
Completed in 1576 milliseconds