Home
last modified time | relevance | path

Searched refs:values (Results 1626 - 1650 of 2221) sorted by relevance

1...<<61626364656667686970>>...89

/third_party/skia/third_party/externals/egl-registry/api/EGL/
H A Deglext.h517 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values);
520 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values);
523 EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values);
526 EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values);
/third_party/protobuf/python/google/protobuf/internal/
H A Ddescriptor_pool_test.py719 def __init__(self, values):
720 self.values = values
729 for index, (value, number) in enumerate(self.values):
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Ddefs.c105 const google_protobuf_EnumValueDescriptorProto* const* values; in rewrite_enum_default() local
119 values = google_protobuf_EnumDescriptorProto_value(matching_enum, &n); in rewrite_enum_default()
121 if (google_protobuf_EnumValueDescriptorProto_number(values[i]) == val) { in rewrite_enum_default()
123 field, google_protobuf_EnumValueDescriptorProto_name(values[i])); in rewrite_enum_default()
2133 * can then call EnumBuilderContext#add_value to define the enum values.
/third_party/skia/third_party/externals/angle2/include/EGL/
H A Deglext.h502 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values);
505 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values);
508 EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values);
511 EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values);
/third_party/vk-gl-cts/modules/gles3/scripts/
H A Dgenutil.py80 for (name, values) in inputs:
81 res.append("input %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
82 for (name, values) in outputs:
83 res.append("output %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
113 # Helpers to convert a list of Scalar/Vec values into another type.
/third_party/vk-gl-cts/modules/gles31/scripts/
H A Dgenutil.py80 for (name, values) in inputs:
81 res.append("input %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
82 for (name, values) in outputs:
83 res.append("output %s = [ %s ];" % (name, " | ".join([str(v) for v in values]).lower()))
113 # Helpers to convert a list of Scalar/Vec values into another type.
/third_party/backends/backend/genesys/
H A Dtables_sensor.cpp111 sensor.register_dpiset = setting.resolutions.values()[0]; in genesys_init_sensor_tables()
650 sensor.register_dpiset = setting.resolutions.values()[0]; in genesys_init_sensor_tables()
1136 sensor.register_dpiset = setting.resolutions.values()[0]; in genesys_init_sensor_tables()
1279 sensor.register_dpiset = setting.resolutions.values()[0]; in genesys_init_sensor_tables()
1388 sensor.register_dpiset = setting.resolutions.values()[0]; in genesys_init_sensor_tables()
1855 for (auto resolution : setting.resolutions.values()) { in genesys_init_sensor_tables()
1981 sensor.shading_resolution = setting.resolutions.values().front(); in genesys_init_sensor_tables()
2146 {for (auto resolution : setting.resolutions.values()) { in genesys_init_sensor_tables()
2326 for (auto resolution : setting.resolutions.values()) { in genesys_init_sensor_tables()
2396 sensor.register_dpiset = setting.resolutions.values()[ in genesys_init_sensor_tables()
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp222 ImGui::BulletText("You can apply arithmetic operators +,*,/ on numerical values.\nUse +- to subtract."); in ShowUserGuide()
650 "You can apply arithmetic operators +,*,/ on numerical values.\n" in ShowDemoWindowWidgets()
936 // Note that characters values are preserved even by InputText() if the font cannot be displayed, in ShowDemoWindowWidgets()
1058 // Simplified one-liner Combo() API, using values packed in a single constant string in ShowDemoWindowWidgets()
1582 // Fill an array of contiguous float values to plot in ShowDemoWindowWidgets()
1585 static float values[90] = {}; in ShowDemoWindowWidgets() local
1593 values[values_offset] = cosf(phase); in ShowDemoWindowWidgets()
1594 values_offset = (values_offset + 1) % IM_ARRAYSIZE(values); in ShowDemoWindowWidgets()
1603 for (int n = 0; n < IM_ARRAYSIZE(values); n++) in ShowDemoWindowWidgets()
1604 average += values[ in ShowDemoWindowWidgets()
2027 static float values[7] = { 0.0f, 0.60f, 0.35f, 0.9f, 0.70f, 0.20f, 0.0f }; ShowDemoWindowWidgets() local
2660 const float values[5] = { 0.5f, 0.20f, 0.80f, 0.60f, 0.25f }; ShowDemoWindowLayout() local
[all...]
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dninja.py122 compute derived values like "the last output of the target".
1895 def WriteVariableList(self, ninja_file, var, values):
1896 assert not isinstance(values, str)
1897 if values is None:
1898 values = []
1899 ninja_file.variable(var, " ".join(values))
2061 """Called by __init__ to initialize generator values based on params."""
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dninja.py122 compute derived values like "the last output of the target".
1892 def WriteVariableList(self, ninja_file, var, values):
1893 assert not isinstance(values, str)
1894 if values is None:
1895 values = []
1896 ninja_file.variable(var, " ".join(values))
2058 """Called by __init__ to initialize generator values based on params."""
/third_party/skia/third_party/skcms/
H A Dskcms.cc90 // Before we cast fbits to int32_t, check for out of range values to pacify UBSAN. in exp2f_()
92 // Negative values are effectively underflow - we'll end up returning a (different) negative in exp2f_()
138 // By storing f=K-1, those old unusued f=0 values now mean K=1, a noop scale factor.
275 // Additional ICC signature values that are only used internally
375 // s15Fixed16ArrayType is technically variable sized, holding N values. However, the only valid
376 // use of the type is for the CHAD tag that stores exactly nine values.
380 uint8_t values [36];
394 const uint8_t* values = sf32Tag->values;
396 for (int c = 0; c < 3; ++c, values
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DContext.cpp1541 // Queries about current GL state values are answered by State. in getFloatvImpl()
1592 // Queries about current GL state values are answered by State. in getIntegervImpl()
2139 // Queries about current GL state values are answered by State. in getInteger64vImpl()
2188 // Queries about current GL state values are answered by State. in getIntegeri_v()
2229 // Queries about current GL state values are answered by State.
2258 // Queries about current GL state values are answered by State.
3984 // Handle GLES 3.1 MAX_*_SAMPLES values similarly to MAX_SAMPLES. in updateCaps()
4316 void Context::clearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *values) in clearBufferfv() argument
4341 ANGLE_CONTEXT_TRY(framebufferObject->clearBufferfv(this, buffer, drawbuffer, values)); in clearBufferfv()
4344 void Context::clearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *values) in clearBufferuiv() argument
4368 clearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *values) clearBufferiv() argument
5719 vertexAttrib1fv(GLuint index, const GLfloat *values) vertexAttrib1fv() argument
5733 vertexAttrib2fv(GLuint index, const GLfloat *values) vertexAttrib2fv() argument
5747 vertexAttrib3fv(GLuint index, const GLfloat *values) vertexAttrib3fv() argument
5761 vertexAttrib4fv(GLuint index, const GLfloat *values) vertexAttrib4fv() argument
6314 getSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values) getSynciv() argument
[all...]
H A DState.cpp1118 // An application can pass NaN values here, so handle this gracefully in setPolygonOffsetParams()
2234 void State::setVertexAttribf(GLuint index, const GLfloat values[4])
2237 mVertexAttribCurrentValues[index].setFloatValues(values);
2243 void State::setVertexAttribu(GLuint index, const GLuint values[4])
2246 mVertexAttribCurrentValues[index].setUnsignedIntValues(values);
2252 void State::setVertexAttribi(GLuint index, const GLint values[4])
2255 mVertexAttribCurrentValues[index].setIntValues(values);
H A Dqueryutils.cpp7 // queryutils.cpp: Utilities for querying values from GL objects
382 // Some pname values can take in GLfixed values and may need to be converted
1704 GLint *values) in QuerySynciv()
1721 *values = clampCast<GLint>(GL_SYNC_FENCE); in QuerySynciv()
1724 *values = clampCast<GLint>(sync->getCondition()); in QuerySynciv()
1727 *values = clampCast<GLint>(sync->getFlags()); in QuerySynciv()
1732 *values = GL_SIGNALED; in QuerySynciv()
1736 ANGLE_TRY(sync->getStatus(context, values)); in QuerySynciv()
2155 // Most properties return one value, but GL_ACTIVE_VARIABLES returns an array of values in QueryProgramResourceiv()
1699 QuerySynciv(const Context *context, const Sync *sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values) QuerySynciv() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTests.cpp2291 // unreference values not used by Vulkan SC, no need to pu this under ifdef in SubpassRenderer()
3365 const Maybe<bool> values[] = in PixelValue() local
3370 for (size_t ndx = 0; ndx < DE_LENGTH_OF_ARRAY(values); ndx++) in PixelValue()
3372 if (values[ndx]) in PixelValue()
3373 setValue(ndx, *values[ndx]); in PixelValue()
3418 void clearReferenceValues (vector<PixelValue>& values,
3425 DE_ASSERT(targetSize.x() * targetSize.y() == (deUint32)values.size());
3437 values[x + y * targetSize.x()].setValue(compNdx, *value.getValue(compNdx));
3439 values[x + y * targetSize.x()].setUndefined(compNdx);
3445 void markUndefined (vector<PixelValue>& values,
[all...]
/third_party/python/Lib/test/
H A D_test_multiprocessing.py990 # the values may be in buffer but not yet in pipe so sleep a bit
2083 def _test(cls, values):
2084 for sv, cv in zip(values, cls.codes_values):
2090 values = [self.RawValue(code, value)
2093 values = [self.Value(code, value)
2096 for sv, cv in zip(values, self.codes_values):
2099 proc = self.Process(target=self._test, args=(values,))
2104 for sv, cv in zip(values, self.codes_values):
2291 self.assertEqual(sorted(d.values()), [chr(i) for i in indices])
2997 values variable in _TestRemoteManager
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassTests.cpp2277 // unreference values not used by Vulkan SC, no need to pu this under ifdef in SubpassRenderer()
3351 const Maybe<bool> values[] = in PixelValue() local
3356 for (size_t ndx = 0; ndx < DE_LENGTH_OF_ARRAY(values); ndx++) in PixelValue()
3358 if (values[ndx]) in PixelValue()
3359 setValue(ndx, *values[ndx]); in PixelValue()
3404 void clearReferenceValues (vector<PixelValue>& values,
3411 DE_ASSERT(targetSize.x() * targetSize.y() == (deUint32)values.size());
3423 values[x + y * targetSize.x()].setValue(compNdx, *value.getValue(compNdx));
3425 values[x + y * targetSize.x()].setUndefined(compNdx);
3431 void markUndefined (vector<PixelValue>& values,
[all...]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dfunction.cc1214 // their values are saved into the corresponding private variables that in EmitEntryPointAsWrapper()
1927 // Map a case target to the list of values selecting that case. in FindSwitchCaseHeaders()
3053 // Create a list of integer literals for the selector values leading to in EmitSwitchStart()
3059 std::vector<uint64_t> values(values_ptr->begin(), values_ptr->end()); in EmitSwitchStart()
3060 std::stable_sort(values.begin(), values.end()); in EmitSwitchStart()
3061 for (auto value : values) { in EmitSwitchStart()
3062 // The rest of this module can handle up to 64 bit switch values. in EmitSwitchStart()
3063 // The Tint AST handles 32-bit values. in EmitSwitchStart()
3445 // Emit assignments to carry values t in EmitStatementsInBasicBlock()
4620 ast::ExpressionList values; MakeVectorShuffle() local
[all...]
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp330 // values 0xff and 0x00.
347 static simdutf_really_inline simd8<uint8_t> load(const uint8_t* values) { return vld1q_u8(values); } in load()
352 simdutf_really_inline simd8(const uint8_t values[16]) : simd8(load(values)) {} in simd8()
374 // Repeat 16 values as many times as necessary (usually for lookup tables)
423 // Perform a lookup assuming the value is between 0 and 16 (undefined behavior for out of range values)
457 static simdutf_really_inline simd8<int8_t> load(const int8_t values[16]) { return vld1q_s8(values); } in load()
527 simdutf_really_inline simd8(const int8_t* values)
[all...]
/third_party/openGLES/api/GL/
H A Dglext.h1445 typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values);
1465 GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values);
1720 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1725 typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1727 typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);
1767 GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1772 GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1774 GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values);
2691 typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values);
2692 typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values);
[all...]
/third_party/mesa3d/include/GL/
H A Dglext.h1464 typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1484 GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1739 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1744 typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1746 typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);
1786 GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1791 GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1793 GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values);
2698 typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values);
2699 typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values);
[all...]
/third_party/skia/third_party/externals/swiftshader/include/GL/
H A Dglext.h1500 typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1520 GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1775 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1780 typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1782 typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);
1822 GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1827 GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1829 GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values);
2734 typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values);
2735 typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values);
[all...]
/third_party/skia/third_party/externals/opengl-registry/api/GL/
H A Dglext.h1500 typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1520 GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);
1775 typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1780 typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1782 typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);
1822 GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values);
1827 GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values);
1829 GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values);
2734 typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values);
2735 typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values);
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DContext.cpp2288 // "If any of the offset values are outside the range of the implementation-defined values in getIntegerv()
2330 // "If any of the offset values are outside the range of the implementation-defined values in getIntegerv()
4011 void Context::setVertexAttrib(GLuint index, const GLfloat *values) in setVertexAttrib() argument
4015 mState.vertexAttribute[index].setCurrentValue(values); in setVertexAttrib()
4020 void Context::setVertexAttrib(GLuint index, const GLint *values) in setVertexAttrib() argument
4024 mState.vertexAttribute[index].setCurrentValue(values); in setVertexAttrib()
4029 void Context::setVertexAttrib(GLuint index, const GLuint *values) in setVertexAttrib() argument
4033 mState.vertexAttribute[index].setCurrentValue(values); in setVertexAttrib()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp612 void verifyUniformValues (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, const GLfloat* values) in verifyUniformValues() argument
624 if (values[ndx] != state[ndx]) in verifyUniformValues()
626 testCtx.getLog() << TestLog::Message << "// ERROR: at index " << ndx << " expected " << values[ndx] << "; got " << state[ndx] << TestLog::EndMessage; in verifyUniformValues()
635 void verifyUniformMatrixValues (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLint location, const GLfloat* values, bool transpose) in verifyUniformMatrixValues() argument
651 if (values[refIndex] != state[stateIndex]) in verifyUniformMatrixValues()
653 testCtx.getLog() << TestLog::Message << "// ERROR: at index [" << y << "][" << x << "] expected " << values[refIndex] << "; got " << state[stateIndex] << TestLog::EndMessage; in verifyUniformMatrixValues()
3530 // the values of the matrix are returned in column major order but they can be given in either order in test()
3584 // query values in test()
3600 // verify values in test()
3720 // uniform values
[all...]

Completed in 214 milliseconds

1...<<61626364656667686970>>...89