Home
last modified time | relevance | path

Searched refs:typeStr (Results 1 – 23 of 23) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/
DvktMemoryModelMessagePassing.cpp349 …const char *typeStr = (m_data.dataType == DATA_TYPE_UINT64) ? "uint64_t" : (m_data.dataType == DAT… in initPrograms() local
426 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms()
465 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer PayloadRef { " << typeStr << " x[]; };… in initPrograms()
467 …case SC_BUFFER: css << "layout(set=0, binding=0) " << memqual << " buffer Payload { " << typeStr in initPrograms()
482 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer GuardRef { " << typeStr << " x[]; };\n… in initPrograms()
484 …case SC_BUFFER: css << "layout(set=0, binding=1) buffer Guard { " << typeStr << " x[]; } guard;\n… in initPrograms()
661 …case SC_BUFFER: css << " payload.x[bufferCoord] = " << typeStr << "(bufferCoord) + ((floatBitsT… in initPrograms()
662 …case SC_IMAGE: css << " imageStore(payload, imageCoord, vec4(" << typeStr << "(bufferCoord + (f… in initPrograms()
663 …case SC_WORKGROUP: css << " payload.x[sharedCoord] = " << typeStr << "(bufferCoord) + ((floatBit… in initPrograms()
675 case SC_BUFFER: css << " " << typeStr << " r = payload.x[partnerBufferCoord];\n"; break; in initPrograms()
[all …]
/third_party/node/lib/internal/crypto/
Dkeys.js269 function parseKeyType(typeStr, required, keyType, isPublic, optionName) { argument
270 if (typeStr === undefined && !required) {
272 } else if (typeStr === 'pkcs1') {
275 typeStr, 'can only be used for RSA keys');
278 } else if (typeStr === 'spki' && isPublic !== false) {
280 } else if (typeStr === 'pkcs8' && isPublic !== true) {
282 } else if (typeStr === 'sec1' && isPublic !== true) {
285 typeStr, 'can only be used for EC keys');
290 throw new ERR_INVALID_ARG_VALUE(optionName, typeStr);
299 const { format: formatStr, type: typeStr } = enc;
[all …]
/third_party/skia/docs/examples/
DRRect_Type.cpp14 const char* typeStr[] = { "empty", "rect", "oval", "simple", "nine patch", "complex" };
15 canvas->drawString(typeStr[(int) rrect.type()], rect.centerX(), rect.bottom() + 20, paint);
/third_party/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp444 const char *typeStr = "Unknown"; in execFormatTest() local
451 typeStr = "Formattable"; in execFormatTest()
458 typeStr = "StringPiece"; in execFormatTest()
471 typeStr, lineNum, u_errorName(status)); in execFormatTest()
478typeStr, lineNum, UnicodeStringPiece(expected).data(), UnicodeStringPiece(result).data(), in execFormatTest()
Dlistformattertest.cpp792 const char* typeStr [] = {"and", "or", "units"}; in TestNextPosition() local
820 .append(" t=").append(typeStr[type])).c_str(), in TestNextPosition()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderLibraryCase.cpp542 const char* typeStr = getDataTypeName(floatType); in genVertexShader() local
543 res << vtxIn << " " << typeStr << " a_" << val.valueName << ";\n"; in genVertexShader()
546 res << vtxOut << " " << typeStr << " " << val.valueName << ";\n"; in genVertexShader()
548 res << vtxOut << " " << typeStr << " v_" << val.valueName << ";\n"; in genVertexShader()
917 const char* typeStr = getDataTypeName(val.dataType); in specializeShaders() local
923 decl << vtxIn << " " << typeStr << " " << val.valueName << ";\n"; in specializeShaders()
931 … setup << typeStr << " " << val.valueName << " = " << typeStr << "(a_" << val.valueName << ");\n"; in specializeShaders()
936 decl << "uniform " << typeStr << " " << val.valueName << ";\n"; in specializeShaders()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dgenerator.py733 typeStr = enuminfo.elem.get('type');
736 if typeStr != "float":
739 strVal += "static_cast<" + typeStr + ">(" + number + ")"
740 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};'
743 typeStr = enuminfo.elem.get('type');
747 if typeStr != "float":
748 if typeStr == "uint64_t":
/third_party/vulkan-headers/registry/
Dgenerator.py822 typeStr = enuminfo.elem.get('type');
825 if typeStr != "float":
828 strVal += "static_cast<" + typeStr + ">(" + number + ")"
829 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};'
832 typeStr = enuminfo.elem.get('type');
836 if typeStr != "float":
837 if typeStr == "uint64_t":
/third_party/vk-gl-cts/modules/glshared/
DglsShaderLibraryCase.cpp160 const char* const typeStr = getDataTypeName(floatType); in genVertexShader() local
162 res << vtxIn << " " << typeStr << " a_" << val.name << ";\n"; in genVertexShader()
165 res << vtxOut << " " << typeStr << " " << val.name << ";\n"; in genVertexShader()
167 res << vtxOut << " " << typeStr << " v_" << val.name << ";\n"; in genVertexShader()
427 const char* const typeStr = getDataTypeName(val.type.getBasicType()); in generateUniformDeclarations() local
430 dst << "uniform " << typeStr << " " << val.name << ";\n"; in generateUniformDeclarations()
448 const char* const typeStr = getDataTypeName(val.type.getBasicType()); in generateVertexSpecialization() local
452 decl << vtxIn << " " << typeStr << " " << val.name << ";\n"; in generateVertexSpecialization()
460 setup << typeStr << " " << val.name << " = " << typeStr << "(a_" << val.name << ");\n"; in generateVertexSpecialization()
DglsFboCompletenessTests.cpp780 const string typeStr = getTypeName(format.unsizedType); in formatName() local
781 return fmtStr + "_" + toLower(typeStr.substr(3)); in formatName()
793 const string typeStr = getTypeName(format.unsizedType); in formatDesc() local
794 return fmtStr + " with type " + typeStr; in formatDesc()
/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_graph.h59 const char *typeStr() const;
Dnv50_ir_print.cpp832 ei.getEdge()->typeStr()); in visit()
848 ei.getEdge()->typeStr()); in visit()
Dnv50_ir_graph.cpp73 const char *Graph::Edge::typeStr() const in typeStr() function in nv50_ir::Graph::Edge
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DTimeZoneGenericNames.java71 String typeStr = type.toString(); in isFallbackTypeOf() local
73 if (t.equals(typeStr)) { in isFallbackTypeOf()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneGenericNames.java68 String typeStr = type.toString(); in isFallbackTypeOf() local
70 if (t.equals(typeStr)) { in isFallbackTypeOf()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationShaderInputOutputTests.cpp797 static const std::string typeStr[] = in initPrograms() local
806 const std::string dataType = typeStr[caseDef.dataType]; in initPrograms()
/third_party/node/deps/icu-small/source/i18n/
Dtranslit.cpp1550 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1552 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/icu/icu4c/source/i18n/
Dtranslit.cpp1550 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1552 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/skia/third_party/externals/icu/source/i18n/
Dtranslit.cpp1536 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1538 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/vk-gl-cts/framework/qphelper/
DqpTestLog.c431 const char* typeStr = QP_LOOKUP_STRING(s_qpTestTypeMap, testCaseType); in qpTestLog_startCase() local
452 resultAttribs[numResultAttribs++] = qpSetStringAttrib("CaseType", typeStr); in qpTestLog_startCase()
/third_party/typescript/src/compiler/
Dchecker.ts13915 …const typeStr = typeToString(type, /*enclosingDeclaration*/ undefined, TypeFormatFlags.WriteArrayA… constant
13916 error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length);
/third_party/typescript/lib/
DtypingsInstaller.js63140 …var typeStr = typeToString(type, /*enclosingDeclaration*/ undefined, 2 /* TypeFormatFlags.WriteArr…
63141 error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length);
Dtsc.js52586 var typeStr = typeToString(type, undefined, 2);
52587 error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length);