7 writes to _unit
Microsoft.ML.Tokenizers.Tests (7)
src\Microsoft.ML.Tokenizers\Utils\DoubleArrayTrie.cs (7)
620
_unit
|= 1U << 8;
624
_unit
&= ~(1U << 8);
634
set =>
_unit
= value | (1U << 31);
644
_unit
= (_unit & ~0xFFU) | value;
659
_unit
&= (1U << 31) | (1U << 8) | 0xFF;
663
_unit
|= value << 10;
667
_unit
|= (value << 2) | (1U << 9);
6 references to _unit
Microsoft.ML.Tokenizers.Tests (6)
src\Microsoft.ML.Tokenizers\Utils\DoubleArrayTrie.cs (6)
615
get => ((
_unit
>> 8) & 1) == 1;
633
get =>
_unit
& ((1U << 31) - 1);
641
get =>
_unit
& ((1U << 31) | 0xFF);
644
_unit = (
_unit
& ~0xFFU) | value;
651
get => (
_unit
>> 10) << (int)((
_unit
& (1U << 9)) >> 6);