Home
last modified time | relevance | path

Searched refs:init (Results 1851 - 1875 of 23473) sorted by relevance

1...<<71727374757677787980>>...939

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DPreprocessor.cpp60 bool Preprocessor::init(size_t count, const char *const string[], const int length[]) in init() function in pp::Preprocessor
70 return mImpl->tokenizer.init(count, string, length); in init()
/third_party/openssl/crypto/
H A Dthreads_none.c65 int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void)) in CRYPTO_THREAD_run_once() argument
70 init(); in CRYPTO_THREAD_run_once()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.cpp42 tmp.init(length(), cap); in reserve()
55 tmp.init(len); in assign()
/third_party/skia/experimental/sktext/editor/
H A DApp.cpp33 bool init(const char* path) { in init() function
69 (void)app->init(argc > 1 ? argv[1] : nullptr); in Create()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dbio.rs22 ffi::init(); in new()
52 ffi::init(); in new()
/third_party/vk-gl-cts/modules/internal/
H A DditImageIOTests.cpp91 void init (void) in init() function in dit::ImageReadTests
109 void ImageIOTests::init (void) in init() function in dit::ImageIOTests
/kernel/linux/linux-6.6/drivers/misc/
H A Dfastrpc.c1237 struct fastrpc_init_create_static init; in fastrpc_init_create_static_process() local
1253 if (copy_from_user(&init, argp, sizeof(init))) { in fastrpc_init_create_static_process()
1258 if (init.namelen > INIT_FILE_NAMELEN_MAX) { in fastrpc_init_create_static_process()
1263 name = kzalloc(init.namelen, GFP_KERNEL); in fastrpc_init_create_static_process()
1269 if (copy_from_user(name, (void __user *)(uintptr_t)init.name, init.namelen)) { in fastrpc_init_create_static_process()
1275 err = fastrpc_remote_heap_alloc(fl, fl->sctx->dev, init.memlen, in fastrpc_init_create_static_process()
1295 inbuf.namelen = init.namelen; in fastrpc_init_create_static_process()
1355 struct fastrpc_init_create init; in fastrpc_init_create_process() local
[all...]
/kernel/linux/linux-5.10/drivers/firmware/
H A Discsi_ibft.c66 #include <linux/init.h>
566 struct ibft_initiator *init = entry->initiator; in ibft_check_initiator_for() local
575 if (address_not_null(init->isns_server)) in ibft_check_initiator_for()
579 if (address_not_null(init->slp_server)) in ibft_check_initiator_for()
583 if (address_not_null(init->pri_radius_server)) in ibft_check_initiator_for()
587 if (address_not_null(init->sec_radius_server)) in ibft_check_initiator_for()
591 if (init->initiator_name_len) in ibft_check_initiator_for()
/kernel/linux/linux-5.10/drivers/net/usb/
H A Drndis_host.c297 struct rndis_init *init; in generic_rndis_bind() member
318 u.init->msg_type = cpu_to_le32(RNDIS_MSG_INIT); in generic_rndis_bind()
319 u.init->msg_len = cpu_to_le32(sizeof *u.init); in generic_rndis_bind()
320 u.init->major_version = cpu_to_le32(1); in generic_rndis_bind()
321 u.init->minor_version = cpu_to_le32(0); in generic_rndis_bind()
347 u.init->max_transfer_size = cpu_to_le32(dev->rx_urb_size); in generic_rndis_bind()
354 dev_err(&intf->dev, "RNDIS init failed, %d\n", retval); in generic_rndis_bind()
/kernel/linux/linux-6.6/drivers/firmware/
H A Discsi_ibft.c66 #include <linux/init.h>
564 struct ibft_initiator *init = entry->initiator; in ibft_check_initiator_for() local
573 if (address_not_null(init->isns_server)) in ibft_check_initiator_for()
577 if (address_not_null(init->slp_server)) in ibft_check_initiator_for()
581 if (address_not_null(init->pri_radius_server)) in ibft_check_initiator_for()
585 if (address_not_null(init->sec_radius_server)) in ibft_check_initiator_for()
589 if (init->initiator_name_len) in ibft_check_initiator_for()
/kernel/linux/linux-6.6/drivers/net/usb/
H A Drndis_host.c297 struct rndis_init *init; in generic_rndis_bind() member
318 u.init->msg_type = cpu_to_le32(RNDIS_MSG_INIT); in generic_rndis_bind()
319 u.init->msg_len = cpu_to_le32(sizeof *u.init); in generic_rndis_bind()
320 u.init->major_version = cpu_to_le32(1); in generic_rndis_bind()
321 u.init->minor_version = cpu_to_le32(0); in generic_rndis_bind()
347 u.init->max_transfer_size = cpu_to_le32(dev->rx_urb_size); in generic_rndis_bind()
354 dev_err(&intf->dev, "RNDIS init failed, %d\n", retval); in generic_rndis_bind()
/third_party/ffmpeg/libavfilter/
H A Dvf_stack.c79 static av_cold int init(AVFilterContext *ctx) in init() function
462 .init = init,
479 .init = init,
507 .init = init,
/kernel/linux/linux-5.10/drivers/rtc/
H A Drtc-rv3028.c746 struct clk_init_data init; in rv3028_clkout_register_clk() local
754 init.name = "rv3028-clkout"; in rv3028_clkout_register_clk()
755 init.ops = &rv3028_clkout_ops; in rv3028_clkout_register_clk()
756 init.flags = 0; in rv3028_clkout_register_clk()
757 init.parent_names = NULL; in rv3028_clkout_register_clk()
758 init.num_parents = 0; in rv3028_clkout_register_clk()
759 rv3028->clkout_hw.init = &init; in rv3028_clkout_register_clk()
762 of_property_read_string(node, "clock-output-names", &init.name); in rv3028_clkout_register_clk()
H A Drtc-rv3032.c687 struct clk_init_data init; in rv3032_clkout_register_clk() local
702 init.name = "rv3032-clkout"; in rv3032_clkout_register_clk()
703 init.ops = &rv3032_clkout_ops; in rv3032_clkout_register_clk()
704 init.flags = 0; in rv3032_clkout_register_clk()
705 init.parent_names = NULL; in rv3032_clkout_register_clk()
706 init.num_parents = 0; in rv3032_clkout_register_clk()
707 rv3032->clkout_hw.init = &init; in rv3032_clkout_register_clk()
709 of_property_read_string(node, "clock-output-names", &init.name); in rv3032_clkout_register_clk()
/kernel/linux/linux-5.10/drivers/thermal/
H A Darmada_thermal.c84 void (*init)(struct platform_device *pdev, member
575 .init = armadaxp_init,
586 .init = armada370_init,
598 .init = armada375_init,
611 .init = armada380_init,
625 .init = armada_ap806_init,
649 .init = armada_cp110_init,
864 priv->data->init(pdev, priv); in armada_thermal_probe()
895 priv->data->init(pdev, priv); in armada_thermal_probe()
/kernel/linux/linux-5.10/net/netfilter/
H A Dnf_conntrack_proto_sctp.c108 /* init */ {sCL, sCL, sCW, sCE, sES, sCL, sCL, sSA, sCW},
123 /* init */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV},/* INIT in sCL Big TODO */
430 ct->proto.sctp.init[dir] = 0; in nf_conntrack_sctp_packet()
431 ct->proto.sctp.init[!dir] = 0; in nf_conntrack_sctp_packet()
487 if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir]) in nf_conntrack_sctp_packet()
488 ct->proto.sctp.init[!dir] = 0; in nf_conntrack_sctp_packet()
489 ct->proto.sctp.init[dir] = 1; in nf_conntrack_sctp_packet()
494 /* don't renew timeout on init retransmit so in nf_conntrack_sctp_packet()
511 if (!ct->proto.sctp.init[!di in nf_conntrack_sctp_packet()
[all...]
/kernel/linux/linux-6.6/drivers/rtc/
H A Drtc-rv3032.c751 struct clk_init_data init; in rv3032_clkout_register_clk() local
766 init.name = "rv3032-clkout"; in rv3032_clkout_register_clk()
767 init.ops = &rv3032_clkout_ops; in rv3032_clkout_register_clk()
768 init.flags = 0; in rv3032_clkout_register_clk()
769 init.parent_names = NULL; in rv3032_clkout_register_clk()
770 init.num_parents = 0; in rv3032_clkout_register_clk()
771 rv3032->clkout_hw.init = &init; in rv3032_clkout_register_clk()
773 of_property_read_string(node, "clock-output-names", &init.name); in rv3032_clkout_register_clk()
H A Drtc-rv3028.c812 struct clk_init_data init; in rv3028_clkout_register_clk() local
820 init.name = "rv3028-clkout"; in rv3028_clkout_register_clk()
821 init.ops = &rv3028_clkout_ops; in rv3028_clkout_register_clk()
822 init.flags = 0; in rv3028_clkout_register_clk()
823 init.parent_names = NULL; in rv3028_clkout_register_clk()
824 init.num_parents = 0; in rv3028_clkout_register_clk()
825 rv3028->clkout_hw.init = &init; in rv3028_clkout_register_clk()
828 of_property_read_string(node, "clock-output-names", &init.name); in rv3028_clkout_register_clk()
/kernel/linux/linux-6.6/net/netfilter/
H A Dnf_conntrack_proto_sctp.c108 /* init */ {sCL, sCL, sCW, sCE, sES, sCL, sCL, sSA, sCW},
123 /* init */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV},/* INIT in sCL Big TODO */
416 ct->proto.sctp.init[dir] = 0; in nf_conntrack_sctp_packet()
417 ct->proto.sctp.init[!dir] = 0; in nf_conntrack_sctp_packet()
474 if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir]) in nf_conntrack_sctp_packet()
475 ct->proto.sctp.init[!dir] = 0; in nf_conntrack_sctp_packet()
476 ct->proto.sctp.init[dir] = 1; in nf_conntrack_sctp_packet()
481 /* don't renew timeout on init retransmit so in nf_conntrack_sctp_packet()
498 if (!ct->proto.sctp.init[!di in nf_conntrack_sctp_packet()
[all...]
/third_party/pulseaudio/src/modules/bluetooth/
H A Da2dp-codec-sbc.c647 static void *init(bool for_encoding, bool for_backchannel, const uint8_t *config_buffer, uint8_t config_size, pa_sample_spec *sample_spec, pa_core *core) { in init() function
939 .init = init,
977 .init = init,
1002 .init = init,
1027 .init = init,
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
H A DIntermRebuild.cpp695 auto *const init = node.getInit(); in traverseSwitchChildren() local
696 ASSERT(init); in traverseSwitchChildren()
700 auto *const newInit = traverseAnyAs<TIntermTyped>(*init); in traverseSwitchChildren()
705 if (newInit != init || newStmts != stmts) in traverseSwitchChildren()
781 auto *const init = node.getInit(); in traverseLoopChildren() local
795 ASSERT(!init && !expr); in traverseLoopChildren()
806 if (init) in traverseLoopChildren()
808 GUARD(traverseAnyAs(*init, newInit)); in traverseLoopChildren()
821 if (newInit != init || newCond != cond || newExpr != expr || newBody != body) in traverseLoopChildren()
/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42parse.c145 psaux->ps_parser_funcs->init( &parser->root, NULL, NULL, memory ); in FT_LOCAL_DEF()
368 FT_SET_ERROR( psaux->ps_table_funcs->init( in t42_parse_encoding()
901 if ( swap_table->init ) in t42_parse_charstrings()
909 error = psaux->ps_table_funcs->init( code_table, in t42_parse_charstrings()
915 error = psaux->ps_table_funcs->init( name_table, in t42_parse_charstrings()
924 error = psaux->ps_table_funcs->init( swap_table, 4, memory ); in t42_parse_charstrings()
1304 /* initialize the tables -- simply set their `init' field to 0 */ in t42_loader_init()
1305 loader->encoding_table.init = 0; in t42_loader_init()
1306 loader->charstrings.init = 0; in t42_loader_init()
1307 loader->glyph_names.init in t42_loader_init()
[all...]
/third_party/vk-gl-cts/modules/gles3/stress/
H A Des3sDrawTests.cpp72 void init (void);
108 void DrawInvalidRangeCase::init (void) in init() function in deqp::gles3::Stress::__anon30800::DrawInvalidRangeCase
270 void init (void);
286 void IndexGroup::init (void) in init() function in deqp::gles3::Stress::__anon30800::IndexGroup
351 void init (void);
367 void MethodGroup::init (void) in init() function in deqp::gles3::Stress::__anon30800::MethodGroup
383 void init (void);
407 void RandomGroup::init (void) in init() function in deqp::gles3::Stress::__anon30800::RandomGroup
627 void DrawTests::init (void) in init() function in deqp::gles3::Stress::DrawTests
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fTextureFormatTests.cpp74 void init (void);
110 void Texture2DFormatCase::init (void) in init() function in deqp::gles2::Functional::Texture2DFormatCase
212 void init (void);
256 void TextureCubeFormatCase::init (void) in init() function in deqp::gles2::Functional::TextureCubeFormatCase
402 void init (void);
434 void Compressed2DFormatCase::init (void) in init() function in deqp::gles2::Functional::Compressed2DFormatCase
502 void init (void);
541 void CompressedCubeFormatCase::init (void) in init() function in deqp::gles2::Functional::CompressedCubeFormatCase
628 void TextureFormatTests::init (void) in init() function in deqp::gles2::Functional::TextureFormatTests
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArraySampling.cpp3606 shader_collection.init(gl, *format, m_functions, *this);
3608 program_collection.init(gl, shader_collection, *this, isContextES);
3617 texture.init(gl);
3679 buffers.init(gl, format, resolution);
3703 color_attachment.init(gl);
3736 vao.init(gl, format, function->m_function, buffers, program_object_id);
4007 void TextureCubeMapArraySamplingTest::bufferCollection::init(const glw::Functions& gl, const formatDefinition& format, function in glcts::TextureCubeMapArraySamplingTest::bufferCollection
4089 postion.init(gl, (glw::GLsizeiptr)(position_buffer_data.size() * sizeof(glw::GLfloat)), &position_buffer_data[0]);
4090 texture_coordinate.init(gl, (glw::GLsizeiptr)(texture_coordinate_buffer_data.size() * sizeof(glw::GLfloat)),
4092 texture_coordinate_for_gather.init(
4164 void TextureCubeMapArraySamplingTest::bufferDefinition::init(const glw::Functions& gl, glw::GLsizeiptr buffer_size, global() function in glcts::TextureCubeMapArraySamplingTest::bufferDefinition
4269 void TextureCubeMapArraySamplingTest::programCollectionForFormat::init( global() function in glcts::TextureCubeMapArraySamplingTest::programCollectionForFormat
4322 void TextureCubeMapArraySamplingTest::programCollectionForFunction::init(const glw::Functions& gl, global() function in glcts::TextureCubeMapArraySamplingTest::programCollectionForFunction
4424 void TextureCubeMapArraySamplingTest::programDefinition::init(const glw::Functions& gl, const shaderGroup& shader_group, global() function in glcts::TextureCubeMapArraySamplingTest::programDefinition
4576 void TextureCubeMapArraySamplingTest::shaderCollectionForSamplingRoutine::init( global() function in glcts::TextureCubeMapArraySamplingTest::shaderCollectionForSamplingRoutine
4682 void TextureCubeMapArraySamplingTest::shaderCollectionForTextureFormat::init( global() function in glcts::TextureCubeMapArraySamplingTest::shaderCollectionForTextureFormat
4846 void TextureCubeMapArraySamplingTest::shaderDefinition::init(const glw::Functions& gl, glw::GLenum shader_stage, global() function in glcts::TextureCubeMapArraySamplingTest::shaderDefinition
4874 void TextureCubeMapArraySamplingTest::shaderGroup::init() global() function in glcts::TextureCubeMapArraySamplingTest::shaderGroup
4943 void TextureCubeMapArraySamplingTest::textureDefinition::init(const glw::Functions& gl) global() function in glcts::TextureCubeMapArraySamplingTest::textureDefinition
5041 void TextureCubeMapArraySamplingTest::vertexArrayObjectDefinition::init(const glw::Functions& gl, global() function in glcts::TextureCubeMapArraySamplingTest::vertexArrayObjectDefinition
[all...]

Completed in 34 milliseconds

1...<<71727374757677787980>>...939