/external/llvm-project/llvm/lib/ProfileData/ |
D | GCOV.cpp | 107 Checksum = buf.getWord(); in readGCNO() 111 buf.getWord(); // hasUnexecutedBlocks in readGCNO() 115 while ((tag = buf.getWord())) { in readGCNO() 121 fn->ident = buf.getWord(); in readGCNO() 122 fn->linenoChecksum = buf.getWord(); in readGCNO() 124 fn->cfgChecksum = buf.getWord(); in readGCNO() 129 fn->startLine = buf.getWord(); in readGCNO() 131 fn->artificial = buf.getWord(); in readGCNO() 133 fn->startLine = buf.getWord(); in readGCNO() 134 fn->startColumn = buf.getWord(); in readGCNO() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | text_handler.cpp | 94 spv_result_t getWord(spv_text text, spv_position position, std::string* word) { in getWord() function 191 spv_result_t AssemblyContext::getWord(std::string* word, in getWord() function in spvtools::AssemblyContext 194 return spvtools::getWord(text_, next_position, word); in getWord() 208 if (spvtools::getWord(text_, &pos, &word)) return false; in isStartOfNewInst() 212 if (spvtools::getWord(text_, &pos, &word)) return false; in isStartOfNewInst()
|
D | text.cpp | 470 auto error = context->getWord(&firstWord, &nextPosition); in encodeInstructionStartingWithImmediate() 483 if ((error = context->getWord(&operandValue, &nextPosition))) in encodeInstructionStartingWithImmediate() 520 spv_result_t error = context->getWord(&firstWord, &nextPosition); in spvTextEncodeOpcode() 543 error = context->getWord(&equal_sign, &nextPosition); in spvTextEncodeOpcode() 551 error = context->getWord(&opcodeName, &nextPosition); in spvTextEncodeOpcode() 640 error = context->getWord(&operandValue, &nextPosition); in spvTextEncodeOpcode()
|
D | text_handler.h | 145 spv_result_t getWord(std::string* word, spv_position next_position);
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | text_handler.cpp | 94 spv_result_t getWord(spv_text text, spv_position position, std::string* word) { in getWord() function 191 spv_result_t AssemblyContext::getWord(std::string* word, in getWord() function in spvtools::AssemblyContext 194 return spvtools::getWord(text_, next_position, word); in getWord() 208 if (spvtools::getWord(text_, &pos, &word)) return false; in isStartOfNewInst() 212 if (spvtools::getWord(text_, &pos, &word)) return false; in isStartOfNewInst()
|
D | text.cpp | 470 auto error = context->getWord(&firstWord, &nextPosition); in encodeInstructionStartingWithImmediate() 483 if ((error = context->getWord(&operandValue, &nextPosition))) in encodeInstructionStartingWithImmediate() 520 spv_result_t error = context->getWord(&firstWord, &nextPosition); in spvTextEncodeOpcode() 543 error = context->getWord(&equal_sign, &nextPosition); in spvTextEncodeOpcode() 551 error = context->getWord(&opcodeName, &nextPosition); in spvTextEncodeOpcode() 640 error = context->getWord(&operandValue, &nextPosition); in spvTextEncodeOpcode()
|
D | text_handler.h | 145 spv_result_t getWord(std::string* word, spv_position next_position);
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | VariableLocator.java | 53 return ((ANameVariable) variable).getWord().getText(); in quickEval() 84 descendVariable(node.getWord().getText()); in caseANameVariable()
|
D | ExpressionEvaluator.java | 254 result.append(node.getWord().getText()); in getFullFunctionName()
|
D | TemplateInterpreter.java | 444 argumentNames[i++] = ((ANameVariable) argument).getWord().getText(); in caseADefCommand()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | ANameVariable.java | 37 public TWord getWord() in getWord() method in ANameVariable
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | TypeResolver.java | 133 String name = ((ANameVariable) functionName).getWord().getText(); in isNumericFunction()
|
D | VarOptimizer.java | 235 String name = ((ANameVariable) nvar).getWord().getText(); in escapeNameOf()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | VariableTranslator.java | 73 components.add(new StringExpression(node.getWord().getText())); in caseANameVariable()
|
D | EscapingEvaluator.java | 159 fullFunctionName.append(node11.getWord().getText()); in caseAFunctionExpression()
|
D | ExpressionTranslator.java | 329 fullFunctionName.append(node11.getWord().getText()); in caseAFunctionExpression()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 163 uint64_t getWord(unsigned bitPosition) const { 1139 return (maskBit(bitPosition) & getWord(bitPosition)) != 0; 1783 return BitsToDouble(getWord(0)); 1792 return BitsToFloat(static_cast<uint32_t>(getWord(0)));
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 162 uint64_t getWord(unsigned bitPosition) const { in getWord() function 1139 return (maskBit(bitPosition) & getWord(bitPosition)) != 0; 1772 return BitsToDouble(getWord(0)); in bitsToDouble() 1781 return BitsToFloat(static_cast<uint32_t>(getWord(0))); in bitsToFloat()
|
/external/llvm-project/llvm/include/llvm/ProfileData/ |
D | GCOV.h | 144 uint32_t getWord() { return de.getU32(cursor); } in getWord() function
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
D | DepthFirstAdapter.java | 1498 if(node.getWord() != null) in caseANameVariable() 1500 node.getWord().apply(this); in caseANameVariable()
|
D | ReversedDepthFirstAdapter.java | 1505 if(node.getWord() != null) in caseANameVariable() 1507 node.getWord().apply(this); in caseANameVariable()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 156 uint64_t getWord(unsigned bitPosition) const { in getWord() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 388 U.pVal[hi1Word] |= subBits.getWord(subBitWidth - 1); in insertBits() 814 int64_t sext = SignExtend64(getWord(0), BitWidth); in roundToDouble() 817 return double(getWord(0)); in roundToDouble()
|
/external/llvm-project/llvm/lib/Support/ |
D | APInt.cpp | 387 U.pVal[hi1Word] |= subBits.getWord(subBitWidth - 1); in insertBits() 807 int64_t sext = SignExtend64(getWord(0), BitWidth); in roundToDouble() 810 return double(getWord(0)); in roundToDouble()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 160 uint64_t getWord(unsigned bitPosition) const { in getWord() function
|