Searched refs:ECI (Results 1 - 7 of 7) sorted by relevance
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrSegment.java | 142 * (ECI) designator with the specified assignment value. 143 * @param assignVal the ECI assignment number (see the AIM ECI specification) 150 throw new IllegalArgumentException("ECI assignment value out of range"); in makeEci() 160 throw new IllegalArgumentException("ECI assignment value out of range"); in makeEci() 161 return new QrSegment(Mode.ECI, 0, bb); in makeEci() 199 * numeric/alphanumeric/kanji mode, bytes for byte mode, and 0 for ECI mode. 286 ECI (0x7, 0, 0, 0); enum constant
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | QrSegment.java | 157 * (ECI) designator with the specified assignment value. 158 * @param assignVal the ECI assignment number (see the AIM ECI specification) 165 throw new IllegalArgumentException("ECI assignment value out of range"); in makeEci() 175 throw new IllegalArgumentException("ECI assignment value out of range"); in makeEci() 176 return new QrSegment(Mode.ECI, 0, bb.data, bb.bitLength); in makeEci() 224 * numeric/alphanumeric/kanji mode, bytes for byte mode, and 0 for ECI mode. 307 ECI (0x7, 0, 0, 0); enum constant
|
/third_party/qrcodegen/cpp/ |
H A D | qrcodegen.hpp | 61 public: static const Mode ECI; member in qrcodegen::final::final 128 * (ECI) designator with the given assignment value. 157 * numeric/alphanumeric/kanji mode, bytes for byte mode, and 0 for ECI mode.
|
H A D | qrcodegen.cpp | 66 const QrSegment::Mode QrSegment::Mode::ECI (0x7, 0, 0, 0); 146 throw std::domain_error("ECI assignment value out of range"); in makeEci() 156 throw std::domain_error("ECI assignment value out of range"); in makeEci() 157 return QrSegment(Mode::ECI, 0, std::move(bb)); in makeEci()
|
/third_party/qrcodegen/python/ |
H A D | qrcodegen.py | 738 (ECI) designator with the given assignment value.""" 741 raise ValueError("ECI assignment value out of range") 751 raise ValueError("ECI assignment value out of range") 752 return QrSegment(QrSegment.Mode.ECI, 0, bb) 776 # numeric/alphanumeric/kanji mode, bytes for byte mode, and 0 for ECI mode. 869 ECI : QrSegment.Mode 876 Mode.ECI = Mode(0x7, ( 0, 0, 0))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | PGOInstrumentation.cpp | 1704 for (const auto &ECI : EdgeCounts) in setProfMetadata() 1705 Weights.push_back(scaleBranchCount(ECI, Scale)); in setProfMetadata()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 3665 for (auto &ECI : FS->calls()) { in writePerModuleFunctionSummaryRecord() 3666 NameVals.push_back(getValueId(ECI.first)); in writePerModuleFunctionSummaryRecord() 3668 NameVals.push_back(static_cast<uint8_t>(ECI.second.Hotness)); in writePerModuleFunctionSummaryRecord() 3670 NameVals.push_back(ECI.second.RelBlockFreq); in writePerModuleFunctionSummaryRecord()
|
Completed in 15 milliseconds