/kernel/linux/linux-5.10/drivers/scsi/megaraid/ |
H A D | megaraid_sas_fusion.c | 3255 scp->SCp.ptr = (char *)cmd; in megasas_build_io_fusion() 3450 scmd_local->SCp.ptr = NULL; in megasas_complete_r1_command() 3550 scmd_local->SCp.ptr = NULL; in complete_cmd_fusion()
|
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
H A D | qla_def.h | 688 #define SET_CMD_SENSE_PTR(sp, ptr) \ 689 (sp->u.scmd.request_sense_ptr = ptr) 5049 #define CMD_SP(Cmnd) ((Cmnd)->SCp.ptr)
|
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | extent_io.c | 5705 char *ptr = (char *)ptrv; in memcmp_extent_buffer() local 5720 ret = memcmp(ptr, kaddr + offset, cur); in memcmp_extent_buffer() 5724 ptr += cur; in memcmp_extent_buffer()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_device.c | 920 (void **)&adev->mem_scratch.ptr); in amdgpu_device_mem_scratch_init() 2472 memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM); in amdgpu_device_fill_reset_magic() 2487 if (memcmp(adev->gart.ptr, adev->reset_magic, in amdgpu_device_check_vram_lost()
|
H A D | gfx_v7_0.c | 2304 ib.ptr[0] = PACKET3(PACKET3_SET_UCONFIG_REG, 1); in gfx_v7_0_ring_test_ib() 2305 ib.ptr[1] = mmSCRATCH_REG0 - PACKET3_SET_UCONFIG_REG_START; in gfx_v7_0_ring_test_ib() 2306 ib.ptr[2] = 0xDEADBEEF; in gfx_v7_0_ring_test_ib()
|
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath11k/ |
H A D | wmi.h | 2269 u32 ptr; member 3162 u8 *ptr; member 6323 const void **ath11k_wmi_tlv_parse_alloc(struct ath11k_base *ab, const void *ptr,
|
/kernel/linux/linux-6.6/drivers/scsi/lpfc/ |
H A D | lpfc_attr.c | 1464 * -ENODEV, NULL ptr to pcidev 1475 struct pci_dev *ptr = NULL; in lpfc_reset_pci_bus() local 1491 list_for_each_entry(ptr, &pdev->bus->devices, bus_list) { in lpfc_reset_pci_bus() 1493 shost = pci_get_drvdata(ptr); in lpfc_reset_pci_bus()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_peephole.cpp | 3826 LocalCSE::tryReplace(Instruction **ptr, Instruction *i) in tryReplace() argument 3828 Instruction *old = *ptr; in tryReplace() 3840 *ptr = NULL; in tryReplace()
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aes-x86_64.pl | 1568 { my ($i,$ptr,$te,$td) = @_; 1571 mov $i($ptr),$tp1 1617 mov $tp1,$i($ptr)
|
/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeRISCV_common.c | 154 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() local 155 FAIL_IF(!ptr); in push_inst() 156 *ptr = ins; in push_inst()
|
H A D | sljitNativeMIPS_common.c | 329 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() local 333 FAIL_IF(!ptr); in push_inst() 334 *ptr = ins; in push_inst()
|
/third_party/openssl/crypto/aes/asm/ |
H A D | aes-x86_64.pl | 1568 { my ($i,$ptr,$te,$td) = @_; 1571 mov $i($ptr),$tp1 1617 mov $tp1,$i($ptr)
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLSPIRVCodeGenerator.cpp | 1211 SpvId ptr = lv->getPointer(); in writeFunctionCallArgument() local 1212 if (ptr != (SpvId) -1 && lv->isMemoryObjectPointer()) { in writeFunctionCallArgument() 1213 return ptr; in writeFunctionCallArgument()
|
/third_party/skia/tests/ |
H A D | SkVMTest.cpp | 296 skvm::Ptr ptr = b.varying<int>(); local 298 skvm::I32 x = b.load32(ptr); 309 b.store32(ptr, x);
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsDrawTest.cpp | 990 void AttributeArray::data (DrawTestSpec::Target target, size_t size, const char* ptr, DrawTestSpec::Usage usage) in data() argument 1000 m_ctx.bufferData(targetToGL(target), size, ptr, usageToGL(usage)); in data() local 1009 std::memcpy(m_data, ptr, size); in data()
|
/kernel/linux/linux-5.10/arch/x86/kvm/ |
H A D | x86.c | 6569 #define CMPXCHG_TYPE(t, ptr, old, new) \ 6570 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old)) 6573 # define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new) 6575 # define CMPXCHG64(ptr, old, new) \ 6576 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | md.c | 6695 char *ptr; in get_bitmap_file() local 6706 ptr = file_path(mddev->bitmap_info.file, file->pathname, in get_bitmap_file() 6708 if (IS_ERR(ptr)) in get_bitmap_file() 6709 err = PTR_ERR(ptr); in get_bitmap_file() 6711 memmove(file->pathname, ptr, in get_bitmap_file() 6712 sizeof(file->pathname)-(ptr-file->pathname)); in get_bitmap_file()
|
/kernel/linux/linux-5.10/fs/nfs/ |
H A D | nfs4proc.c | 9060 unsigned *ptr; in nfs4_proc_create_session() local 9075 ptr = (unsigned *)&session->sess_id.data[0]; in nfs4_proc_create_session() 9077 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]); in nfs4_proc_create_session()
|
/kernel/linux/linux-5.10/kernel/bpf/ |
H A D | verifier.c | 88 * and the range of [ptr, ptr + map's value_size) is accessible. 1667 /* LDX source must be ptr. */ in is_reg64() 1688 /* Implicit ctx ptr. */ in is_reg64() 1697 /* The only source register for BPF_ST is a ptr. */ in is_reg64() 1975 * . ptr + scalar alu 2552 /* regular write of data into stack destroys any spilled ptr */ in check_stack_write_fixed_off() 2554 /* Mark slots as STACK_MISC if they belonged to spilled ptr. */ in check_stack_write_fixed_off() 2650 * here, the ptr status would be erased below (even in check_stack_write_var_off() 2659 verbose(env, "spilled ptr i in check_stack_write_var_off() 3747 void *ptr; bpf_map_direct_read() local [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_tables_api.c | 1154 const void *ptr) in nft_chain_hash_cmp() 1156 const struct nft_chain *chain = ptr; in nft_chain_hash_cmp() 1179 const void *ptr) in nft_objname_hash_cmp() 1182 const struct nft_object *obj = ptr; in nft_objname_hash_cmp() 7598 unsigned long event, void *ptr) in nf_tables_flowtable_event() 7600 struct net_device *dev = netdev_notifier_info_to_dev(ptr); in nf_tables_flowtable_event() 1153 nft_chain_hash_cmp(struct rhashtable_compare_arg *arg, const void *ptr) nft_chain_hash_cmp() argument 1178 nft_objname_hash_cmp(struct rhashtable_compare_arg *arg, const void *ptr) nft_objname_hash_cmp() argument 7597 nf_tables_flowtable_event(struct notifier_block *this, unsigned long event, void *ptr) nf_tables_flowtable_event() argument
|
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | nfs4proc.c | 9282 unsigned *ptr; in nfs4_proc_create_session() local 9304 ptr = (unsigned *)&session->sess_id.data[0]; in nfs4_proc_create_session() 9306 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]); in nfs4_proc_create_session()
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw89/ |
H A D | coex.c | 1825 u8 *ptr = NULL; in rtw89_btc_fw_set_slots() local 1835 ptr = &tbl->buf[0]; in rtw89_btc_fw_set_slots() 1836 memcpy(ptr, s, num * sizeof(*s)); in rtw89_btc_fw_set_slots() 1848 u8 n, *ptr = NULL, ulen, cxmreg_max; in btc_fw_set_monreg() local 1877 ptr = &monreg->buf[0]; in btc_fw_set_monreg() 1878 memcpy(ptr, chip->mon_reg, n * ulen); in btc_fw_set_monreg()
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | md.c | 6713 char *ptr; in get_bitmap_file() local 6724 ptr = file_path(mddev->bitmap_info.file, file->pathname, in get_bitmap_file() 6726 if (IS_ERR(ptr)) in get_bitmap_file() 6727 err = PTR_ERR(ptr); in get_bitmap_file() 6729 memmove(file->pathname, ptr, in get_bitmap_file() 6730 sizeof(file->pathname)-(ptr-file->pathname)); in get_bitmap_file()
|
/third_party/ffmpeg/libavformat/ |
H A D | mov.c | 6220 uint8_t *buffer, *ptr; 6240 ptr = buffer; 6241 while ((ptr = av_stristr(ptr, "systemBitrate=\""))) { 6242 ptr += sizeof("systemBitrate=\"") - 1; 6251 ret = strtol(ptr, &endptr, 10);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiFeatureInfo.cpp | 535 const void* ptr; member 627 const deUint32 reportedValue = *(deUint32*)limit.ptr; in validateLimit() 635 const float reportedValue = *(float*)limit.ptr; in validateLimit() 643 const deInt32 reportedValue = *(deInt32*)limit.ptr; in validateLimit() 651 const deUint64 reportedValue = *(deUint64*)limit.ptr; in validateLimit() 659 const deUint32 reportedValue = *(deUint32*)limit.ptr; in validateLimit()
|