Lines Matching refs:byte

27 byte max_appl = MAX_APPL;
28 byte max_adapter = 0;
31 byte UnMapController(byte);
49 static byte ControllerMap[MAX_DESCRIPTORS + 1];
113 byte MapController(byte Controller) in MapController()
115 byte i; in MapController()
116 byte MappedController = 0; in MapController()
117 byte ctrl = Controller & 0x7f; /* mask external controller bit off */ in MapController()
121 MappedController = (byte) i; in MapController()
135 byte UnMapController(byte MappedController) in UnMapController()
137 byte Controller; in UnMapController()
138 byte ctrl = MappedController & 0x7f; /* mask external controller bit off */ in UnMapController()
225 void sendf(APPL *appl, word command, dword Id, word Number, byte *format, ...) in sendf()
229 byte *write; in sendf()
231 byte *string = NULL; in sendf()
241 appl->Id, command, (byte *) format)) in sendf()
245 if ((byte) (command >> 8) == 0x82) in sendf()
250 write = (byte *)&msg; in sendf()
258 *(byte *) write = (byte) (tmp & 0xff); in sendf()
276 string = va_arg(ap, byte *); in sendf()
290 ((byte *)&msg.info.data_b3_ind.Data_Length)); in sendf()
299 memcpy(write, (byte *)&msg, length); in sendf()
549 ControllerMap[card->Id] = (byte) (ctrl->cnr); in diva_add_card()
575 a->Id = (byte) card->Id; in diva_add_card()
642 ((byte *) new_li_config_table) + (((k * sizeof(LI_CONFIG) + 3) & ~3) + (2 * i) * ((k + 3) & ~3)); in diva_add_card()
644 …((byte *) new_li_config_table) + (((k * sizeof(LI_CONFIG) + 3) & ~3) + (2 * i + 1) * ((k + 3) & ~3… in diva_add_card()
825 this->MaxNCCI = (byte) nconn; in diva_register_appl()
826 this->MaxNCCIData = (byte) rp->datablkcnt; in diva_register_appl()
1012 DIVA_CAPI_ADAPTER *a = &(adapter[(byte) e->user[0]]); in DIRequest()