/linux-4.4.14/drivers/crypto/qat/qat_common/ |
D | qat_hal.c | 78 #define AE(handle, ae) handle->hal_handle->aes[ae] argument 112 unsigned char ae, unsigned int ctx_mask) in qat_hal_set_live_ctx() argument 114 AE(handle, ae).live_ctx_mask = ctx_mask; in qat_hal_set_live_ctx() 119 unsigned char ae, unsigned int csr, in qat_hal_rd_ae_csr() argument 125 *value = GET_AE_CSR(handle, ae, csr); in qat_hal_rd_ae_csr() 126 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_rd_ae_csr() 135 unsigned char ae, unsigned int csr, in qat_hal_wr_ae_csr() argument 141 SET_AE_CSR(handle, ae, csr, value); in qat_hal_wr_ae_csr() 142 if (!(GET_AE_CSR(handle, ae, LOCAL_CSR_STATUS) & LCS_STATUS)) in qat_hal_wr_ae_csr() 151 unsigned char ae, unsigned char ctx, in qat_hal_get_wakeup_event() argument [all …]
|
D | qat_uclo.c | 63 unsigned int ae, unsigned int image_num) in qat_uclo_init_ae_data() argument 70 ae_data = &obj_handle->ae_data[ae]; in qat_uclo_init_ae_data() 159 unsigned char ae, unsigned int addr, in qat_uclo_wr_umem_by_words() argument 170 qat_hal_wr_umem(handle, ae, addr++, 1, &outval); in qat_uclo_wr_umem_by_words() 177 unsigned char ae, in qat_uclo_batch_wr_umem() argument 189 ae = umem_init->ae; in qat_uclo_batch_wr_umem() 193 qat_uclo_wr_umem_by_words(handle, ae, addr, value, size); in qat_uclo_batch_wr_umem() 218 unsigned long ae = 0; in qat_uclo_parse_num() local 228 if ((kstrtoul(buf, 10, &ae))) in qat_uclo_parse_num() 231 *num = (unsigned int)ae; in qat_uclo_parse_num() [all …]
|
D | icp_qat_hal.h | 108 #define AE_CSR(handle, ae) \ argument 110 ((ae & handle->hal_handle->ae_mask) << 12)) 111 #define AE_CSR_ADDR(handle, ae, csr) (AE_CSR(handle, ae) + (0x3ff & csr)) argument 112 #define SET_AE_CSR(handle, ae, csr, val) \ argument 113 ADF_CSR_WR(AE_CSR_ADDR(handle, ae, csr), 0, val) 114 #define GET_AE_CSR(handle, ae, csr) ADF_CSR_RD(AE_CSR_ADDR(handle, ae, csr), 0) argument 115 #define AE_XFER(handle, ae) \ argument 117 ((ae & handle->hal_handle->ae_mask) << 12)) 118 #define AE_XFER_ADDR(handle, ae, reg) (AE_XFER(handle, ae) + \ argument 120 #define SET_AE_XFER(handle, ae, reg, val) \ argument [all …]
|
D | adf_accel_engine.c | 118 uint32_t ae_ctr, ae, max_aes = GET_MAX_ACCELENGINES(accel_dev); in adf_ae_start() local 123 for (ae = 0, ae_ctr = 0; ae < max_aes; ae++) { in adf_ae_start() 124 if (hw_data->ae_mask & (1 << ae)) { in adf_ae_start() 125 qat_hal_start(loader_data->fw_loader, ae, 0xFF); in adf_ae_start() 139 uint32_t ae_ctr, ae, max_aes = GET_MAX_ACCELENGINES(accel_dev); in adf_ae_stop() local 144 for (ae = 0, ae_ctr = 0; ae < max_aes; ae++) { in adf_ae_stop() 145 if (hw_data->ae_mask & (1 << ae)) { in adf_ae_stop() 146 qat_hal_stop(loader_data->fw_loader, ae, 0xFF); in adf_ae_stop() 156 static int adf_ae_reset(struct adf_accel_dev *accel_dev, int ae) in adf_ae_reset() argument
|
D | adf_common_drv.h | 173 void qat_hal_start(struct icp_qat_fw_loader_handle *handle, unsigned char ae, 175 void qat_hal_stop(struct icp_qat_fw_loader_handle *handle, unsigned char ae, 180 unsigned char ae, unsigned int ctx_mask); 182 unsigned char ae, enum icp_qat_uof_regtype lm_type, 185 unsigned char ae, unsigned char mode); 187 unsigned char ae, unsigned char mode); 189 unsigned char ae, unsigned int ctx_mask, unsigned int upc); 191 unsigned char ae, unsigned int uaddr, 193 void qat_hal_wr_umem(struct icp_qat_fw_loader_handle *handle, unsigned char ae, 198 unsigned char ae, [all …]
|
D | adf_admin.c | 152 static int adf_put_admin_msg_sync(struct adf_accel_dev *accel_dev, u32 ae, in adf_put_admin_msg_sync() argument 156 int offset = ae * ADF_ADMINMSG_LEN * 2; in adf_put_admin_msg_sync() 158 int mb_offset = ae * ADF_DH895XCC_MAILBOX_STRIDE; in adf_put_admin_msg_sync()
|
D | icp_qat_uclo.h | 371 unsigned int ae; member
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_ct.c | 1415 struct lpfc_fdmi_attr_entry *ae; in lpfc_fdmi_cmd() local 1507 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue; in lpfc_fdmi_cmd() 1508 memset(ae, 0, sizeof(struct lpfc_name)); in lpfc_fdmi_cmd() 1512 memcpy(&ae->un.NodeName, &vport->fc_sparam.nodeName, in lpfc_fdmi_cmd() 1523 ae = (struct lpfc_fdmi_attr_entry *)&ad->AttrValue; in lpfc_fdmi_cmd() 1524 memset(ae, 0, sizeof(ae->un.Manufacturer)); in lpfc_fdmi_cmd() 1526 strncpy(ae->un.Manufacturer, "Emulex Corporation", in lpfc_fdmi_cmd() 1527 sizeof(ae->un.Manufacturer)); in lpfc_fdmi_cmd() 1528 len = strnlen(ae->un.Manufacturer, in lpfc_fdmi_cmd() 1529 sizeof(ae->un.Manufacturer)); in lpfc_fdmi_cmd() [all …]
|
/linux-4.4.14/drivers/scsi/esas2r/ |
D | esas2r_int.c | 702 static void esas2r_lun_event(struct esas2r_adapter *a, union atto_vda_ae *ae, in esas2r_lun_event() argument 712 esas2r_trace("ae->lu.dwevent: %x", ae->lu.dwevent); in esas2r_lun_event() 713 esas2r_trace("ae->lu.bystate: %x", ae->lu.bystate); in esas2r_lun_event() 719 if (ae->lu.dwevent & VDAAE_LU_LOST) { in esas2r_lun_event() 722 switch (ae->lu.bystate) { in esas2r_lun_event() 738 memcpy(&t->lu_event, &ae->lu, cplen); in esas2r_lun_event() 750 union atto_vda_ae *ae = in esas2r_ae_complete() local 770 last = ae; in esas2r_ae_complete() 773 while (ae < last) { in esas2r_ae_complete() 776 esas2r_trace("ae: %p", ae); in esas2r_ae_complete() [all …]
|
D | esas2r_main.c | 1511 void esas2r_nuxi_ae_data(union atto_vda_ae *ae) in esas2r_nuxi_ae_data() argument 1513 struct atto_vda_ae_raid *r = &ae->raid; in esas2r_nuxi_ae_data() 1514 struct atto_vda_ae_lu *l = &ae->lu; in esas2r_nuxi_ae_data() 1516 switch (ae->hdr.bytype) { in esas2r_nuxi_ae_data() 1771 struct esas2r_vda_ae *ae = (struct esas2r_vda_ae *)fw_event->data; in esas2r_send_ae_event() local 1774 switch (ae->vda_ae.hdr.bytype) { in esas2r_send_ae_event() 1843 esas2r_log_hexdump(ESAS2R_LOG_WARN, &ae->vda_ae, in esas2r_send_ae_event() 1844 ae->vda_ae.hdr.bylength); in esas2r_send_ae_event() 1903 struct esas2r_vda_ae *ae = in esas2r_queue_fw_event() local 1906 ae->signature = ESAS2R_VDA_EVENT_SIG; in esas2r_queue_fw_event() [all …]
|
D | esas2r_vda.c | 422 struct atto_vda_ae_req *vrq = &rq->vrq->ae; in esas2r_build_ae_req()
|
D | atvda.h | 1221 struct atto_vda_ae_req ae; member
|
D | esas2r.h | 1099 void esas2r_nuxi_ae_data(union atto_vda_ae *ae);
|
/linux-4.4.14/security/selinux/ |
D | avc.c | 56 struct avc_entry ae; member 386 node->ae.xp_node->xp.len++; in avc_add_xperms_decision() 391 list_add(&dest_xpd->xpd_list, &node->ae.xp_node->xpd_head); in avc_add_xperms_decision() 431 node->ae.xp_node = dest; in avc_xperms_populate() 488 avc_xperms_free(node->ae.xp_node); in avc_node_free() 502 avc_xperms_free(node->ae.xp_node); in avc_node_kill() 569 node->ae.ssid = ssid; in avc_node_populate() 570 node->ae.tsid = tsid; in avc_node_populate() 571 node->ae.tclass = tclass; in avc_node_populate() 572 memcpy(&node->ae.avd, avd, sizeof(node->ae.avd)); in avc_node_populate() [all …]
|
/linux-4.4.14/drivers/staging/rdma/amso1100/ |
D | c2_ae.c | 172 resource_indicator = be32_to_cpu(wr->ae.ae_generic.resource_type); in c2_ae_event() 174 (void *) (unsigned long) wr->ae.ae_generic.user_context; in c2_ae_event() 200 (unsigned long long) wr->ae.ae_generic.user_context, in c2_ae_event() 201 be32_to_cpu(wr->ae.ae_generic.resource_type), in c2_ae_event() 202 be32_to_cpu(wr->ae.ae_generic.resource), in c2_ae_event() 203 to_qp_state_str(be32_to_cpu(wr->ae.ae_generic.qp_state))); in c2_ae_event() 205 c2_set_qp_state(qp, be32_to_cpu(wr->ae.ae_generic.qp_state)); in c2_ae_event() 209 res = &wr->ae.ae_active_connect_results; in c2_ae_event() 274 &wr->ae.ae_connection_request; in c2_ae_event()
|
D | c2_wr.h | 1458 union c2wr_ae ae; member
|
/linux-4.4.14/arch/powerpc/perf/ |
D | power7-pmu.c | 163 s64 ae; in power7_get_alternatives() local 170 ae = event_alternatives[i][j]; in power7_get_alternatives() 171 if (ae && ae != event) in power7_get_alternatives() 172 alt[nalt++] = ae; in power7_get_alternatives() 175 ae = find_alternative_decode(event); in power7_get_alternatives() 176 if (ae > 0) in power7_get_alternatives() 177 alt[nalt++] = ae; in power7_get_alternatives()
|
D | power5+-pmu.c | 280 s64 ae; in power5p_get_alternatives() local 288 ae = event_alternatives[i][j]; in power5p_get_alternatives() 289 if (ae && ae != event) in power5p_get_alternatives() 290 alt[nalt++] = ae; in power5p_get_alternatives() 291 nlim += power5p_limited_pmc_event(ae); in power5p_get_alternatives() 294 ae = find_alternative_bdecode(event); in power5p_get_alternatives() 295 if (ae > 0) in power5p_get_alternatives() 296 alt[nalt++] = ae; in power5p_get_alternatives()
|
D | power5-pmu.c | 275 s64 ae; in power5_get_alternatives() local 282 ae = event_alternatives[i][j]; in power5_get_alternatives() 283 if (ae && ae != event) in power5_get_alternatives() 284 alt[nalt++] = ae; in power5_get_alternatives() 287 ae = find_alternative_bdecode(event); in power5_get_alternatives() 288 if (ae > 0) in power5_get_alternatives() 289 alt[nalt++] = ae; in power5_get_alternatives()
|
D | mpc7450-pmu.c | 229 u32 ae; in mpc7450_get_alternatives() local 236 ae = event_alternatives[i][j]; in mpc7450_get_alternatives() 237 if (ae && ae != (u32)event) in mpc7450_get_alternatives() 238 alt[nalt++] = ae; in mpc7450_get_alternatives()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | efi.c | 975 u64 as = 0, ae; in find_memmap_space() local 1018 ae = min(contig_high, efi_md_end(md)); in find_memmap_space() 1022 ae = min(ae, max_addr); in find_memmap_space() 1023 if (ae <= as) in find_memmap_space() 1027 if (total_mem + (ae - as) > mem_limit) in find_memmap_space() 1028 ae -= total_mem + (ae - as) - mem_limit; in find_memmap_space() 1030 if (ae <= as) in find_memmap_space() 1033 if (ae - as > space_needed) in find_memmap_space() 1052 u64 as, ae, lim; in efi_memmap_init() local 1135 ae = contig_high; in efi_memmap_init() [all …]
|
/linux-4.4.14/drivers/misc/mic/host/ |
D | mic_smpt.c | 103 int ae = 0; in mic_smpt_op() local 115 ae++; in mic_smpt_op() 117 } else if (ae) /* cannot find contiguous entries */ in mic_smpt_op() 120 if (ae == entries) in mic_smpt_op() 125 for (ae = 0, i = 0; i < smpt_info->info.num_reg; i++) { in mic_smpt_op() 126 ae = (smpt_info->entry[i].ref_count == 0) ? ae + 1 : 0; in mic_smpt_op() 127 if (ae == entries) in mic_smpt_op()
|
/linux-4.4.14/arch/arm64/boot/dts/hisilicon/ |
D | hip05_hns.dtsi | 130 ae-name = "dsaf0"; 138 ae-name = "dsaf0"; 145 ae-name = "dsaf0"; 153 ae-name = "dsaf0"; 161 ae-name = "dsaf0"; 169 ae-name = "dsaf0"; 177 ae-name = "dsaf0"; 185 ae-name = "dsaf0";
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | hisilicon-hns-nic.txt | 7 - ae-name: accelerator name who provides this interface, 44 ae-name = "dsaf0";
|
/linux-4.4.14/tools/perf/tests/ |
D | kmod-path.c | 46 #define T(path, an, ae, k, c, n, e) \ argument 47 TEST_ASSERT_VAL("failed", !test(path, an, ae, k, c, n, e))
|
/linux-4.4.14/drivers/power/ |
D | bq27xxx_battery.c | 560 int ae; in bq27xxx_battery_read_energy() local 562 ae = bq27xxx_read(di, BQ27XXX_REG_AE, false); in bq27xxx_battery_read_energy() 563 if (ae < 0) { in bq27xxx_battery_read_energy() 565 return ae; in bq27xxx_battery_read_energy() 569 ae *= BQ27XXX_POWER_CONSTANT / BQ27XXX_RS; in bq27xxx_battery_read_energy() 571 ae *= 1000; in bq27xxx_battery_read_energy() 573 return ae; in bq27xxx_battery_read_energy()
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 55 .long R(3d, 93, 93, ae), R(4c, 26, 26, 6a) 133 .long R(47, ae, ae, e9), R(10, 08, 08, 18) 147 .long R(ae, 57, 57, f9), R(69, b9, b9, d0) 191 .long R(b1, 64, 77, e0), R(bb, 6b, ae, 84) 210 .long R(dd, 3e, 05, ae), R(4d, e6, bd, 46) 222 .long R(3d, ae, d5, 1e), R(36, 2d, 39, 27) 242 .long R(ae, f9, 32, 11), R(c7, 29, a1, 6d)
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/magnetometer/ |
D | bmc150_magn.txt | 3 http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
|
/linux-4.4.14/scripts/ |
D | depmod.sh | 53 set -- -ae -F System.map
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/accel/ |
D | bma180.txt | 4 http://ae-bst.resource.bosch.com/media/products/dokumente/bma250/bst-bma250-ds002-05.pdf
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | fplsp.sa | 72 dc.l $120002ae,$00ff00ff,$ff644280,$102eff63 101 dc.l $00006a9e,$1d40ff4e,$120002ae,$00ff00ff 131 dc.l $120002ae,$00ff00ff,$ff644280,$102eff63 160 dc.l $000066ee,$1d40ff4e,$120002ae,$00ff00ff 190 dc.l $120002ae,$00ff00ff,$ff644280,$102eff63 219 dc.l $0000633e,$1d40ff4e,$120002ae,$00ff00ff 249 dc.l $120002ae,$00ff00ff,$ff644280,$102eff63 278 dc.l $00005f8e,$1d40ff4e,$120002ae,$00ff00ff 308 dc.l $120002ae,$00ff00ff,$ff644280,$102eff63 337 dc.l $00005bde,$1d40ff4e,$120002ae,$00ff00ff [all …]
|
D | itest.sa | 128 dc.l $61ff0000,$47704a00,$66ff0000,$479652ae 146 dc.l $468252ae,$ff784cfb,$3fff0170,$0000467e 245 dc.l $61ff0000,$40204a00,$66ff0000,$404652ae 422 dc.l $61ff0000,$35104a00,$66ff0000,$353652ae 451 dc.l $337252ae,$ff784cfb,$3fff0170,$0000336e 618 dc.l $290252ae,$ff784cfb,$3fff0170,$000028fe 627 dc.l $61ff0000,$28404a00,$66ff0000,$286652ae 677 dc.l $255252ae,$ff784cfb,$3fff0170,$0000254e 705 dc.l $61ff0000,$23604a00,$66ff0000,$238652ae 745 dc.l $61ff0000,$20e04a00,$66ff0000,$210652ae [all …]
|
D | pfpsp.sa | 670 dc.l $4080ff64,$41eeff6c,$604200ae,$01000000 997 dc.l $000083ae,$ff642f02,$f22ef080,$ff84322e 1042 dc.l $ff84f200,$a800f23c,$90000000,$000081ae 1056 dc.l $a800f23c,$90000000,$000083ae,$ff64122e 1068 dc.l $ff84f201,$a800f23c,$90000000,$000083ae 1130 dc.l $ff84f201,$a800f23c,$90000000,$000083ae 1199 dc.l $ff84f201,$a800f23c,$90000000,$000083ae 1304 dc.l $90000000,$000083ae,$ff64122e,$ff620201 1463 dc.l $000083ae,$ff642f02,$f22ef080,$ff84322e 1489 dc.l $a800f23c,$90000000,$000083ae,$ff64f200 [all …]
|
D | ftest.sa | 54 dc.l $00001288,$4a0066ff,$000012ae,$61ff0000
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/ |
D | dma.c | 728 u32 ae; in dma64_dd_upd() local 730 ae = (pa & PCI32ADDR_HIGH) >> PCI32ADDR_HIGH_SHIFT; in dma64_dd_upd() 733 ctrl2 |= (ae << D64_CTRL2_AE_SHIFT) & D64_CTRL2_AE; in dma64_dd_upd() 798 u32 ae; in _dma_ddtable_init() local 801 ae = (pa & PCI32ADDR_HIGH) >> PCI32ADDR_HIGH_SHIFT; in _dma_ddtable_init() 810 D64_XC_AE, (ae << D64_XC_AE_SHIFT)); in _dma_ddtable_init() 817 D64_RC_AE, (ae << D64_RC_AE_SHIFT)); in _dma_ddtable_init()
|
/linux-4.4.14/net/mac80211/ |
D | mesh_hwmp.c | 24 static inline u32 u32_field_get(const u8 *preq_elem, int offset, bool ae) in u32_field_get() argument 26 if (ae) in u32_field_get() 31 static inline u16 u16_field_get(const u8 *preq_elem, int offset, bool ae) in u16_field_get() argument 33 if (ae) in u16_field_get()
|
/linux-4.4.14/drivers/s390/char/ |
D | defkeymap.map | 32 keycode 28 = nul ae
|
/linux-4.4.14/drivers/scsi/csiostor/ |
D | csio_lnode.c | 243 struct fc_fdmi_attr_entry *ae = (struct fc_fdmi_attr_entry *)*ptr; in csio_append_attrib() local 244 ae->type = htons(type); in csio_append_attrib() 247 ae->len = htons(len); in csio_append_attrib() 248 memcpy(ae->value, val, len); in csio_append_attrib()
|
/linux-4.4.14/Documentation/scsi/ |
D | aacraid.txt | 113 9005:0286:9005:02ae (Aurora Lite ARK)
|
/linux-4.4.14/drivers/tty/vt/ |
D | cp437.uni | 101 0x52 U+0052 U+00ae
|
/linux-4.4.14/drivers/scsi/ibmvscsi/ |
D | ibmvfc.h | 547 enum ibmvfc_async_event ae; member
|
D | ibmvfc.c | 2589 static const struct ibmvfc_async_desc *ibmvfc_get_ae_desc(u64 ae) in ibmvfc_get_ae_desc() argument 2594 if (ae_desc[i].ae == ae) in ibmvfc_get_ae_desc()
|
/linux-4.4.14/net/wireless/ |
D | util.c | 398 int ae = meshhdr->flags & MESH_FLAGS_AE; in ieee80211_get_mesh_hdrlen() local 400 switch (ae) { in ieee80211_get_mesh_hdrlen()
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
D | x86-opcode-map.txt | 220 ae: SCAS/B AL,Yb 519 ae: Grp15 (1A),(1C) 726 ae: vfnmsub213ps/d Vx,Hx,Wx (66),(v)
|
/linux-4.4.14/arch/x86/lib/ |
D | x86-opcode-map.txt | 220 ae: SCAS/B AL,Yb 519 ae: Grp15 (1A),(1C) 726 ae: vfnmsub213ps/d Vx,Hx,Wx (66),(v)
|
/linux-4.4.14/Documentation/video4linux/ |
D | gspca.txt | 86 zc3xx 046d:08ae Logitech QuickCam for Notebooks
|