The LEB Plata is the third tier in the Spanish basketball league system, the second tier in the leagues organized by the Spanish Basketball Federation.
Each year, the winner and the runner-up of the league, promotes to LEB Oro. The last qualifieds are relegated to Liga EBA.
From 2000 to 2007, the league was known as LEB 2.
The Copa LEB Plata (LEB Plata Cup) is a championship played since 2001.
In the first editions, the three top teams in the first half season and an organizer team played the Cup in a Final Four format. Since 2009, the teams who play this cup are two first qualified in the half season, and it's hosted by the first qualified . The winner of the Copa LEB Plata will be the first team in the play-offs if it finishes between the second and the fifth at the final of the Regular Season.
Since 2009, the Copa Príncipe de Asturias is only played with the two top teams at the first half of the LEB Plata season
LEB may refer to:
The Liga Española de Baloncesto, also called LEB Oro is the second league of the Spanish basketball league system behind the ACB. It is run by the FEB. The Liga Española de Baloncesto is divided into two categories.
The LEB league was founded in 1996, and is played under FIBA rules. It was renamed LEB Oro in 2007.
Each team of has to play with all the other teams of its division twice, once at home and the other at the opponent's arena.
Each victory adds two points to the team in the league ranking, while each loss adds only one. At the end of the league:
At the half of the league, the two first teams in the table play the Copa Príncipe at home of the winner of the first half season. The Champion of this Cup will play the play-offs as first qualified if it finishes the league between the 2nd and the 5th qualified.
LEB128 or Little Endian Base 128 is a form of variable-length code compression used to store an arbitrarily large integer in a small number of bytes. LEB128 is used in the DWARF debug file format.
LEB128 format is very similar to variable-length quantity format; the primary difference is that LEB128 is little-endian whereas variable-length quantities are big-endian. Both allow small numbers to be stored in a single byte, while also allowing encoding of arbitrarily long numbers. There are 2 versions of LEB128: unsigned LEB128 and signed LEB128. The decoder must know whether the encoded value is unsigned LEB128 or signed LEB128.
To encode an unsigned number using unsigned LEB128 first represent the number in binary. Then zero extend the number up to a multiple of 7 bits (such that the most significant 7 bits are not all 0). Break the number up into groups of 7 bits. Output one encoded byte for each 7 bit group, from least significant to most significant group. Each byte will have the group in its 7 least significant bits. Set the most significant bit on each byte except the last byte. The number zero is encoded as a single byte 0x00.