/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_pipeline.c | 4307 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 D | es31fProgramInterfaceQueryTests.cpp | 1626 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 D | webgl2_rendering_context.cpp | 1371 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 D | validationES31.cpp | 1677 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 D | GrTextBlob.cpp | 1247 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 D | sheet_presentation_pattern.cpp | 1981 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 D | jsi_canvas_bridge.cpp | 119 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 D | jsi_offscreen_canvas_bridge.cpp | 63 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 D | Viewer.cpp | 1506 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 D | zink_context.c | 389 -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 D | webgl_rendering_context_base.h | 451 static void GetRenderingContextBasePropertyDesc(std::vector<napi_property_descriptor> &props);
|
/third_party/ffmpeg/libavformat/ |
H A D | avformat.c | 767 !(d->props & AV_CODEC_PROP_INTRA_ONLY)) in ff_is_intra_only()
|
H A D | movenc.c | 689 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 D | build-wolfssl.bat | 309 -p:CustomAfterMicrosoftCommonTargets="%~dp0\wolfssl_override.props" ^
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_private.h | 191 VkQueueFamilyProperties props; member
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | core_dispatch.h | 213 int (*global_props_cb)(const char *props, void *cbdata),
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkMorphologyImageFilter.cpp | 507 std::move(colorSpace), input->props()); in apply_morphology()
|
/third_party/openssl/include/openssl/ |
H A D | core_dispatch.h | 213 int (*global_props_cb)(const char *props, void *cbdata),
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/class_gzip/ |
H A D | gzip_n_exporter.cpp | 102 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 D | photo_album_napi.cpp | 60 .props = { in Init() 91 .props = { in PhotoAccessInit()
|
/foundation/window/window_manager/wmserver/src/ |
H A D | window_controller.cpp | 1475 auto& props = property->GetSystemBarProperty(); in UpdateProperty() local 1476 for (auto& iter : props) { in UpdateProperty()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
H A D | kit.py | 658 props = new_props.setdefault(file_name, {}) 659 props[key] = value 670 LOG.error("Get props error.")
|
/third_party/mesa3d/src/mesa/main/ |
H A D | shader_query.cpp | 1703 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 D | vktBindingDescriptorUpdateTests.cpp | 291 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 D | vktRenderPassDepthStencilResolveTests.cpp | 623 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()
|