/kernel/linux/linux-6.6/tools/net/ynl/lib/ |
H A D | ynl.py | 551 def _decode_extack_path(self, attrs, attr_set, offset, target): 557 if offset > target: 559 if offset == target: 562 if offset + attr.full_len <= target: 570 offset, target)
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/forwarding/ |
H A D | vxlan_bridge_1d_ipv6.sh | 588 local target 590 for target in "${targets[@]}"; do 591 vxlan_fdb_add_del add $target 598 for target in "${targets[@]}"; do 599 vxlan_fdb_add_del del $target
|
H A D | vxlan_bridge_1d.sh | 467 local target 469 for target in "${targets[@]}"; do 470 vxlan_fdb_add_del add $target 477 for target in "${targets[@]}"; do 478 vxlan_fdb_add_del del $target
|
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | wm9713.c | 756 unsigned int K, Ndiv, Nmod, target; in pll_factors() local 759 target = 98304000; in pll_factors() 782 target >>= 2; in pll_factors() 786 Ndiv = target / source; in pll_factors() 793 Nmod = target % source; in pll_factors()
|
/third_party/node/src/ |
H A D | node_options.cc | 1249 void Initialize(Local<Object> target, in Initialize() argument 1255 SetMethodNoSideEffect(context, target, "getCLIOptions", GetCLIOptions); in Initialize() 1257 context, target, "getEmbedderOptions", GetEmbedderOptions); in Initialize() 1262 target in Initialize() 1276 target->Set(context, FIXED_ONE_BYTE_STRING(isolate, "types"), types) in Initialize()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_compute.c | 286 if (res->base.target == PIPE_BUFFER) { in nv50_get_surface_dims() 296 switch (res->base.target) { in nv50_get_surface_dims() 309 assert(!"unexpected texture target"); in nv50_get_surface_dims() 319 assert(view->resource->target == PIPE_BUFFER); in nv50_mark_image_range_valid() 353 if (res->base.target != PIPE_BUFFER) { in nv50_set_surface_info() 409 /* get surface dimensions based on the target. */ in nv50_compute_validate_surfaces() 413 if (res->base.target == PIPE_BUFFER) { in nv50_compute_validate_surfaces()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-wasm.cc | 753 Handle<WasmContinuationObject> target = in RUNTIME_FUNCTION() local 756 Managed<wasm::StackMemory>::cast(target->stack()).get().get(); in RUNTIME_FUNCTION() 758 isolate->roots_table().slot(RootIndex::kActiveContinuation).store(*target); in RUNTIME_FUNCTION() 769 suspender->set_continuation(*target); in RUNTIME_FUNCTION() 773 return *target; in RUNTIME_FUNCTION()
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_mpeg12_bitstream.c | 803 decode_slice(struct vl_mpg12_bs *bs, struct pipe_video_buffer *target) in decode_slice() argument 849 bs->decoder->decode_macroblock(bs->decoder, target, &bs->desc->base, &mb.base, 1); in decode_slice() 959 bs->decoder->decode_macroblock(bs->decoder, target, &bs->desc->base, &mb.base, 1); in decode_slice() 981 struct pipe_video_buffer *target, in vl_mpg12_bs_decode() 998 decode_slice(bs, target); in vl_mpg12_bs_decode() 980 vl_mpg12_bs_decode(struct vl_mpg12_bs *bs, struct pipe_video_buffer *target, struct pipe_mpeg12_picture_desc *picture, unsigned num_buffers, const void * const *buffers, const unsigned *sizes) vl_mpg12_bs_decode() argument
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | va_pack.c | 837 bi_block *target = I->branch_target; in va_lower_branch_target() local 838 assert(target != NULL); in va_lower_branch_target() 843 /* Determine if the target block is strictly greater in source order */ in va_lower_branch_target() 844 bool forwards = target->index > start->index; in va_lower_branch_target() 852 /* We then need to jump over every following block until the target */ in va_lower_branch_target() 854 /* End just before the target */ in va_lower_branch_target() 855 if (blk == target) in va_lower_branch_target() 869 /* Jump over preceding blocks up to and including the target to get to in va_lower_branch_target() 870 * the beginning of the target */ in va_lower_branch_target() 877 /* End just after the target */ in va_lower_branch_target() [all...] |
/third_party/pulseaudio/src/daemon/ |
H A D | main.c | 657 pa_log_target target = { .type = PA_LOG_STDERR, .file = NULL }; local 658 pa_log_set_target(&target); 978 pa_log_target target = { .type = PA_LOG_JOURNAL, .file = NULL }; local 980 pa_log_target target = { .type = PA_LOG_SYSLOG, .file = NULL }; 982 pa_log_set_target(&target);
|
/third_party/python/Lib/ |
H A D | ftplib.py | 901 def ftpcp(source, sourcename, target, targetname = '', type = 'I'): 907 target.voidcmd(type) 909 target.sendport(sourcehost, sourceport) 912 # So: STOR before RETR, because here the target is a "user". 913 treply = target.sendcmd('STOR ' + targetname) 920 target.voidresp()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_3_1_autogen.h | 73 GLenum target, 82 GLenum target, 87 GLenum target, 450 GLenum target, 456 GLenum target,
|
/third_party/skia/src/gpu/ops/ |
H A D | AAConvexPathRenderer.cpp | 761 void onPrepareDraws(GrMeshDrawTarget* target) override { 765 this->createProgramInfo(target); 812 VertexWriter verts{target->makeVertexSpace(kVertexStride, 825 uint16_t *idxs = target->makeIndexSpace(indexCount, &indexBuffer, &firstIndex); 835 GrSimpleMesh* meshes = target->allocMeshes(draws.count());
|
H A D | FillRRectOp.cpp | 519 void FillRRectOpImpl::onPrepareDraws(GrMeshDrawTarget* target) { in onPrepareDraws() argument 521 this->createProgramInfo(target); in onPrepareDraws() 526 if (VertexWriter instanceWrter = target->makeVertexSpace(instanceStride, fInstanceCount, in onPrepareDraws() 557 fIndexBuffer = target->resourceProvider()->findOrMakeStaticBuffer(GrGpuBufferType::kIndex, in onPrepareDraws() 563 fVertexBuffer = target->resourceProvider()->findOrMakeStaticBuffer(GrGpuBufferType::kVertex, in onPrepareDraws()
|
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeHardwareTessellator.cpp | 59 GrMeshDrawTarget* target, in PatchWriter() 66 , fChunkBuilder(target, patchChunks, patchStride, minPatchesPerChunk) in PatchWriter() 69 , fMaxTessellationSegments(target->caps().shaderCaps()->maxTessellationSegments() - 2) in PatchWriter() 699 int StrokeHardwareTessellator::prepare(GrMeshDrawTarget* target, in prepare() argument 711 target, in prepare() 58 PatchWriter(PatchAttribs attribs, GrMeshDrawTarget* target, const SkMatrix& viewMatrix, float matrixMaxScale, GrVertexChunkArray* patchChunks, size_t patchStride, int minPatchesPerChunk) PatchWriter() argument
|
/third_party/rust/crates/env_logger/src/filter/ |
H A D | mod.rs | 165 let target = metadata.target(); in enabled() 167 enabled(&self.directives, level, target) in enabled() 361 // Check whether a level and target are enabled by the set of directives. 362 fn enabled(directives: &[Directive], level: Level, target: &str) -> bool { in enabled() 366 Some(ref name) if !target.starts_with(&**name) => {} in enabled()
|
/third_party/vk-gl-cts/framework/platform/ohos/rosen_context/ |
H A D | rosen_context_impl.cpp | 545 uint32_t RosenContextImpl::OH_copyBuffers(void* dpy, void* surface, void* target) in OH_copyBuffers() argument 547 auto ret = eglCopyBuffers(dpy, surface, target); in OH_copyBuffers() 548 // std::cout<<" ! copyBuffers("<<"dpy="<<dpy<<", "<<"surface="<<surface<<", "<<"target="<<target<<")" << "=" << ret << std::endl; in OH_copyBuffers() 559 void* RosenContextImpl::OH_createImage(void* dpy, void* ctx, uint32_t target, void* buffer, const int *attrib_list) in OH_createImage() argument 561 auto ret = eglCreateImage(dpy, ctx, target, buffer, reinterpret_cast<const EGLAttrib *>(attrib_list)); in OH_createImage() 562 // std::cout<<" ! createImage("<<"dpy="<<dpy<<", "<<"ctx="<<ctx<<", "<<"target="<<target<<", "<<"buffer="<<buffer<<", "<<"attrib_list="<<attrib_list<<")" << "=" << ret << std::endl; in OH_createImage() 566 void* RosenContextImpl::OH_createImageKHR(void* dpy, void* ctx, uint32_t target, void* buffer, const int32_t *attrib_list) in OH_createImageKHR() argument
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumber.cpp | 2898 ideal=(rhs->exponent&~1)/2; /* target */ in uprv_decNumberSquareRoot() 3377 /* dest is the target decNumber */ 3514 /* dn is the target decNumber */ 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ in uprv_decNumberSetBCD() 4288 Unit *target; /* work */ in decDivideOp() local 4482 for (target=msu1; source>=lhs->lsu; source--, target--) *target=*source; in decDivideOp() 4483 for (; target>=var1; target in decDivideOp() 6732 Unit *target, *source, *first; /* work */ global() local 6788 Unit *target, *up; /* work */ global() local 6940 Unit *target; /* .. */ global() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumber.cpp | 2898 ideal=(rhs->exponent&~1)/2; /* target */ in uprv_decNumberSquareRoot() 3377 /* dest is the target decNumber */ 3514 /* dn is the target decNumber */ 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ in uprv_decNumberSetBCD() 4288 Unit *target; /* work */ in decDivideOp() local 4482 for (target=msu1; source>=lhs->lsu; source--, target--) *target=*source; in decDivideOp() 4483 for (; target>=var1; target in decDivideOp() 6732 Unit *target, *source, *first; /* work */ global() local 6788 Unit *target, *up; /* work */ global() local 6940 Unit *target; /* .. */ global() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumber.cpp | 2898 ideal=(rhs->exponent&~1)/2; /* target */ in uprv_decNumberSquareRoot() 3377 /* dest is the target decNumber */ 3514 /* dn is the target decNumber */ 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ in uprv_decNumberSetBCD() 4288 Unit *target; /* work */ in decDivideOp() local 4482 for (target=msu1; source>=lhs->lsu; source--, target--) *target=*source; in decDivideOp() 4483 for (; target>=var1; target in decDivideOp() 6732 Unit *target, *source, *first; /* work */ global() local 6788 Unit *target, *up; /* work */ global() local 6940 Unit *target; /* .. */ global() local [all...] |
/third_party/backends/sanei/ |
H A D | sanei_scsi.c | 358 int scsi_id; /* scsi id of target device */ 428 u_int bus, target, lun; /* nexus info; used for some interfaces only */ member 660 PSRBlock->u.dev.target = id; /* target id */ in open_aspi() 662 PSRBlock->u.dev.lun = 0; /* target LUN */ in open_aspi() 684 PSRBlock->u.cmd.target = id; /* Target SCSI ID */ in open_aspi() 707 PSRBlock->u.cmd.target = id; /* Target SCSI ID */ in open_aspi() 870 u_int bus = 0, target = 0, lun = 0, fake_fd = 0; in sanei_scsi_open_extended() local 937 if (sscanf (dev, "b%ut%ul%u", &bus, &target, &lun) != 3) in sanei_scsi_open_extended() 958 if (sscanf (dev, "b%dt%dl%d", &bus, &target, in sanei_scsi_open_extended() 4079 get_devicename(int bus, int target, int lun, char *name, size_t name_len) get_devicename() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 1524 def _test_extract_with_target(self, target): 1528 writtenfile = zipfp.extract(fpath, target) 1531 correctfile = os.path.join(target, fpath) 1533 self.assertTrue(os.path.samefile(writtenfile, correctfile), (writtenfile, target)) 1564 def _test_extract_all_with_target(self, target): 1567 zipfp.extractall(target) 1569 outfile = os.path.join(target, fpath) 1657 targetpath = os.path.join('target', 'subdir', 'subsub') 1666 rmtree('target') 1671 rmtree('target') [all...] |
/kernel/linux/linux-5.10/arch/sparc/mm/ |
H A D | init_64.c | 1114 u64 target = mdesc_arc_target(md, arc); in scan_pio_for_cfg_handle() local 1117 val = mdesc_get_property(md, target, in scan_pio_for_cfg_handle() 1132 u64 target = mdesc_arc_target(md, arc); in scan_arcs_for_cfg_handle() local 1133 const char *name = mdesc_node_name(md, target); in scan_arcs_for_cfg_handle() 1139 val = mdesc_get_property(md, target, "latency", NULL); in scan_arcs_for_cfg_handle() 1144 candidate = target; in scan_arcs_for_cfg_handle() 1317 u64 target = mdesc_arc_target(md, arc); in numa_parse_mdesc_group_cpus() local 1318 const char *name = mdesc_node_name(md, target); in numa_parse_mdesc_group_cpus() 1323 id = mdesc_get_property(md, target, "id", NULL); in numa_parse_mdesc_group_cpus() 1372 u64 target in find_numa_latencies_for_group() local 1392 u64 target = mdesc_arc_target(md, arc); numa_attach_mlgroup() local [all...] |
/kernel/linux/linux-5.10/drivers/cpufreq/ |
H A D | intel_pstate.c | 163 * This data is used in Atom platforms, where in addition to target P state, 751 * target CPU before the EPP update and restarted after it, in store_energy_performance_preference() 1915 int target, avg_pstate; in get_target_pstate() local 1925 target = global.no_turbo || global.turbo_disabled ? in get_target_pstate() 1927 target += target >> 2; in get_target_pstate() 1928 target = mul_fp(target, busy_frac); in get_target_pstate() 1929 if (target < cpu->pstate.min_pstate) in get_target_pstate() 1930 target in get_target_pstate() [all...] |
/kernel/linux/linux-6.6/arch/sparc/mm/ |
H A D | init_64.c | 1130 u64 target = mdesc_arc_target(md, arc); in scan_pio_for_cfg_handle() local 1133 val = mdesc_get_property(md, target, in scan_pio_for_cfg_handle() 1148 u64 target = mdesc_arc_target(md, arc); in scan_arcs_for_cfg_handle() local 1149 const char *name = mdesc_node_name(md, target); in scan_arcs_for_cfg_handle() 1155 val = mdesc_get_property(md, target, "latency", NULL); in scan_arcs_for_cfg_handle() 1160 candidate = target; in scan_arcs_for_cfg_handle() 1333 u64 target = mdesc_arc_target(md, arc); in numa_parse_mdesc_group_cpus() local 1334 const char *name = mdesc_node_name(md, target); in numa_parse_mdesc_group_cpus() 1339 id = mdesc_get_property(md, target, "id", NULL); in numa_parse_mdesc_group_cpus() 1388 u64 target in find_numa_latencies_for_group() local 1408 u64 target = mdesc_arc_target(md, arc); numa_attach_mlgroup() local [all...] |