• Home
  • Raw
  • Download

Lines Matching refs:codeword

133       CBC_Codeword* codeword = detectCodeword(  in decode()  local
136 if (codeword != NULL) { in decode()
137 detectionResultColumn->setCodeword(imageRow, codeword); in decode()
139 minCodewordWidth = minCodewordWidth < codeword->getWidth() in decode()
141 : codeword->getWidth(); in decode()
142 maxCodewordWidth = maxCodewordWidth > codeword->getWidth() in decode()
144 : codeword->getWidth(); in decode()
308 CBC_Codeword* codeword = in getRowIndicatorColumn() local
311 if (codeword != NULL) { in getRowIndicatorColumn()
312 rowIndicatorColumn->setCodeword(imageRow, codeword); in getRowIndicatorColumn()
314 startColumn = codeword->getStartX(); in getRowIndicatorColumn()
316 startColumn = codeword->getEndX(); in getRowIndicatorColumn()
487 CBC_Codeword* codeword = (CBC_Codeword*)temp->GetAt(l); in createBarcodeMatrix() local
488 if (codeword == NULL || codeword->getRowNumber() == -1) { in createBarcodeMatrix()
492 codeword->getRowNumber())) in createBarcodeMatrix()
494 ->setValue(codeword->getValue()); in createBarcodeMatrix()
511 CBC_Codeword* codeword = NULL; in getStartColumn() local
513 codeword = detectionResult->getDetectionResultColumn(barcodeColumn - offset) in getStartColumn()
516 if (codeword != NULL) { in getStartColumn()
517 return leftToRight ? codeword->getEndX() : codeword->getStartX(); in getStartColumn()
519 codeword = detectionResult->getDetectionResultColumn(barcodeColumn) in getStartColumn()
521 if (codeword != NULL) { in getStartColumn()
522 return leftToRight ? codeword->getStartX() : codeword->getEndX(); in getStartColumn()
525 codeword = detectionResult->getDetectionResultColumn(barcodeColumn - offset) in getStartColumn()
528 if (codeword != NULL) { in getStartColumn()
529 return leftToRight ? codeword->getEndX() : codeword->getStartX(); in getStartColumn()
588 int32_t codeword = CBC_PDF417Common::getCodeword(decodedValue); in detectCodeword() local
590 if (codeword == -1) { in detectCodeword()
594 getCodewordBucketNumber(decodedValue), codeword); in detectCodeword()
721 int32_t codeword) { in getBitCountForCodeword() argument
727 if ((codeword & 0x1) != previousValue) { in getBitCountForCodeword()
728 previousValue = codeword & 0x1; in getBitCountForCodeword()
735 codeword >>= 1; in getBitCountForCodeword()
739 int32_t CBC_PDF417ScanningDecoder::getCodewordBucketNumber(int32_t codeword) { in getCodewordBucketNumber() argument
740 CFX_Int32Array* array = getBitCountForCodeword(codeword); in getCodewordBucketNumber()