Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Dcsdetect.cpp123 int32_t rCount = UPRV_LENGTHOF(tempArray); in initRecognizers() local
125 fCSRecognizers = NEW_ARRAY(CSRecognizerInfo *, rCount); in initRecognizers()
131 fCSRecognizers_size = rCount; in initRecognizers()
132 for (int32_t r = 0; r < rCount; r += 1) { in initRecognizers()
/external/dng_sdk/source/
Ddng_bad_pixels.cpp610 uint32 rCount = stream.Get_uint32 (); in dng_opcode_FixBadPixelsList() local
612 SafeUint32Add(12, SafeUint32Add(SafeUint32Mult(pCount, 8), SafeUint32Mult(rCount, 16))); in dng_opcode_FixBadPixelsList()
634 for (index = 0; index < rCount; index++) in dng_opcode_FixBadPixelsList()
672 printf ("Bad Rects: %u\n", (unsigned) rCount); in dng_opcode_FixBadPixelsList()
674 for (index = 0; index < rCount && index < gDumpLineLimit; index++) in dng_opcode_FixBadPixelsList()
684 if (rCount > gDumpLineLimit) in dng_opcode_FixBadPixelsList()
686 printf (" ... %u bad rects skipped\n", (unsigned) (rCount - gDumpLineLimit)); in dng_opcode_FixBadPixelsList()
701 uint32 rCount = fList->RectCount (); in PutData() local
703 stream.Put_uint32 (12 + pCount * 8 + rCount * 16); in PutData()
708 stream.Put_uint32 (rCount); in PutData()
[all …]
/external/antlr/runtime/C/src/
Dantlr3debughandlers.c335 int rCount; in ack() local
343 rCount = recv(delboy->socket, &buffer, 1, 0); in ack()
345 while (rCount == 1 && buffer != '\n'); in ack()
352 if (rCount != 1) in ack()
355 ANTLR3_PRINTF("Received char count was %d, and last char received was %02X\n", rCount, buffer); in ack()
/external/skqp/src/core/
DSkStroke.cpp620 int rCount = 0; in CheckCubicLinear() local
627 SkEvalCubicAt(cubic, t, &reduction[rCount], nullptr, nullptr); in CheckCubicLinear()
628 if (reduction[rCount] != cubic[0] && reduction[rCount] != cubic[3]) { in CheckCubicLinear()
629 ++rCount; in CheckCubicLinear()
632 if (rCount == 0) { in CheckCubicLinear()
639 return (ReductionType) (kQuad_ReductionType + rCount); in CheckCubicLinear()
/external/skia/src/core/
DSkStroke.cpp621 int rCount = 0; in CheckCubicLinear() local
628 SkEvalCubicAt(cubic, t, &reduction[rCount], nullptr, nullptr); in CheckCubicLinear()
629 if (reduction[rCount] != cubic[0] && reduction[rCount] != cubic[3]) { in CheckCubicLinear()
630 ++rCount; in CheckCubicLinear()
633 if (rCount == 0) { in CheckCubicLinear()
640 return (ReductionType) (kQuad_ReductionType + rCount); in CheckCubicLinear()