/external/deqp/modules/gles3/functional/ |
D | es3fInstancedRenderingTests.cpp | 482 int curLoc = location + slotNdx; in setupVarAttribPointer() local 484 glEnableVertexAttribArray(curLoc); in setupVarAttribPointer() 485 glVertexAttribDivisor(curLoc, divisor); in setupVarAttribPointer() 488 glVertexAttribPointer(curLoc, typeSize, GL_FLOAT, GL_FALSE, 0, attrPtr); in setupVarAttribPointer() 490 glVertexAttribIPointer(curLoc, typeSize, GL_INT, 0, attrPtr); in setupVarAttribPointer() 492 glVertexAttribIPointer(curLoc, typeSize, GL_UNSIGNED_INT, 0, attrPtr); in setupVarAttribPointer() 498 …glVertexAttribPointer(curLoc, numRows, GL_FLOAT, GL_FALSE, numCols*numRows*(int)sizeof(float), att… in setupVarAttribPointer()
|
D | es3fFragmentOutputTests.cpp | 1049 int curLoc = 0; in createRandomCase() local 1050 while (curLoc < numTargets) in createRandomCase() 1053 int maxArrayLen = numTargets-curLoc; in createRandomCase() 1059 outputs.push_back(FragmentOutput(basicType, precision, curLoc, arrayLen)); in createRandomCase() 1064 curLoc += numLocations; in createRandomCase() 1066 DE_ASSERT(curLoc == numTargets); in createRandomCase()
|
/external/llvm-project/mlir/lib/Parser/ |
D | AffineParser.cpp | 700 llvm::SMLoc curLoc = getToken().getLoc(); in parseAffineMapReference() local 705 return emitError(curLoc, "expected AffineMap, but got IntegerSet"); in parseAffineMapReference() 709 llvm::SMLoc curLoc = getToken().getLoc(); in parseIntegerSetReference() local 714 return emitError(curLoc, "expected IntegerSet, but got AffineMap"); in parseIntegerSetReference()
|
D | AttributeParser.cpp | 171 auto curLoc = getToken().getLoc(); in parseAttribute() local 173 emitError(curLoc, "expected nested symbol reference identifier"); in parseAttribute()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_D_T_.py | 58 for curName, curLoc in dataIter: 61 if curLoc in glyphDict: 62 curGlyph = glyphDict[curLoc] 64 curGlyphData = data[slice(*curLoc)] 67 glyphDict[curLoc] = curGlyph
|
D | E_B_L_C_.py | 452 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 453 assert curLoc[1] == nxtLoc[0], "Data must be consecutive in indexSubTable offset formats" 571 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 572 assert curLoc[1] == nxtLoc[0], "Data must be consecutive in indexSubTable format 4"
|
/external/icu/icu4c/source/test/cintltst/ |
D | capitst.c | 864 const char *curLoc = "bn"; in TestBengaliSortKey() local 889 …log_data_err("ERROR: Creating collator from rules failed with locale: %s : %s\n", curLoc, myErrorN… in TestBengaliSortKey() 936 char* curLoc; in TestOpenVsOpenRules() local 970 curLoc = (char *)uloc_getAvailable(x); in TestOpenVsOpenRules() 971 log_verbose("Processing %s\n", curLoc); in TestOpenVsOpenRules() 974 c1 = ucol_open(curLoc, &err); in TestOpenVsOpenRules() 976 …log_err("ERROR: Normal collation creation failed with locale: %s : %s\n", curLoc, myErrorName(err)… in TestOpenVsOpenRules() 991 …log_err("ERROR: Creating collator from rules failed with locale: %s : %s\n", curLoc, myErrorName(e… in TestOpenVsOpenRules() 996 uld = ulocdata_open(curLoc, &err); in TestOpenVsOpenRules() 1045 sortKeyLen1, sortKeyLen2, str, curLoc); in TestOpenVsOpenRules() [all …]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 120 const DebugLoc &curLoc = MI.getDebugLoc(); in emitLineNumberAsDotLoc() local 122 if (!prevDebugLoc && !curLoc) in emitLineNumberAsDotLoc() 125 if (prevDebugLoc == curLoc) in emitLineNumberAsDotLoc() 128 prevDebugLoc = curLoc; in emitLineNumberAsDotLoc() 130 if (!curLoc) in emitLineNumberAsDotLoc() 133 auto *Scope = cast_or_null<DIScope>(curLoc.getScope()); in emitLineNumberAsDotLoc() 150 this->emitSrcInText(fileName, curLoc.getLine()); in emitLineNumberAsDotLoc() 153 temp << "\t.loc " << filenameMap[fileName] << " " << curLoc.getLine() in emitLineNumberAsDotLoc() 154 << " " << curLoc.getCol(); in emitLineNumberAsDotLoc()
|
/external/llvm-project/mlir/tools/mlir-tblgen/ |
D | OpFormatGen.cpp | 2614 llvm::SMLoc curLoc = curToken.getLoc(); in parseOptional() local 2616 return emitError(curLoc, "optional groups can only be used as top-level " in parseOptional() 2634 return emitError(curLoc, "optional group specified no anchor element"); in parseOptional() 2644 return emitError(curLoc, in parseOptional() 2654 return emitError(curLoc, "type directive can only refer to variables " in parseOptional() 2755 llvm::SMLoc curLoc = curToken.getLoc(); in parseCustomDirective() local 2790 return emitError(curLoc, in parseCustomDirective() 2797 return emitError(curLoc, "type directives within a custom directive " in parseCustomDirective()
|
/external/icu/icu4c/source/i18n/ |
D | dtptngen.cpp | 2403 int32_t curLoc = startPos; in setTokens() local 2404 if ( curLoc >= pattern.length()) { in setTokens() 2409 UChar c=pattern.charAt(curLoc); in setTokens() 2411 curLoc++; in setTokens() 2414 startPos = curLoc; in setTokens() 2419 if ( pattern.charAt(curLoc)!= pattern.charAt(startPos) ) { in setTokens() 2422 } while(curLoc <= pattern.length()); in setTokens() 2423 *len = curLoc-startPos; in setTokens()
|
D | calendar.cpp | 449 Locale curLoc; // current locale in create() local 452 lkey.currentLocale(curLoc); in create() 462 …fprintf(stderr, "BasicCalendarFactory::create() - cur %s, can %s\n", (const char*)curLoc.getName()… in create() 468 …fprintf(stderr, "BasicCalendarFactory - not handling %s.[%s]\n", (const char*) curLoc.getName(), t… in create()
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktShaderLibrary.cpp | 1016 const deUint32 curLoc = (deUint32)attribs.size(); in getVertexAttributeDescriptions() local 1020 curLoc, // location in getVertexAttributeDescriptions()
|