/kernel/linux/linux-6.6/arch/s390/net/ |
H A D | bpf_jit_comp.c | 199 #define EMIT4_PCREL_RIC(op, mask, target) \ 201 int __rel = ((target) - jit->prg) / 2; \ 237 #define EMIT6_PCREL_RIEB(op1, op2, b1, b2, mask, target) \ 239 unsigned int rel = (int)((target) - jit->prg) / 2; \ 246 #define EMIT6_PCREL_RIEC(op1, op2, b1, imm, mask, target) \ 248 unsigned int rel = (int)((target) - jit->prg) / 2; \ 263 #define EMIT6_PCREL_RILB(op, b, target) \ 265 unsigned int rel = (int)((target) - jit->prg) / 2; \ 270 #define EMIT6_PCREL_RIL(op, target) \ 272 unsigned int rel = (int)((target) 538 bpf_jit_plt(void *plt, void *ret, void *target) bpf_jit_plt() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/dsa/ocelot/ |
H A D | felix.c | 1349 enum ocelot_target target) in felix_request_regmap() 1351 const char *resource_name = felix->info->resource_names[target]; in felix_request_regmap() 1353 /* If the driver didn't provide a resource name for the target, in felix_request_regmap() 1375 struct regmap *target; in felix_init_structs() local 1408 target = felix_request_regmap(felix, i); in felix_init_structs() 1409 if (IS_ERR(target)) { in felix_init_structs() 1412 target); in felix_init_structs() 1414 return PTR_ERR(target); in felix_init_structs() 1417 ocelot->targets[i] = target; in felix_init_structs() 1440 target in felix_init_structs() 1348 felix_request_regmap(struct felix *felix, enum ocelot_target target) felix_request_regmap() argument [all...] |
/kernel/linux/linux-6.6/fs/xfs/ |
H A D | xfs_buf.c | 214 struct xfs_buftarg *target, in _xfs_buf_alloc() 241 bp->b_target = target; in _xfs_buf_alloc() 242 bp->b_mount = target->bt_mount; in _xfs_buf_alloc() 803 struct xfs_buftarg *target, in xfs_buf_read_map() 817 error = xfs_buf_get_map(target, map, nmaps, flags, &bp); in xfs_buf_read_map() 825 XFS_STATS_INC(target->bt_mount, xb_get_read); in xfs_buf_read_map() 865 if (!xlog_is_shutdown(target->bt_mount->m_log)) in xfs_buf_read_map() 888 struct xfs_buftarg *target, in xfs_buf_readahead_map() 895 xfs_buf_read_map(target, map, nmaps, in xfs_buf_readahead_map() 908 struct xfs_buftarg *target, in xfs_buf_read_uncached() 213 _xfs_buf_alloc( struct xfs_buftarg *target, struct xfs_buf_map *map, int nmaps, xfs_buf_flags_t flags, struct xfs_buf **bpp) _xfs_buf_alloc() argument 802 xfs_buf_read_map( struct xfs_buftarg *target, struct xfs_buf_map *map, int nmaps, xfs_buf_flags_t flags, struct xfs_buf **bpp, const struct xfs_buf_ops *ops, xfs_failaddr_t fa) xfs_buf_read_map() argument 887 xfs_buf_readahead_map( struct xfs_buftarg *target, struct xfs_buf_map *map, int nmaps, const struct xfs_buf_ops *ops) xfs_buf_readahead_map() argument 907 xfs_buf_read_uncached( struct xfs_buftarg *target, xfs_daddr_t daddr, size_t numblks, xfs_buf_flags_t flags, struct xfs_buf **bpp, const struct xfs_buf_ops *ops) xfs_buf_read_uncached() argument 943 xfs_buf_get_uncached( struct xfs_buftarg *target, size_t numblks, xfs_buf_flags_t flags, struct xfs_buf **bpp) xfs_buf_get_uncached() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_setup.c | 726 if (res->target == PIPE_TEXTURE_1D_ARRAY || in lp_setup_set_fs_images() 727 res->target == PIPE_TEXTURE_2D_ARRAY || in lp_setup_set_fs_images() 728 res->target == PIPE_TEXTURE_3D || in lp_setup_set_fs_images() 729 res->target == PIPE_TEXTURE_CUBE || in lp_setup_set_fs_images() 730 res->target == PIPE_TEXTURE_CUBE_ARRAY) { in lp_setup_set_fs_images() 1012 if (res->target == PIPE_TEXTURE_1D_ARRAY || in lp_setup_set_fragment_sampler_views() 1013 res->target == PIPE_TEXTURE_2D_ARRAY || in lp_setup_set_fragment_sampler_views() 1014 res->target == PIPE_TEXTURE_CUBE || in lp_setup_set_fragment_sampler_views() 1015 res->target == PIPE_TEXTURE_CUBE_ARRAY || in lp_setup_set_fragment_sampler_views() 1016 (res->target in lp_setup_set_fragment_sampler_views() [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-intl.cc | 271 new_target = args.target(); in LegacyFormatConstructor() 277 Handle<JSFunction> target = args.target(); in LegacyFormatConstructor() local 285 isolate, map, JSFunction::GetDerivedMap(isolate, target, new_target)); in LegacyFormatConstructor() 349 Handle<JSFunction> target = args.target(); in DisallowCallConstructor() local 356 isolate, map, JSFunction::GetDerivedMap(isolate, target, new_target)); in DisallowCallConstructor() 374 new_target = args.target(); in CallOrConstructConstructor() 380 Handle<JSFunction> target = args.target(); in CallOrConstructConstructor() local 700 Handle<JSFunction> target = args.target(); BUILTIN() local [all...] |
/third_party/mesa3d/src/gallium/drivers/asahi/ |
H A D | agx_state.c | 53 struct pipe_stream_output_target *target; in agx_create_stream_output_target() local 55 target = &rzalloc(pctx, struct agx_streamout_target)->base; in agx_create_stream_output_target() 57 if (!target) in agx_create_stream_output_target() 60 pipe_reference_init(&target->reference, 1); in agx_create_stream_output_target() 61 pipe_resource_reference(&target->buffer, prsc); in agx_create_stream_output_target() 63 target->context = pctx; in agx_create_stream_output_target() 64 target->buffer_offset = buffer_offset; in agx_create_stream_output_target() 65 target->buffer_size = buffer_size; in agx_create_stream_output_target() 67 return target; in agx_create_stream_output_target() 72 struct pipe_stream_output_target *target) in agx_stream_output_target_destroy() 71 agx_stream_output_target_destroy(struct pipe_context *pctx, struct pipe_stream_output_target *target) agx_stream_output_target_destroy() argument [all...] |
/third_party/node/ |
H A D | vcbuild.bat | 24 @rem Same as the test-ci target in Makefile
29 set target=Build
variable 82 if /i "%1"=="clean" set target=Clean&goto arg-ok
variable 83 if /i "%1"=="testclean" set target=TestClean&goto arg-ok
variable 216 if "%target%"=="Clean" echo deleting %~dp0deps\icu
217 if "%target%"=="Clean" rmdir /S /Q %~dp0deps\icu
220 if "%target%"=="TestClean" (
238 if not "%target%"=="Clean" goto skip-clean
250 @rem usually vcvarsall takes an argument: host + '_' + target
252 @rem unless both the host and the target ar 386 if defined no_cctest set target=node global() variable 387 if "%test_args%"=="" set target=node global() variable 388 if defined cctest set target="Build" global() variable [all...] |
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_ureg.c | 166 enum tgsi_texture_type target; member 176 enum tgsi_texture_type target; member 749 enum tgsi_texture_type target, in ureg_DECL_sampler_view() 766 ureg->sampler_view[i].target = target; in ureg_DECL_sampler_view() 784 enum tgsi_texture_type target, in ureg_DECL_image() 798 ureg->image[i].target = target; in ureg_DECL_image() 1341 enum tgsi_texture_type target, in ureg_emit_texture() 1352 out[0].insn_texture.Texture = target; in ureg_emit_texture() 747 ureg_DECL_sampler_view(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum tgsi_return_type return_type_x, enum tgsi_return_type return_type_y, enum tgsi_return_type return_type_z, enum tgsi_return_type return_type_w) ureg_DECL_sampler_view() argument 782 ureg_DECL_image(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum pipe_format format, boolean wr, boolean raw) ureg_DECL_image() argument 1339 ureg_emit_texture(struct ureg_program *ureg, unsigned extended_token, enum tgsi_texture_type target, enum tgsi_return_type return_type, unsigned num_offsets) ureg_emit_texture() argument 1436 ureg_tex_insn(struct ureg_program *ureg, enum tgsi_opcode opcode, const struct ureg_dst *dst, unsigned nr_dst, enum tgsi_texture_type target, enum tgsi_return_type return_type, const struct tgsi_texture_offset *texoffsets, unsigned nr_offset, const struct ureg_src *src, unsigned nr_src ) ureg_tex_insn() argument 1697 emit_decl_sampler_view(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum tgsi_return_type return_type_x, enum tgsi_return_type return_type_y, enum tgsi_return_type return_type_z, enum tgsi_return_type return_type_w ) emit_decl_sampler_view() argument 1726 emit_decl_image(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum pipe_format format, boolean wr, boolean raw) emit_decl_image() argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | fsl_hcalls.h | 331 * @target: guest physical address to copy to 343 uint64_t target; /**< guest physical address to copy to */ member 351 * @target: the ID of the partition to copy to 358 unsigned int target, phys_addr_t sg_list, unsigned int count) in fh_partition_memcpy() 369 r4 = target; in fh_partition_memcpy() 357 fh_partition_memcpy(unsigned int source, unsigned int target, phys_addr_t sg_list, unsigned int count) fh_partition_memcpy() argument
|
/kernel/linux/linux-5.10/arch/mips/kernel/ |
H A D | relocate.c | 96 /* Original target address */ in apply_r_mips_26_rel() 100 /* Get the new target address */ in apply_r_mips_26_rel() 120 unsigned long target = (insn & 0xffff) << 16; /* high 16bits of target */ in apply_r_mips_hi16_rel() local 122 target += offset; in apply_r_mips_hi16_rel() 124 *loc_new = (insn & ~0xffff) | ((target >> 16) & 0xffff); in apply_r_mips_hi16_rel() 349 * the target memory area in relocate_kernel()
|
/kernel/linux/linux-5.10/drivers/cpuidle/governors/ |
H A D | menu.c | 375 * state's target residency matches the time till the in menu_select() 404 * The tick is not going to be stopped and the target in menu_select() 449 struct cpuidle_state *target = &drv->states[last_idx]; in menu_update() local 494 if (measured_ns > 2 * target->exit_latency_ns) in menu_update() 495 measured_ns -= target->exit_latency_ns; in menu_update()
|
/kernel/linux/linux-6.6/arch/mips/kernel/ |
H A D | relocate.c | 93 /* Original target address */ in apply_r_mips_26_rel() 97 /* Get the new target address */ in apply_r_mips_26_rel() 118 unsigned long target = (insn & 0xffff) << 16; /* high 16bits of target */ in apply_r_mips_hi16_rel() local 120 target += offset; in apply_r_mips_hi16_rel() 122 *loc_new = (insn & ~0xffff) | ((target >> 16) & 0xffff); in apply_r_mips_hi16_rel() 370 * the target memory area in relocate_kernel()
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | fsl_hcalls.h | 331 * @target: guest physical address to copy to 343 uint64_t target; /**< guest physical address to copy to */ member 351 * @target: the ID of the partition to copy to 358 unsigned int target, phys_addr_t sg_list, unsigned int count) in fh_partition_memcpy() 369 r4 = target; in fh_partition_memcpy() 357 fh_partition_memcpy(unsigned int source, unsigned int target, phys_addr_t sg_list, unsigned int count) fh_partition_memcpy() argument
|
/kernel/linux/linux-5.10/drivers/target/ |
H A D | target_core_tmr.c | 18 #include <target/target_core_base.h> 19 #include <target/target_core_backend.h> 20 #include <target/target_core_fabric.h>
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | xt_TPROXY.c | 74 /* This should be in a separate target, but we don't do multiple in tproxy_tg4() 168 /* This should be in a separate target, but we don't do multiple in tproxy_tg6_v1() 227 .target = tproxy_tg4_v0, 238 .target = tproxy_tg4_v1, 250 .target = tproxy_tg6_v1, 275 MODULE_DESCRIPTION("Netfilter transparent proxy (TPROXY) target module.");
|
/kernel/linux/linux-5.10/include/linux/mtd/ |
H A D | spinand.h | 301 * @select_target: function used to select a target/die. Required only for 320 unsigned int target); 374 * @select_target: select a specific target/die. Usually called before sending 377 * @cur_target: currently selected target/die 405 unsigned int target); 482 int spinand_select_target(struct spinand_device *spinand, unsigned int target);
|
/kernel/linux/linux-5.10/sound/soc/intel/common/ |
H A D | sst-dsp.c | 145 u32 target, u32 time, char *operation) in sst_dsp_register_poll() 162 while ((((reg = sst_dsp_shim_read_unlocked(ctx, offset)) & mask) != target) in sst_dsp_register_poll() 171 if ((reg & mask) == target) { in sst_dsp_register_poll() 144 sst_dsp_register_poll(struct sst_dsp *ctx, u32 offset, u32 mask, u32 target, u32 time, char *operation) sst_dsp_register_poll() argument
|
/kernel/linux/linux-5.10/fs/hmdfs/ |
H A D | dentry.c | 36 struct dentry *target, in hmdfs_d_remote_revalidate() 39 unsigned int timeout = hmdfs_sb(target->d_sb)->dcache_timeout; in hmdfs_d_remote_revalidate() 40 unsigned long dentry_time = hmdfs_get_time(target); in hmdfs_d_remote_revalidate() 35 hmdfs_d_remote_revalidate(struct hmdfs_peer *conn, struct dentry *target, struct dentry *parent) hmdfs_d_remote_revalidate() argument
|
/kernel/linux/linux-6.6/fs/hmdfs/ |
H A D | dentry.c | 36 struct dentry *target, in hmdfs_d_remote_revalidate() 39 unsigned int timeout = hmdfs_sb(target->d_sb)->dcache_timeout; in hmdfs_d_remote_revalidate() 40 unsigned long dentry_time = hmdfs_get_time(target); in hmdfs_d_remote_revalidate() 35 hmdfs_d_remote_revalidate(struct hmdfs_peer *conn, struct dentry *target, struct dentry *parent) hmdfs_d_remote_revalidate() argument
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | fsnotify.h | 142 int isdir, struct inode *target, in fsnotify_move() 167 if (target) in fsnotify_move() 168 fsnotify_link_count(target); in fsnotify_move() 140 fsnotify_move(struct inode *old_dir, struct inode *new_dir, const struct qstr *old_name, int isdir, struct inode *target, struct dentry *moved) fsnotify_move() argument
|
/kernel/linux/linux-6.6/include/linux/mtd/ |
H A D | spinand.h | 336 * @select_target: function used to select a target/die. Required only for 355 unsigned int target); 411 * @select_target: select a specific target/die. Usually called before sending 414 * @cur_target: currently selected target/die 442 unsigned int target); 519 int spinand_select_target(struct spinand_device *spinand, unsigned int target);
|
/kernel/linux/linux-6.6/drivers/target/ |
H A D | target_core_tmr.c | 18 #include <target/target_core_base.h> 19 #include <target/target_core_backend.h> 20 #include <target/target_core_fabric.h>
|
/kernel/linux/linux-6.6/drivers/cpuidle/governors/ |
H A D | menu.c | 391 * state's target residency matches the time till the in menu_select() 420 * The tick is not going to be stopped and the target in menu_select() 465 struct cpuidle_state *target = &drv->states[last_idx]; in menu_update() local 510 if (measured_ns > 2 * target->exit_latency_ns) in menu_update() 511 measured_ns -= target->exit_latency_ns; in menu_update()
|
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | callthunks.c | 281 void *target; in callthunks_translate_call_dest() local 291 target = patch_dest(dest, false); in callthunks_translate_call_dest() 292 return target ? : dest; in callthunks_translate_call_dest() 317 /* Is function call target a thunk? */ in x86_call_depth_emit_accounting()
|
/kernel/linux/linux-6.6/security/apparmor/ |
H A D | lib.c | 353 int aa_profile_label_perm(struct aa_profile *profile, struct aa_profile *target, in aa_profile_label_perm() argument 361 ad->peer = &target->label; in aa_profile_label_perm() 364 aa_profile_match_label(profile, rules, &target->label, type, request, in aa_profile_label_perm()
|