/kernel/linux/linux-5.10/drivers/media/v4l2-core/ |
H A D | v4l2-mc.c | 413 * To achieve this use the entity use_count field to track the number of users. 420 * close() handlers of video device nodes. It increments or decrements the use 424 * callback updates the use count of all entities in the source and sink sides 437 int use = 0; in pipeline_pm_use_count() local 443 use += entity->use_count; in pipeline_pm_use_count() 446 return use; in pipeline_pm_use_count() 454 * Change the entity use count by @change. If the entity is a subdev update its 455 * power state by calling the core::s_power operation when the use count goes 488 * Walk the pipeline to update the use count and the power state of all non-node 521 static int v4l2_pipeline_pm_use(struct media_entity *entity, unsigned int use) in v4l2_pipeline_pm_use() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/v4l2-core/ |
H A D | v4l2-mc.c | 421 * To achieve this use the entity use_count field to track the number of users. 428 * close() handlers of video device nodes. It increments or decrements the use 432 * callback updates the use count of all entities in the source and sink sides 445 int use = 0; in pipeline_pm_use_count() local 451 use += entity->use_count; in pipeline_pm_use_count() 454 return use; in pipeline_pm_use_count() 462 * Change the entity use count by @change. If the entity is a subdev update its 463 * power state by calling the core::s_power operation when the use count goes 496 * Walk the pipeline to update the use count and the power state of all non-node 529 static int v4l2_pipeline_pm_use(struct media_entity *entity, unsigned int use) in v4l2_pipeline_pm_use() argument [all...] |
/kernel/linux/linux-6.6/net/lapb/ |
H A D | lapb_iface.c | 83 struct lapb_cb *lapb, *use = NULL; in __lapb_devtostruct() local 87 use = lapb; in __lapb_devtostruct() 92 if (use) in __lapb_devtostruct() 93 lapb_hold(use); in __lapb_devtostruct() 95 return use; in __lapb_devtostruct()
|
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind-ptrace.tex | 47 ready-to-use callbacks for this purpose. The routines and variables 48 implementing this facility use a name-prefix of \Func{\_UPT}, which is 51 An application that wants to use the \Func{\_UPT}-facility first needs 58 However, in special circumstances, an application may prefer to use 62 use. Of course, the addresses of these routines could also be picked
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/parser/ |
H A D | parser.go | 4 // you may not use this file except in compliance with the License. 252 func (p *parser) expect(kind tok.Kind, use string) tok.Token { 260 p.tokens[0].Source, kind, use, p.tokens[0].Kind) 262 p.err = fmt.Errorf("expected '%v' for %v, but reached end of file", kind, use) 269 func (p *parser) ident(use string) string { 270 return string(p.expect(tok.Identifier, use).Runes) 274 // func (p *parser) integer(use string) int { 275 // t := p.expect(tok.Integer, use)
|
/third_party/spirv-tools/source/val/ |
H A D | validate_function.cpp | 4 // you may not use this file except in compliance with the License. 91 const auto* use = pair.first; in ValidateFunction() local 92 if (std::find(acceptable.begin(), acceptable.end(), use->opcode()) == in ValidateFunction() 94 !use->IsNonSemantic() && !use->IsDebugInfo()) { in ValidateFunction() 95 return _.diag(SPV_ERROR_INVALID_ID, use) in ValidateFunction() 96 << "Invalid use of function result id " << _.getIdName(inst->id()) in ValidateFunction()
|
/kernel/linux/linux-5.10/net/atm/ |
H A D | mpoa_caches.h | 31 refcount_t use; member 64 refcount_t use; member
|
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | modules.py | 92 for use in lists.list_for_each_entry(sources, t, "source_list"): 95 name=use['source']['name'].string()))
|
/kernel/linux/linux-6.6/net/atm/ |
H A D | mpoa_caches.h | 31 refcount_t use; member 64 refcount_t use; member
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_move.c | 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 30 * This pass can move various operations just before their first use inside the 32 * not a good idea to use this in an optimization loop. 35 * for comparisons, and use predication for conditional selects and control 100 nir_foreach_use(use, def) { in nir_opt_move_block() 101 nir_instr *parent = use->parent_instr; in nir_opt_move_block()
|
/third_party/node/lib/internal/crypto/ |
H A D | mac.js | 0 'use strict'; 125 keyData.use !== undefined && 126 keyData.use !== 'sig') { 127 throw lazyDOMException('Invalid JWK "use" Parameter', 'DataError');
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/sha/ |
H A D | sha512-armv4.S | 3 @ Licensed under the Apache License 2.0 (the "License"). You may not use 15 @ Permission to use under GPL terms is granted.
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/sha/ |
H A D | sha512-armv4.S | 3 @ Licensed under the Apache License 2.0 (the "License"). You may not use 15 @ Permission to use under GPL terms is granted.
|
/third_party/skia/third_party/externals/angle2/src/feature_support_util/ |
H A D | feature_support_util_unittest.cpp | 84 "Rule" : "Default Rule (i.e. do not use ANGLE)", in TEST_F() 106 "Rule" : "Default Rule (i.e. do not use ANGLE)", in TEST_F()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-inlining.cc | 126 Node* use = edge.from(); in InlineCall() local 127 switch (use->opcode()) { in InlineCall() 129 int index = 1 + ParameterIndexOf(use->op()); in InlineCall() 134 Replace(use, call->InputAt(index)); in InlineCall() 137 Replace(use, new_target); in InlineCall() 140 Replace(use, jsgraph()->Constant(argument_count)); in InlineCall() 143 Replace(use, context); in InlineCall() 146 Replace(use, jsgraph()->UndefinedConstant()); in InlineCall() 348 // - feedback_vector : The target is guaranteed to use this feedback vector. 415 // id >= subgraph_min_node_id. We use thi in ReduceJSWasmCall() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A D | spp_client.c | 600 enum spp_post_dev_data_use use, xml_node_t *node, in process_spp_post_dev_data_response() 643 if (use == SPP_SUBSCRIPTION_REMEDIATION && in process_spp_post_dev_data_response() 665 if (use == SPP_SUBSCRIPTION_REMEDIATION && in process_spp_post_dev_data_response() 676 if (use == SPP_POLICY_UPDATE && in process_spp_post_dev_data_response() 691 if (use == SPP_SUBSCRIPTION_REGISTRATION && in process_spp_post_dev_data_response() 721 process_spp_post_dev_data_response(ctx, use, in process_spp_post_dev_data_response() 750 enum spp_post_dev_data_use use, in spp_post_dev_data() 779 process_spp_post_dev_data_response(ctx, use, ret_node, in spp_post_dev_data() 598 process_spp_post_dev_data_response( struct hs20_osu_client *ctx, enum spp_post_dev_data_use use, xml_node_t *node, const char *pps_fname, xml_node_t *pps) process_spp_post_dev_data_response() argument 749 spp_post_dev_data(struct hs20_osu_client *ctx, enum spp_post_dev_data_use use, const char *reason, const char *pps_fname, xml_node_t *pps) spp_post_dev_data() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A D | spp_client.c | 600 enum spp_post_dev_data_use use, xml_node_t *node, in process_spp_post_dev_data_response() 643 if (use == SPP_SUBSCRIPTION_REMEDIATION && in process_spp_post_dev_data_response() 665 if (use == SPP_SUBSCRIPTION_REMEDIATION && in process_spp_post_dev_data_response() 676 if (use == SPP_POLICY_UPDATE && in process_spp_post_dev_data_response() 691 if (use == SPP_SUBSCRIPTION_REGISTRATION && in process_spp_post_dev_data_response() 721 process_spp_post_dev_data_response(ctx, use, in process_spp_post_dev_data_response() 750 enum spp_post_dev_data_use use, in spp_post_dev_data() 779 process_spp_post_dev_data_response(ctx, use, ret_node, in spp_post_dev_data() 598 process_spp_post_dev_data_response( struct hs20_osu_client *ctx, enum spp_post_dev_data_use use, xml_node_t *node, const char *pps_fname, xml_node_t *pps) process_spp_post_dev_data_response() argument 749 spp_post_dev_data(struct hs20_osu_client *ctx, enum spp_post_dev_data_use use, const char *reason, const char *pps_fname, xml_node_t *pps) spp_post_dev_data() argument
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | scheduler.c | 7 * the rights to use, copy, modify, merge, publish, distribute, sub license, 59 * all the units in use at the same time, it can be very beneficial to use 70 * can use something conceptually similar to a linear-scan allocator to 83 * we're going to use those, but then we throw them away. For example, if we 111 * An input node is a "max node" if it has a use two cycles ago, which must be 113 * if it will be a max node on the next instruction (i.e. it has a use at most 122 * definition to the use 2 cycles ago. (2) Out of all 6 slots, we reserve a 172 * are slots available to rewrite every use to a load instruction, and that 223 * original use ha 832 gpir_node *use = dep->succ; get_available_regs() local 919 gpir_node *use = dep->succ; spill_node() local [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir.c | 8 * the rights to use, copy, modify, merge, publish, distribute, sub license, 202 #define SRC_CONST(idx, s) ((hw_src){.use=1, .rgroup = INST_RGROUP_UNIFORM_0, .reg=idx, .swiz=s}) 203 #define SRC_REG(idx, s) ((hw_src){.use=1, .rgroup = INST_RGROUP_TEMP, .reg=idx, .swiz=s}) 241 /* use inline immediates if possible */ in const_src() 372 return (hw_src) { .use = 1, .rgroup = INST_RGROUP_INTERNAL }; in get_src() 453 .use = 1, in ra_dest() 572 .use = 1, in emit_intrinsic() 1035 * outputs may be unused and thus unmapped. Then again, in the general use in fill_vs_mystery() 1150 /* use opt_algebraic between int_to_float and boot_to_float because in etna_compile_shader() 1267 varying->use[ in etna_link_shader() [all...] |
/third_party/python/Lib/test/test_import/data/circular_imports/ |
H A D | source.py | 1 from . import use namespace
|
/kernel/linux/linux-5.10/sound/core/seq/ |
H A D | seq_queue.c | 161 static void queue_use(struct snd_seq_queue *queue, int client, int use); 432 * q->use mutex should be down before calling this function to avoid 454 * q->use mutex should be down before calling this function 492 /* use or unuse this queue */ 493 static void queue_use(struct snd_seq_queue *queue, int client, int use) in queue_use() argument 495 if (use) { in queue_use() 503 if (use && queue->clients == 1) in queue_use() 511 /* use or unuse this queue - 515 int snd_seq_queue_use(int queueid, int client, int use) in snd_seq_queue_use() argument 523 queue_use(queue, client, use); in snd_seq_queue_use() [all...] |
/kernel/linux/linux-6.6/sound/core/seq/ |
H A D | seq_queue.c | 161 static void queue_use(struct snd_seq_queue *queue, int client, int use); 433 * q->use mutex should be down before calling this function to avoid 456 * q->use mutex should be down before calling this function 494 /* use or unuse this queue */ 495 static void queue_use(struct snd_seq_queue *queue, int client, int use) in queue_use() argument 497 if (use) { in queue_use() 505 if (use && queue->clients == 1) in queue_use() 513 /* use or unuse this queue - 517 int snd_seq_queue_use(int queueid, int client, int use) in snd_seq_queue_use() argument 525 queue_use(queue, client, use); in snd_seq_queue_use() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_type.cpp | 4 // you may not use this file except in compliance with the License. 512 const auto* use = pair.first; in ValidateTypeFunction() local 513 if (use->opcode() != SpvOpFunction && !spvOpcodeIsDebug(use->opcode()) && in ValidateTypeFunction() 514 !use->IsNonSemantic() && !spvOpcodeIsDecoration(use->opcode())) { in ValidateTypeFunction() 515 return _.diag(SPV_ERROR_INVALID_ID, use) in ValidateTypeFunction() 516 << "Invalid use of function type result id " in ValidateTypeFunction()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | RendererVk.h | 316 void collectGarbageAndReinit(vk::SharedResourceUse *use, ArgsT... garbageIn) in collectGarbageAndReinit() argument 322 collectGarbage(std::move(*use), std::move(sharedGarbage)); in collectGarbageAndReinit() 326 // Force releasing "use" even if no garbage was created. in collectGarbageAndReinit() 327 use->release(); in collectGarbageAndReinit() 329 // Keep "use" valid. in collectGarbageAndReinit() 330 use->init(); in collectGarbageAndReinit() 333 void collectGarbage(vk::SharedResourceUse &&use, std::vector<vk::GarbageObject> &&sharedGarbage) in collectGarbage() argument 337 vk::SharedGarbage garbage(std::move(use), std::move(sharedGarbage)); in collectGarbage() 596 // All access to the pipeline cache is done through EGL objects so it is thread safe to not use
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_type.cpp | 4 // you may not use this file except in compliance with the License. 512 const auto* use = pair.first; in ValidateTypeFunction() local 513 if (use->opcode() != SpvOpFunction && !spvOpcodeIsDebug(use->opcode()) && in ValidateTypeFunction() 514 !use->IsNonSemantic() && !spvOpcodeIsDecoration(use->opcode())) { in ValidateTypeFunction() 515 return _.diag(SPV_ERROR_INVALID_ID, use) in ValidateTypeFunction() 516 << "Invalid use of function type result id " in ValidateTypeFunction()
|