Home
last modified time | relevance | path

Searched refs:pname (Results 451 - 475 of 585) sorted by relevance

1...<<11121314151617181920>>...24

/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderExecUtil.cpp77 static void checkLimit (const glu::RenderContext& renderCtx, deUint32 pname, int required) in checkLimit() argument
83 gl.getIntegerv(pname, &implementationLimit); in checkLimit()
87 throw tcu::TestError("Failed to query " + de::toString(glu::getGettableStateStr(pname)) + " - got " + de::toString(glu::getErrorStr(error))); in checkLimit()
89 throw tcu::NotSupportedError("Test requires " + de::toString(glu::getGettableStateStr(pname)) + " >= " + de::toString(required) + ", got " + de::toString(implementationLimit)); in checkLimit()
530 inline int queryInt (const glw::Functions& gl, deUint32 pname) in queryInt() argument
533 gl.getIntegerv(pname, &value); in queryInt()
H A DglsRandomShaderCase.cpp259 const GLenum pname = (shader.getType() == rsg::Shader::TYPE_VERTEX) ? (GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS) : (GL_MAX_TEXTURE_IMAGE_UNITS); in checkShaderLimits() local
263 m_renderCtx.getFunctions().getIntegerv(pname, &numSupported); in checkShaderLimits()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp102 void verifyShaderParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint shader, GLenum pname, GLenum reference) in verifyShaderParam() argument
105 gl.glGetShaderiv(shader, pname, &state); in verifyShaderParam()
111 bool verifyProgramParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLenum pname, GLenum reference) in verifyProgramParam() argument
114 gl.glGetProgramiv(program, pname, &state); in verifyProgramParam()
119 void verifyActiveUniformParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLuint index, GLenum pname, GLenum reference) in verifyActiveUniformParam() argument
122 gl.glGetActiveUniformsiv(program, 1, &index, pname, &state); in verifyActiveUniformParam()
128 void verifyActiveUniformBlockParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLuint blockIndex, GLenum pname, GLenum reference) in verifyActiveUniformBlockParam() argument
131 gl.glGetActiveUniformBlockiv(program, blockIndex, pname, &state); in verifyActiveUniformBlockParam()
248 void verifyVertexAttrib (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLenum pname, GLenum reference) in verifyVertexAttrib() argument
251 gl.glGetVertexAttribIiv(index, pname, in verifyVertexAttrib()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cDirectStateAccessTexturesTests.cpp6596 * @param [in] pname Parameter name with which function was called.
6600 bool GetSetParameterTest::CheckErrorAndLog(const glw::GLchar* fname, glw::GLenum pname) in CheckErrorAndLog() argument
6611 << glu::getErrorStr(error) << " during test of pname " in CheckErrorAndLog()
6612 << glu::getTextureParameterStr(pname) << ". Test fails." in CheckErrorAndLog()
6625 * @param [in] pname Parameter name.
6629 bool GetSetParameterTest::CompareAndLog(glw::GLint value_src, glw::GLint value_dst, glw::GLenum pname) in CompareAndLog() argument
6633 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Queried value of pname " in CompareAndLog()
6634 << glu::getTextureParameterStr(pname) << " is equal to " << value_dst in CompareAndLog()
6648 * @param [in] pname Parameter name.
6652 bool GetSetParameterTest::CompareAndLog(glw::GLuint value_src, glw::GLuint value_dst, glw::GLenum pname) in CompareAndLog() argument
6675 CompareAndLog(glw::GLfloat value_src, glw::GLfloat value_dst, glw::GLenum pname) CompareAndLog() argument
6698 CompareAndLog(glw::GLint value_src[4], glw::GLint value_dst[4], glw::GLenum pname) CompareAndLog() argument
6723 CompareAndLog(glw::GLuint value_src[4], glw::GLuint value_dst[4], glw::GLenum pname) CompareAndLog() argument
6748 CompareAndLog(glw::GLfloat value_src[4], glw::GLfloat value_dst[4], glw::GLenum pname) CompareAndLog() argument
7052 CompareAndLog(glw::GLint value_ref, glw::GLint value_dst, glw::GLenum pname) CompareAndLog() argument
7075 CompareAndLog(glw::GLuint value_ref, glw::GLuint value_dst, glw::GLenum pname) CompareAndLog() argument
7098 CompareAndLog(glw::GLfloat value_ref, glw::GLfloat value_dst, glw::GLenum pname) CompareAndLog() argument
7121 CompareAndLog(glw::GLint value_ref[4], glw::GLint value_dst[4], glw::GLenum pname) CompareAndLog() argument
7146 CompareAndLog(glw::GLuint value_ref[4], glw::GLuint value_dst[4], glw::GLenum pname) CompareAndLog() argument
7171 CompareAndLog(glw::GLfloat value_ref[4], glw::GLfloat value_dst[4], glw::GLenum pname) CompareAndLog() argument
[all...]
H A Dgl4cEnhancedLayoutsTests.cpp2802 /** Get <pname> for a set of active uniforms
2806 * @param pname Queired pname
2809 void Program::GetActiveUniformsiv(GLsizei count, const GLuint* indices, GLenum pname, GLint* params) const in GetActiveUniformsiv() argument
2813 GetActiveUniformsiv(gl, m_id, count, indices, pname, params); in GetActiveUniformsiv()
2969 /** Get <pname> for a set of active uniforms
2975 * @param pname Queired pname
2979 GLenum pname, GLint* params) in GetActiveUniformsiv()
2981 gl.getActiveUniformsiv(program_id, count, indices, pname, param in GetActiveUniformsiv()
2978 GetActiveUniformsiv(const Functions& gl, GLuint program_id, GLsizei count, const GLuint* indices, GLenum pname, GLint* params) GetActiveUniformsiv() argument
5138 GLenum pname = 0; getLastInputLocation() local
5216 GLenum pname = 0; getLastOutputLocation() local
11086 GLenum pname = 0; test() local
11525 GLenum pname = 0; test() local
11905 GLenum pname = 0; test() local
12271 GLenum pname = 0; test() local
[all...]
H A Dgl4cTextureFilterMinmaxTests.hpp255 void testReductionModeQueries(const glw::Functions& gl, glw::GLint pname);
H A Dgl4cVertexAttrib64BitTest.cpp658 bool verifyResults(GLuint index, GLenum pname, GLint expected_value) const;
1085 * @param pname Parameter name to be querried with getVertexAttribiv and getVertexAttribLdv
1090 bool GetVertexAttribTest::verifyResults(GLuint index, GLenum pname, GLint expected_value) const in verifyResults() argument
1095 gl.getVertexAttribiv(index, pname, &params_getVertexAttribiv); in verifyResults()
1098 gl.getVertexAttribLdv(index, pname, &params_getVertexAttribLdv); in verifyResults()
1106 << glu::getVertexAttribParameterNameName(pname) << "/* pname */)" << tcu::TestLog::EndMessage; in verifyResults()
1111 << glu::getVertexAttribParameterNameName(pname) << "/* pname */)" << tcu::TestLog::EndMessage; in verifyResults()
/kernel/linux/linux-5.10/drivers/pinctrl/
H A Dpinctrl-lpc18xx.c223 #define LPC_N(pname, off, f0, f1, f2, f3, f4, f5, f6, f7, a, t) \
224 static struct lpc18xx_pin_caps lpc18xx_pin_##pname = { \
441 #define LPC18XX_PIN(pname, n) { \
443 .name = #pname, \
444 .drv_data = &lpc18xx_pin_##pname \
/kernel/linux/linux-6.6/drivers/mtd/
H A Dmtdcore.c581 const char *pname, *prefix = "partition-"; in mtd_check_of_node() local
612 if (!of_property_read_string(mtd_dn, "label", &pname)) { in mtd_check_of_node()
615 pname = mtd_dn->name; in mtd_check_of_node()
619 plen = strlen(pname) - offset; in mtd_check_of_node()
621 !strncmp(mtd->name, pname + offset, plen)) { in mtd_check_of_node()
/kernel/linux/linux-6.6/drivers/pinctrl/
H A Dpinctrl-lpc18xx.c225 #define LPC_N(pname, off, f0, f1, f2, f3, f4, f5, f6, f7, a, t) \
226 static struct lpc18xx_pin_caps lpc18xx_pin_##pname = { \
443 #define LPC18XX_PIN(pname, n) { \
445 .name = #pname, \
446 .drv_data = &lpc18xx_pin_##pname \
/third_party/pulseaudio/src/pulsecore/
H A Dprotocol-esound.c1479 char pname[128]; in pa_esound_protocol_connect() local
1496 pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname)); in pa_esound_protocol_connect()
1497 pa_proplist_setf(data.proplist, PA_PROP_APPLICATION_NAME, "EsounD client (%s)", pname); in pa_esound_protocol_connect()
1498 pa_proplist_sets(data.proplist, "esound-protocol.peer", pname); in pa_esound_protocol_connect()
/third_party/python/Python/
H A Dimport.c1447 PyObject *pname; in PyImport_ImportModule() local
1450 pname = PyUnicode_FromString(name); in PyImport_ImportModule()
1451 if (pname == NULL) in PyImport_ImportModule()
1453 result = PyImport_Import(pname); in PyImport_ImportModule()
1454 Py_DECREF(pname); in PyImport_ImportModule()
/kernel/linux/linux-5.10/drivers/dma/ti/
H A Dedma.c2148 const char pname[] = "ti,edma-xbar-event-map"; in edma_xbar_event_map() local
2168 ret = of_property_read_u16_array(dev->of_node, pname, (u16 *)xbar_chans, in edma_xbar_event_map()
2216 const char pname[] = "ti,edma-memcpy-channels"; in edma_setup_info_from_dt() local
2225 ret = of_property_read_u32_array(dev->of_node, pname, in edma_setup_info_from_dt()
2237 const char pname[] = "ti,edma-reserved-slot-ranges"; in edma_setup_info_from_dt() local
2264 ret = of_property_read_u32_array(dev->of_node, pname, in edma_setup_info_from_dt()
/kernel/linux/linux-6.6/drivers/dma/ti/
H A Dedma.c2090 const char pname[] = "ti,edma-xbar-event-map"; in edma_xbar_event_map() local
2110 ret = of_property_read_u16_array(dev->of_node, pname, (u16 *)xbar_chans, in edma_xbar_event_map()
2158 const char pname[] = "ti,edma-memcpy-channels"; in edma_setup_info_from_dt() local
2167 ret = of_property_read_u32_array(dev->of_node, pname, in edma_setup_info_from_dt()
2179 const char pname[] = "ti,edma-reserved-slot-ranges"; in edma_setup_info_from_dt() local
2206 ret = of_property_read_u32_array(dev->of_node, pname, in edma_setup_info_from_dt()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dfunctionsgl_typedefs.h1744 GLenum pname,
1769 typedef void(INTERNAL_GL_APIENTRY *PFNGLGETUNSIGNEDBYTEVEXTPROC)(GLenum pname, GLubyte *data);
1779 GLenum pname,
1782 GLenum pname,
1879 GLenum pname,
1882 GLenum pname,
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp99 void verifyShaderParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint shader, GLenum pname, GLenum reference) in verifyShaderParam() argument
102 gl.glGetShaderiv(shader, pname, &state); in verifyShaderParam()
108 bool verifyProgramParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLenum pname, GLenum reference) in verifyProgramParam() argument
111 gl.glGetProgramiv(program, pname, &state); in verifyProgramParam()
189 void verifyVertexAttrib (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLenum pname, GLenum reference) in verifyVertexAttrib() argument
192 gl.glGetVertexAttribiv(index, pname, &state); in verifyVertexAttrib()
/kernel/linux/linux-5.10/drivers/macintosh/
H A Dsmu.c1021 char pname[32]; in __smu_get_sdb_partition() local
1027 sprintf(pname, "sdb-partition-%02x", id); in __smu_get_sdb_partition()
1039 part = of_get_property(smu->of_node, pname, size); in __smu_get_sdb_partition()
/kernel/linux/linux-5.10/sound/soc/stm/
H A Dstm32_sai_sub.c453 const char *pname = __clk_get_name(sai->sai_ck); in stm32_sai_add_mclk_provider() local
454 char *mclk_name, *p, *s = (char *)pname; in stm32_sai_add_mclk_provider()
477 mclk->hw.init = CLK_HW_INIT(mclk_name, pname, &mclk_ops, 0); in stm32_sai_add_mclk_provider()
/kernel/linux/linux-6.6/drivers/macintosh/
H A Dsmu.c1021 char pname[32]; in __smu_get_sdb_partition() local
1027 sprintf(pname, "sdb-partition-%02x", id); in __smu_get_sdb_partition()
1039 part = of_get_property(smu->of_node, pname, size); in __smu_get_sdb_partition()
/kernel/linux/linux-6.6/sound/soc/stm/
H A Dstm32_sai_sub.c451 const char *pname = __clk_get_name(sai->sai_ck); in stm32_sai_add_mclk_provider() local
452 char *mclk_name, *p, *s = (char *)pname; in stm32_sai_add_mclk_provider()
475 mclk->hw.init = CLK_HW_INIT(mclk_name, pname, &mclk_ops, 0); in stm32_sai_add_mclk_provider()
H A Dstm32_i2s.c413 const char *pname = __clk_get_name(i2s->i2sclk); in stm32_i2s_add_mclk_provider() local
414 char *mclk_name, *p, *s = (char *)pname; in stm32_i2s_add_mclk_provider()
437 mclk->hw.init = CLK_HW_INIT(mclk_name, pname, &mclk_ops, 0); in stm32_i2s_add_mclk_provider()
/third_party/node/deps/openssl/openssl/apps/
H A Dx509.c1163 const char *pname; in purpose_print() local
1165 pname = X509_PURPOSE_get0_name(pt); in purpose_print()
1168 BIO_printf(bio, "%s%s : ", pname, i ? " CA" : ""); in purpose_print()
/third_party/openssl/apps/
H A Dx509.c1163 const char *pname; in purpose_print() local
1165 pname = X509_PURPOSE_get0_name(pt); in purpose_print()
1168 BIO_printf(bio, "%s%s : ", pname, i ? " CA" : ""); in purpose_print()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cArrayOfArraysTests.cpp1005 * by calling GetIntegerv with pname values of MAX_VERTEX_SHADER_STORAGE_BLOCKS, MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS,
8362 glw::GLenum pname = 0; in test_shader_compilation() local
8367 /* Select pname of max for stage */ in test_shader_compilation()
8371 pname = GL_MAX_COMPUTE_ATOMIC_COUNTERS; in test_shader_compilation()
8374 pname = GL_MAX_FRAGMENT_ATOMIC_COUNTERS; in test_shader_compilation()
8377 pname = GL_MAX_GEOMETRY_ATOMIC_COUNTERS; in test_shader_compilation()
8380 pname = GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS; in test_shader_compilation()
8383 pname = GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS; in test_shader_compilation()
8386 pname = GL_MAX_VERTEX_ATOMIC_COUNTERS; in test_shader_compilation()
8394 gl.getIntegerv(pname, in test_shader_compilation()
8541 glw::GLenum pname = 0; test_shader_compilation() local
[all...]
/kernel/linux/linux-5.10/tools/perf/pmu-events/
H A Djevents.c184 const char *pname; member
667 addfield(map, &event, ",", msr->pname, msrval); in json_events()

Completed in 129 milliseconds

1...<<11121314151617181920>>...24