Home
last modified time | relevance | path

Searched refs:tbl_hdr (Results 1 – 8 of 8) sorted by relevance

/titanic_50/usr/src/uts/i86pc/os/
H A Dibft.c216 iscsi_ibft_hdr_checksum(iscsi_ibft_tbl_hdr_t *tbl_hdr) in iscsi_ibft_hdr_checksum() argument
223 if (tbl_hdr == NULL) { in iscsi_ibft_hdr_checksum()
227 length = tbl_hdr->Length; in iscsi_ibft_hdr_checksum()
228 start = (uchar_t *)tbl_hdr; in iscsi_ibft_hdr_checksum()
283 iscsi_parse_ibft_tbl(iscsi_ibft_tbl_hdr_t *tbl_hdr) in iscsi_parse_ibft_tbl() argument
290 if (tbl_hdr == NULL) { in iscsi_parse_ibft_tbl()
294 if (iscsi_ibft_hdr_checksum(tbl_hdr) != IBFT_STATUS_OK) { in iscsi_parse_ibft_tbl()
298 outbuf = (char *)tbl_hdr; in iscsi_parse_ibft_tbl()
309 (char *)tbl_hdr, in iscsi_parse_ibft_tbl()
310 (char *)tbl_hdr + in iscsi_parse_ibft_tbl()
/titanic_50/usr/src/cmd/geniconvtbl/
H A Ditm_comp.y51 itm_tbl_hdr_t *tbl_hdr; member
64 %type <tbl_hdr> def_element
66 %type <tbl_hdr> direction
82 %type <tbl_hdr> map
90 %type <tbl_hdr> operation
293 $$.tbl_hdr = $1;
299 $$.tbl_hdr = $1;
305 $$.tbl_hdr = $1;
312 itm_tbl_hdr_t *tbl_hdr; variable
314 tbl_hdr = obj_table(ITM_TBL_COND, $2,
[all …]
H A Ddisassemble.c448 itm_tbl_hdr_t *tbl_hdr; in dump_map() local
450 tbl_hdr = (itm_tbl_hdr_t *)ADDR(map_place); in dump_map()
452 switch (tbl_hdr->type) { in dump_map()
478 itm_tbl_hdr_t *tbl_hdr; in dump_map_i_f() local
489 tbl_hdr = (itm_tbl_hdr_t *)ADDR(map_place); in dump_map_i_f()
490 map_hdr = (itm_map_idx_fix_hdr_t *)(tbl_hdr + 1); in dump_map_i_f()
494 map_error = p + (map_hdr->result_len * (tbl_hdr->number)); in dump_map_i_f()
500 map_error = p + (map_hdr->result_len * (tbl_hdr->number)); in dump_map_i_f()
506 (0 == tbl_hdr->name.itm_ptr) && in dump_map_i_f()
513 if (0 == tbl_hdr->name.itm_ptr) { in dump_map_i_f()
[all …]
H A Dgeniconvtbl.c498 itm_tbl_hdr_t *tbl_hdr, in map_i_f() argument
513 map_hdr = (itm_map_idx_fix_hdr_t *)(tbl_hdr + 1); in map_i_f()
550 (map_hdr->result_len * (tbl_hdr->number))); in map_i_f()
563 (map_hdr->result_len * (tbl_hdr->number)) + in map_i_f()
598 itm_tbl_hdr_t *tbl_hdr, in map_l_f() argument
617 map_hdr = (itm_map_lookup_hdr_t *)(tbl_hdr + 1); in map_l_f()
628 for (low = 0, high = tbl_hdr->number; low < high; ) { in map_l_f()
655 p = map + (pair_size * tbl_hdr->number) + in map_l_f()
694 itm_tbl_hdr_t *tbl_hdr, in map_h_l() argument
719 map_hdr = (itm_map_hash_hdr_t *)(tbl_hdr + 1); in map_h_l()
[all …]
H A Dassemble.c680 itm_tbl_hdr_t *tbl_hdr; in analysis() local
682 tbl_hdr = (itm_tbl_hdr_t *)(ref->referencee); in analysis()
683 if ((ITM_TBL_OP_RESET == tbl_hdr->type) || in analysis()
684 (ITM_TBL_OP_INIT == tbl_hdr->type)) { in analysis()
687 (ITM_TBL_MASK & tbl_hdr->type)) && in analysis()
700 switch (ITM_TBL_MASK & tbl_hdr->type) { in analysis()
H A Ditmcomp.h195 itm_tbl_hdr_t *tbl_hdr; member
H A Ditm_util.c145 } else if (NULL != act && act->tbl_hdr != NULL) { in direction_unit()
146 direc->action.itm_ptr = (itm_place2_t)(act->tbl_hdr); in direction_unit()
148 (itm_data_t *)(act->tbl_hdr->name.itm_ptr), in direction_unit()
149 act->tbl_hdr, act->tbl_hdr->size, in direction_unit()
/titanic_50/usr/src/cmd/rpcgen/
H A Drpc_tblout.c57 static char tbl_hdr[] = "struct rpcgen_table %s_table[] = {\n"; variable
102 f_print(fout, tbl_hdr, progvers); in write_table()