Lines Matching refs:commandSize

1063        size_t commandSize;  in enet_protocol_handle_incoming_commands()  local
1074 commandSize = commandSizes [commandNumber]; in enet_protocol_handle_incoming_commands()
1075 …if (commandSize == 0 || currentData + commandSize > & host -> receivedData [host -> receivedDataLe… in enet_protocol_handle_incoming_commands()
1078 currentData += commandSize; in enet_protocol_handle_incoming_commands()
1318 size_t commandSize; in enet_protocol_send_unreliable_outgoing_commands() local
1321commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK… in enet_protocol_send_unreliable_outgoing_commands()
1325 peer -> mtu - host -> packetSize < commandSize || in enet_protocol_send_unreliable_outgoing_commands()
1327 peer -> mtu - host -> packetSize < commandSize + outgoingCommand -> fragmentLength)) in enet_protocol_send_unreliable_outgoing_commands()
1371 buffer -> dataLength = commandSize; in enet_protocol_send_unreliable_outgoing_commands()
1469 size_t commandSize; in enet_protocol_send_reliable_outgoing_commands() local
1516commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK… in enet_protocol_send_reliable_outgoing_commands()
1519 peer -> mtu - host -> packetSize < commandSize || in enet_protocol_send_reliable_outgoing_commands()
1521 …(enet_uint16) (peer -> mtu - host -> packetSize) < (enet_uint16) (commandSize + outgoingCommand ->… in enet_protocol_send_reliable_outgoing_commands()
1553 buffer -> dataLength = commandSize; in enet_protocol_send_reliable_outgoing_commands()