Home
last modified time | relevance | path

Searched refs:Length_High (Results 1 – 2 of 2) sorted by relevance

/third_party/openh264/test/api/
Dsha1.c96 context->Length_High = 0; in SHA1Reset()
196 context->Length_High++; in SHA1Input()
198 context->Length_High &= 0xFFFFFFFF; in SHA1Input()
199 if (context->Length_High == 0) in SHA1Input()
389 context->Message_Block[56] = (context->Length_High >> 24) & 0xFF; in SHA1PadMessage()
390 context->Message_Block[57] = (context->Length_High >> 16) & 0xFF; in SHA1PadMessage()
391 context->Message_Block[58] = (context->Length_High >> 8) & 0xFF; in SHA1PadMessage()
392 context->Message_Block[59] = (context->Length_High) & 0xFF; in SHA1PadMessage()
/third_party/openh264/test/
Dsha1.h61 unsigned Length_High; /* Message length in bits */ member