/linux-4.4.14/fs/udf/ |
D | truncate.c | 30 struct kernel_lb_addr *eloc, int8_t etype, uint32_t elen, in extent_trunc() argument 40 if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) { in extent_trunc() 43 etype = (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30); in extent_trunc() 46 nelen = (etype << 30) | nelen; in extent_trunc() 52 if (etype == (EXT_RECORDED_ALLOCATED >> 30)) in extent_trunc() 55 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) in extent_trunc() 73 int8_t etype = -1, netype; in udf_truncate_tail_extent() local 93 etype = netype; in udf_truncate_tail_extent() 106 extent_trunc(inode, &epos, &eloc, etype, elen, nelen); in udf_truncate_tail_extent() 127 int8_t etype = -1, netype; in udf_discard_prealloc() local [all …]
|
D | balloc.c | 358 int8_t etype; in udf_table_free_blocks() local 384 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { in udf_table_free_blocks() 393 elen = (etype << 30) | in udf_table_free_blocks() 396 elen = (etype << 30) | in udf_table_free_blocks() 411 elen = (etype << 30) | in udf_table_free_blocks() 415 elen = (etype << 30) | in udf_table_free_blocks() 584 int8_t etype = -1; in udf_table_prealloc_blocks() local 605 (etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { in udf_table_prealloc_blocks() 620 (etype << 30) | elen, 1); in udf_table_prealloc_blocks() 623 (etype << 30) | elen); in udf_table_prealloc_blocks() [all …]
|
D | inode.c | 605 int8_t etype; in udf_extend_file() local 620 etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset); in udf_extend_file() 624 if (etype != -1) in udf_extend_file() 642 etype = udf_next_aext(inode, &epos, &extent.extLocation, in udf_extend_file() 644 extent.extLength |= etype << 30; in udf_extend_file() 668 int8_t etype; in inode_getblk() local 705 etype = udf_next_aext(inode, &next_epos, &eloc, &elen, 1); in inode_getblk() 706 if (etype == -1) in inode_getblk() 711 laarr[c].extLength = (etype << 30) | elen; in inode_getblk() 714 if (etype != (EXT_NOT_RECORDED_NOT_ALLOCATED >> 30)) in inode_getblk() [all …]
|
D | super.c | 2417 int8_t etype; in udf_count_free_table() local 2425 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) in udf_count_free_table()
|
/linux-4.4.14/net/sunrpc/auth_gss/ |
D | gss_krb5_mech.c | 59 .etype = ENCTYPE_DES_CBC_RAW, 80 .etype = ENCTYPE_ARCFOUR_HMAC, 101 .etype = ENCTYPE_DES3_CBC_RAW, 122 .etype = ENCTYPE_AES128_CTS_HMAC_SHA1_96, 145 .etype = ENCTYPE_AES256_CTS_HMAC_SHA1_96, 170 supported_gss_krb5_enctype(int etype) in supported_gss_krb5_enctype() argument 174 if (supported_gss_krb5_enctypes[i].etype == etype) in supported_gss_krb5_enctype() 180 get_gss_krb5_enctype(int etype) in get_gss_krb5_enctype() argument 184 if (supported_gss_krb5_enctypes[i].etype == etype) in get_gss_krb5_enctype()
|
/linux-4.4.14/kernel/trace/ |
D | trace_export.c | 163 #define FTRACE_ENTRY_REG(call, struct_name, etype, tstruct, print, filter,\ argument 178 .event.type = etype, \ 186 #define FTRACE_ENTRY(call, struct_name, etype, tstruct, print, filter) \ argument 187 FTRACE_ENTRY_REG(call, struct_name, etype, \
|
D | trace.h | 287 #define IF_ASSIGN(var, entry, etype, id) \ argument 288 if (FTRACE_CMP_TYPE(var, etype)) { \
|
/linux-4.4.14/tools/lib/traceevent/ |
D | parse-filter.c | 422 create_arg_exp(enum filter_exp_type etype) in create_arg_exp() argument 431 arg->op.type = etype; in create_arg_exp() 437 create_arg_cmp(enum filter_exp_type etype) in create_arg_cmp() argument 447 arg->op.type = etype; in create_arg_cmp() 666 enum filter_exp_type *etype) in process_op() argument 669 *etype = FILTER_EXP_NONE; in process_op() 684 *etype = FILTER_EXP_ADD; in process_op() 686 *etype = FILTER_EXP_SUB; in process_op() 688 *etype = FILTER_EXP_MUL; in process_op() 690 *etype = FILTER_EXP_DIV; in process_op() [all …]
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | bfa_cs.h | 47 #define bfa_fsm_state_decl(oc, st, otype, etype) \ argument 48 static void oc ## _sm_ ## st(otype * fsm, etype event); \
|
/linux-4.4.14/include/ras/ |
D | ras_event.h | 37 __field(u8, etype) 49 __entry->etype = mem->error_type; 51 __entry->etype = ~0; 70 cper_mem_err_type_str(__entry->etype),
|
/linux-4.4.14/drivers/firmware/efi/ |
D | cper.c | 203 const char *cper_mem_err_type_str(unsigned int etype) in cper_mem_err_type_str() argument 205 return etype < ARRAY_SIZE(mem_err_type_strs) ? in cper_mem_err_type_str() 206 mem_err_type_strs[etype] : "unknown"; in cper_mem_err_type_str() 331 u8 etype = mem->error_type; in cper_print_mem() local 332 printk("%s""error_type: %d, %s\n", pfx, etype, in cper_print_mem() 333 cper_mem_err_type_str(etype)); in cper_print_mem()
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_cs.h | 227 #define bfa_sm_state_decl(oc, st, otype, etype) \ argument 228 static void oc ## _sm_ ## st(otype * fsm, etype event) 256 #define bfa_fsm_state_decl(oc, st, otype, etype) \ argument 257 static void oc ## _sm_ ## st(otype * fsm, etype event); \
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_driver.c | 456 u32 eflags, etype, tlen, i = 0, updegr = 0, crcs = 0; in qib_kreceive() local 479 etype = qib_hdrget_rcv_type(rhf_addr); in qib_kreceive() 485 (etype != RCVHQ_RCV_TYPE_EXPECTED)) { in qib_kreceive() 489 etype >= RCVHQ_RCV_TYPE_NON_KD) { in qib_kreceive() 502 if (etype == RCVHQ_RCV_TYPE_NON_KD && !eflags && in qib_kreceive() 516 else if (etype == RCVHQ_RCV_TYPE_NON_KD) { in qib_kreceive()
|
/linux-4.4.14/arch/m68k/include/asm/ |
D | bootstd.h | 115 #define _bsc5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ argument 116 type name(atype a, btype b, ctype c, dtype d, etype e) \
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | trace.h | 66 #define packettype_name(etype) { RHF_RCV_TYPE_##etype, #etype } argument 67 #define show_packettype(etype) \ argument 68 __print_symbolic(etype, \ 82 u32 etype, 87 TP_ARGS(dd, ctxt, eflags, etype, hlen, tlen, updegr, etail), 92 __field(u32, etype) 102 __entry->etype = etype; 113 __entry->etype, show_packettype(__entry->etype),
|
D | driver.c | 574 u32 etype = rhf_rcv_type(rhf), qpn; in prescan_rxq() local 581 if (etype != RHF_RCV_TYPE_IB) in prescan_rxq() 628 packet->etype = rhf_rcv_type(packet->rhf); in process_rcv_packet() 655 packet->rcd->dd->rhf_rcv_function_map[packet->etype](packet); in process_rcv_packet()
|
D | hfi.h | 344 u8 etype; member
|
/linux-4.4.14/drivers/staging/rdma/ipath/ |
D | ipath_driver.c | 1161 u32 eflags, i, etype, tlen, pkttot = 0, updegr = 0, reloop = 0; in ipath_kreceive() local 1184 etype = ipath_hdrget_rcv_type(rhf_addr); in ipath_kreceive() 1190 (etype != RCVHQ_RCV_TYPE_EXPECTED)) { in ipath_kreceive() 1201 etype == RCVHQ_RCV_TYPE_NON_KD) in ipath_kreceive() 1210 if (etype != RCVHQ_RCV_TYPE_NON_KD && in ipath_kreceive() 1211 etype != RCVHQ_RCV_TYPE_ERROR && in ipath_kreceive() 1215 "%x\n", etype); in ipath_kreceive() 1219 else if (etype == RCVHQ_RCV_TYPE_NON_KD) { in ipath_kreceive() 1223 } else if (etype == RCVHQ_RCV_TYPE_EAGER) { in ipath_kreceive() 1228 etype, opcode, qp, tlen); in ipath_kreceive() [all …]
|
/linux-4.4.14/drivers/net/ethernet/neterion/vxge/ |
D | vxge-traffic.h | 2193 u64 etype); 2198 u64 *etype); 2203 u64 *etype); 2208 u64 etype);
|
/linux-4.4.14/arch/s390/mm/ |
D | pgtable.c | 116 unsigned long etype, atype; in gmap_alloc() local 121 etype = _SEGMENT_ENTRY_EMPTY; in gmap_alloc() 125 etype = _REGION3_ENTRY_EMPTY; in gmap_alloc() 129 etype = _REGION2_ENTRY_EMPTY; in gmap_alloc() 133 etype = _REGION1_ENTRY_EMPTY; in gmap_alloc() 149 crst_table_init(table, etype); in gmap_alloc()
|
/linux-4.4.14/include/linux/sunrpc/ |
D | gss_krb5.h | 59 const u32 etype; /* encryption (key) type */ member
|
/linux-4.4.14/drivers/s390/net/ |
D | qeth_l3_main.c | 2274 struct qeth_arp_entrytype *etype; in qeth_l3_arp_query_cb() local 2277 etype = &((struct qeth_arp_qi_entry5 *) cur_entry)->type; in qeth_l3_arp_query_cb() 2278 if (!arpentry_matches_prot(etype, cmd->hdr.prot_version)) { in qeth_l3_arp_query_cb() 2280 QETH_CARD_TEXT_(card, 4, "%i", etype->ip); in qeth_l3_arp_query_cb() 2283 esize = get_arp_entry_size(card, qdata, etype, in qeth_l3_arp_query_cb()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/ |
D | i40e_adminq_cmd.h | 1171 __le16 etype; member
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_adminq_cmd.h | 1174 __le16 etype; member
|
D | i40e_common.c | 3801 cmd->etype = cpu_to_le16(ethtype); in i40e_aq_add_rem_control_packet_filter()
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
D | cnic_defs.h | 443 u16 etype; member 445 u16 etype; member
|
D | cnic.c | 3407 l4kwqe->etype = ETH_P_IP; in cnic_cm_offload_pg()
|
/linux-4.4.14/drivers/scsi/qla2xxx/ |
D | qla_mr.c | 2680 struct sts_entry_fx00 *pkt, uint8_t estatus, uint8_t etype) in qlafx00_error_entry() argument
|