Home
last modified time | relevance | path

Searched refs:pCodes (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/lib/IR/
DInlineAsm.cpp68 ConstraintCodeVector *pCodes = &Codes; in Parse() local
74 pCodes = &multipleAlternatives[0].Codes; in Parse()
139 pCodes->push_back(std::string(StringRef(I, ConstraintEnd + 1 - I))); in Parse()
146 pCodes->push_back(std::string(StringRef(NumStart, I - NumStart))); in Parse()
147 unsigned N = atoi(pCodes->back().c_str()); in Parse()
177 pCodes = &multipleAlternatives[multipleAlternativeIndex].Codes; in Parse()
182 pCodes->push_back(std::string(StringRef(I + 1, 2))); in Parse()
192 pCodes->push_back(std::string(StringRef(I, N))); in Parse()
196 pCodes->push_back(std::string(StringRef(I, 1))); in Parse()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInlineAsm.cpp68 ConstraintCodeVector *pCodes = &Codes; in Parse() local
74 pCodes = &multipleAlternatives[0].Codes; in Parse()
139 pCodes->push_back(StringRef(I, ConstraintEnd+1 - I)); in Parse()
146 pCodes->push_back(StringRef(NumStart, I - NumStart)); in Parse()
147 unsigned N = atoi(pCodes->back().c_str()); in Parse()
177 pCodes = &multipleAlternatives[multipleAlternativeIndex].Codes; in Parse()
182 pCodes->push_back(StringRef(I+1, 2)); in Parse()
192 pCodes->push_back(StringRef(I, N)); in Parse()
196 pCodes->push_back(StringRef(I, 1)); in Parse()
/external/llvm/lib/IR/
DInlineAsm.cpp74 ConstraintCodeVector *pCodes = &Codes; in Parse() local
80 pCodes = &multipleAlternatives[0].Codes; in Parse()
145 pCodes->push_back(StringRef(I, ConstraintEnd+1 - I)); in Parse()
152 pCodes->push_back(StringRef(NumStart, I - NumStart)); in Parse()
153 unsigned N = atoi(pCodes->back().c_str()); in Parse()
181 pCodes = &multipleAlternatives[multipleAlternativeIndex].Codes; in Parse()
186 pCodes->push_back(StringRef(I+1, 2)); in Parse()
190 pCodes->push_back(StringRef(I, 1)); in Parse()
/external/pdfium/core/fpdfapi/font/
Dcpdf_fontencoding.cpp1648 uint32_t PDF_FindCode(const uint16_t* pCodes, uint16_t unicode) { in PDF_FindCode() argument
1650 if (pCodes[i] == unicode) in PDF_FindCode()