Home
last modified time | relevance | path

Searched refs:props (Results 776 - 800 of 892) sorted by relevance

1...<<313233343536

/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_pipeline.c4307 vk_outarray_append_typed(VkPipelineExecutablePropertiesKHR, &out, props) { in tu_GetPipelineExecutablePropertiesKHR()
4309 props->stages = mesa_to_vk_shader_stage(stage); in tu_GetPipelineExecutablePropertiesKHR()
4312 WRITE_STR(props->name, "%s", _mesa_shader_stage_to_abbrev(stage)); in tu_GetPipelineExecutablePropertiesKHR()
4314 WRITE_STR(props->name, "Binning VS"); in tu_GetPipelineExecutablePropertiesKHR()
4316 WRITE_STR(props->description, "%s", _mesa_shader_stage_to_string(stage)); in tu_GetPipelineExecutablePropertiesKHR()
4318 props->subgroupSize = in tu_GetPipelineExecutablePropertiesKHR()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fProgramInterfaceQueryTests.cpp1626 const glw::GLenum props[] = { GL_LOCATION, GL_LOCATION, GL_LOCATION };
1631 DE_ASSERT(querySizes[ndx].numProps <= DE_LENGTH_OF_ARRAY(props));
1639 gl.getProgramResourceiv(program.getProgram(), GL_UNIFORM, uniformIndex, querySizes[ndx].numProps, props, querySizes[ndx].bufferSize, (querySizes[ndx].returnLength) ? (&written) : (DE_NULL), params);
1843 const glw::GLenum props[] = { GL_NUM_ACTIVE_VARIABLES };
1847 gl.getProgramResourceiv(program.getProgram(), programGLInterfaceValue, resourceNdx, DE_LENGTH_OF_ARRAY(props), props, 1, &written, retBuffer);
1877 const glw::GLenum props[] = { GL_ACTIVE_VARIABLES };
1881 gl.getProgramResourceiv(program.getProgram(), programGLInterfaceValue, resourceNdx, DE_LENGTH_OF_ARRAY(props), props, (glw::GLsizei)activeVariableIndices.size(), &written, &activeVariableIndices[0]);
2635 const glw::GLenum props[]
[all...]
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/
H A Dwebgl2_rendering_context.cpp1371 std::vector<napi_property_descriptor> props = { in Export() local
1762 properties.insert(properties.end(), props.begin(), props.end()); in Export()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES31.cpp1677 const GLenum *props, in ValidateGetProgramResourceiv()
1715 if (!ValidateProgramResourceProperty(context, entryPoint, props[i])) in ValidateGetProgramResourceiv()
1720 if (!ValidateProgramResourcePropertyByInterface(props[i], programInterface)) in ValidateGetProgramResourceiv()
1671 ValidateGetProgramResourceiv(const Context *context, angle::EntryPoint entryPoint, ShaderProgramID program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, const GLsizei *length, const GLint *params) ValidateGetProgramResourceiv() argument
/third_party/skia/src/gpu/text/
H A DGrTextBlob.cpp1247 const SkSurfaceProps& props = sdc.surfaceProps(); in calculate_sdf_parameters() local
1248 bool isBGR = SkPixelGeometryIsBGR(props.pixelGeometry()); in calculate_sdf_parameters()
1249 bool isLCD = useLCDText && SkPixelGeometryIsH(props.pixelGeometry()); in calculate_sdf_parameters()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Dsheet_presentation_pattern.cpp1981 auto props = buildContent->GetLayoutProperty<LayoutProperty>(); in GetSheetTypeWithAuto() local
1982 CHECK_NULL_VOID(props); in GetSheetTypeWithAuto()
1984 props->ResetCalcMinSize(); in GetSheetTypeWithAuto()
1987 props->UpdateCalcMinSize(CalcSize(std::nullopt, CalcLength(builderHeight_))); in GetSheetTypeWithAuto()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_canvas_bridge.cpp119 std::vector<std::string> props; in GetJsDashValue() local
120 StringUtils::StringSplitter(valueStr, ',', props); in GetJsDashValue()
121 for (const auto& prop : props) { in GetJsDashValue()
123 // if there only exists 0 in props, it means that there is no dash style in GetJsDashValue()
124 if (NearZero(val) && props.size() == 1) { in GetJsDashValue()
H A Djsi_offscreen_canvas_bridge.cpp63 std::vector<std::string> props; in GetJsDashValue() local
64 StringUtils::StringSplitter(valueStr, ',', props); in GetJsDashValue()
65 for (const auto& prop : props) { in GetJsDashValue()
67 // if there only exists 0 in props, it means that there is no dash style in GetJsDashValue()
68 if (NearZero(val) && props.size() == 1) { in GetJsDashValue()
/third_party/skia/tools/viewer/
H A DViewer.cpp1506 SkSurfaceProps props(fWindow->getRequestedDisplayParams().fSurfaceProps); in drawSlide()
1507 slideCanvas->getProps(&props); in drawSlide()
1511 ? SkSurface::MakeRaster(info, &props) in drawSlide()
1512 : slideCanvas->makeSurface(info, &props); in drawSlide()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_context.c389 -screen->info.props.limits.maxSamplerLodBias, in zink_create_sampler_state()
390 screen->info.props.limits.maxSamplerLodBias); in zink_create_sampler_state()
552 assert(ctx->di.ubos[shader][slot].range <= screen->info.props.limits.maxUniformBufferRange); in update_descriptor_state_ubo()
803 uint64_t clamp = blocksize * screen->info.props.limits.maxTexelBufferElements; in create_bvci()
1019 assert(zink_screen(ctx->screen)->info.props.limits.standardSampleLocations); in zink_get_sample_position()
1295 screen->info.props.limits.minUniformBufferOffsetAlignment, in zink_set_constant_buffer()
2671 const unsigned max_att = MIN2(PIPE_MAX_COLOR_BUFS, screen->info.props.limits.maxColorAttachments); in reapply_color_write()
4571 if (!(screen->info.props.limits.framebufferDepthSampleCounts & BITFIELD_BIT(i))) in zink_context_create()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/context/
H A Dwebgl_rendering_context_base.h451 static void GetRenderingContextBasePropertyDesc(std::vector<napi_property_descriptor> &props);
/third_party/ffmpeg/libavformat/
H A Davformat.c767 !(d->props & AV_CODEC_PROP_INTRA_ONLY)) in ff_is_intra_only()
H A Dmovenc.c689 AVCPBProperties *props = track->st ? in calculate_mpeg4_bit_rates() local
706 if (props && props->avg_bitrate) { in calculate_mpeg4_bit_rates()
707 bit_rates.avg_bit_rate = props->avg_bitrate; in calculate_mpeg4_bit_rates()
710 } else if (props && props->max_bitrate) { in calculate_mpeg4_bit_rates()
711 bit_rates.avg_bit_rate = props->max_bitrate; in calculate_mpeg4_bit_rates()
720 if (props) { in calculate_mpeg4_bit_rates()
722 props->max_bitrate); in calculate_mpeg4_bit_rates()
723 bit_rates.buffer_size = props in calculate_mpeg4_bit_rates()
[all...]
/third_party/curl/projects/
H A Dbuild-wolfssl.bat309 -p:CustomAfterMicrosoftCommonTargets="%~dp0\wolfssl_override.props" ^
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_private.h191 VkQueueFamilyProperties props; member
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dcore_dispatch.h213 int (*global_props_cb)(const char *props, void *cbdata),
/third_party/skia/src/effects/imagefilters/
H A DSkMorphologyImageFilter.cpp507 std::move(colorSpace), input->props()); in apply_morphology()
/third_party/openssl/include/openssl/
H A Dcore_dispatch.h213 int (*global_props_cb)(const char *props, void *cbdata),
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/class_gzip/
H A Dgzip_n_exporter.cpp102 vector<napi_property_descriptor> props = { in Export() local
134 tie(succ, cls) = NapiClass::DefineClass(exports_.env_, className, GZipNExporter::Constructor, move(props)); in Export()
/foundation/multimedia/media_library/frameworks/js/src/
H A Dphoto_album_napi.cpp60 .props = { in Init()
91 .props = { in PhotoAccessInit()
/foundation/window/window_manager/wmserver/src/
H A Dwindow_controller.cpp1475 auto& props = property->GetSystemBarProperty(); in UpdateProperty() local
1476 for (auto& iter : props) { in UpdateProperty()
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
H A Dkit.py658 props = new_props.setdefault(file_name, {})
659 props[key] = value
670 LOG.error("Get props error.")
/third_party/mesa3d/src/mesa/main/
H A Dshader_query.cpp1703 const GLenum *props, GLsizei bufSize, in _mesa_get_program_resourceiv()
1708 const GLenum *prop = props; in _mesa_get_program_resourceiv()
1701 _mesa_get_program_resourceiv(struct gl_shader_program *shProg, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params) _mesa_get_program_resourceiv() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorUpdateTests.cpp291 const auto props = vk::getPhysicalDeviceFormatProperties(vki, physicalDevice, kImageFormat); in checkSupport() local
292 if ((props.optimalTilingFeatures & features) != features) in checkSupport()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp623 VkImageFormatProperties props; in isSupportedFormat() local
627 const auto formatCheck = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, format, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL, usage, 0u, &props); in isSupportedFormat()

Completed in 79 milliseconds

1...<<313233343536