Home
last modified time | relevance | path

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

12

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory_model/
DvktMemoryModelMessagePassing.cpp350 …const char *typeStr = (m_data.dataType == DATA_TYPE_UINT64) ? "uint64_t" : (m_data.dataType == DAT… in initPrograms() local
427 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms()
466 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer PayloadRef { " << typeStr << " x[]; };… in initPrograms()
468 …case SC_BUFFER: css << "layout(set=0, binding=0) " << memqual << " buffer Payload { " << typeStr in initPrograms()
483 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer GuardRef { " << typeStr << " x[]; };\n… in initPrograms()
485 …case SC_BUFFER: css << "layout(set=0, binding=1) buffer Guard { " << typeStr << " x[]; } guard;\n… in initPrograms()
662 …case SC_BUFFER: css << " payload.x[bufferCoord] = " << typeStr << "(bufferCoord) + ((floatBitsT… in initPrograms()
663 …case SC_IMAGE: css << " imageStore(payload, imageCoord, vec4(" << typeStr << "(bufferCoord + (f… in initPrograms()
664 …case SC_WORKGROUP: css << " payload.x[sharedCoord] = " << typeStr << "(bufferCoord) + ((floatBit… in initPrograms()
676 case SC_BUFFER: css << " " << typeStr << " r = payload.x[partnerBufferCoord];\n"; break; in initPrograms()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/
DvktMemoryModelMessagePassing.cpp350 …const char *typeStr = (m_data.dataType == DATA_TYPE_UINT64) ? "uint64_t" : (m_data.dataType == DAT… in initPrograms() local
427 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms()
466 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer PayloadRef { " << typeStr << " x[]; };… in initPrograms()
468 …case SC_BUFFER: css << "layout(set=0, binding=0) " << memqual << " buffer Payload { " << typeStr in initPrograms()
483 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer GuardRef { " << typeStr << " x[]; };\n… in initPrograms()
485 …case SC_BUFFER: css << "layout(set=0, binding=1) buffer Guard { " << typeStr << " x[]; } guard;\n… in initPrograms()
662 …case SC_BUFFER: css << " payload.x[bufferCoord] = " << typeStr << "(bufferCoord) + ((floatBitsT… in initPrograms()
663 …case SC_IMAGE: css << " imageStore(payload, imageCoord, vec4(" << typeStr << "(bufferCoord + (f… in initPrograms()
664 …case SC_WORKGROUP: css << " payload.x[sharedCoord] = " << typeStr << "(bufferCoord) + ((floatBit… in initPrograms()
676 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/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/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/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/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/external/vulkan-docs/src/scripts/
Dgenerator.py830 typeStr = enuminfo.elem.get('type');
833 if typeStr != "float":
836 strVal += "static_cast<" + typeStr + ">(" + number + ")"
837 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};'
840 typeStr = enuminfo.elem.get('type');
844 if typeStr != "float":
845 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.cpp790 const string typeStr = getTypeName(format.unsizedType); in formatName() local
791 return fmtStr + "_" + toLower(typeStr.substr(3)); in formatName()
803 const string typeStr = getTypeName(format.unsizedType); in formatDesc() local
804 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/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/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/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/
DvktTessellationShaderInputOutputTests.cpp799 static const std::string typeStr[] = in initPrograms() local
808 const std::string dataType = typeStr[caseDef.dataType]; in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationShaderInputOutputTests.cpp799 static const std::string typeStr[] = in initPrograms() local
808 const std::string dataType = typeStr[caseDef.dataType]; in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
DvktMeshShaderInOutTestsEXT.cpp184 const auto typeStr = ((dataType == DataType::INTEGER) ? "int" : "float"); in getGLSLType() local
187 return typeStr + widthStr + "_t"; // e.g. int32_t or float16_t in getGLSLType()
280 const auto typeStr = getGLSLType(); in getAssignmentStatement() local
283 …leftPrefix.empty() ? "" : ".") << name << "[" << arrayIndex << "] = " << typeStr << "(" << rightPr… in getAssignmentStatement()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
DvktMeshShaderInOutTestsEXT.cpp184 const auto typeStr = ((dataType == DataType::INTEGER) ? "int" : "float"); in getGLSLType() local
187 return typeStr + widthStr + "_t"; // e.g. int32_t or float16_t in getGLSLType()
280 const auto typeStr = getGLSLType(); in getAssignmentStatement() local
283 …leftPrefix.empty() ? "" : ".") << name << "[" << arrayIndex << "] = " << typeStr << "(" << rightPr… in getAssignmentStatement()
/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.c432 const char* typeStr = QP_LOOKUP_STRING(s_qpTestTypeMap, testCaseType); in qpTestLog_startCase() local
453 resultAttribs[numResultAttribs++] = qpSetStringAttrib("CaseType", typeStr); in qpTestLog_startCase()
/third_party/ffmpeg/libavformat/
Dmov.c541 char* typeStr; in mov_read_udta_string() local
544 typeStr = av_asprintf("%s%s", "00000001", str); // string in mov_read_udta_string()
547 typeStr = av_asprintf("%s%s", "00000015", str); // int in mov_read_udta_string()
550 typeStr = av_asprintf("%s%s", "00000017", str); // float in mov_read_udta_string()
553 typeStr = av_asprintf("%s%s", "00000043", str); // int in mov_read_udta_string()
556 typeStr = av_asprintf("%s%s", "0000004d", str); // unknow in mov_read_udta_string()
559 if (!typeStr) { in mov_read_udta_string()
562 av_dict_set(&c->fc->metadata, key, typeStr, 0); in mov_read_udta_string()
563 av_freep(&typeStr); in mov_read_udta_string()

12