Searched refs:st32 (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | sha2.c | 318 memcpy(context->state.st32, sha224_initial_hash_value, 342 BE_32_TO_8(digest + i * 4, context->state.st32[i]); 344 memcpy(digest, context->state.st32, SHA224_DIGEST_LENGTH); 356 memcpy(context->state.st32, sha256_initial_hash_value, in SHA256Init() 542 SHA256Transform(context->state.st32, context->buffer); in SHA256Update() 554 SHA256Transform(context->state.st32, data); in SHA256Update() 589 SHA256Transform(context->state.st32, context->buffer); in SHA256Pad() 606 SHA256Transform(context->state.st32, context->buffer); in SHA256Pad() 623 BE_32_TO_8(digest + i * 4, context->state.st32[i]); in SHA256Final() 625 memcpy(digest, context->state.st32, SHA256_DIGEST_LENGTH); in SHA256Final()
|
H A D | sha2.h | 68 u_int32_t st32[8]; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYInstrFormats.td | 14 def AddrMode32B : AddrMode<1>; // ld32.b, ld32.bs, st32.b, st32.bs, +4kb 15 def AddrMode32H : AddrMode<2>; // ld32.h, ld32.hs, st32.h, st32.hs, +8kb 16 def AddrMode32WD : AddrMode<3>; // ld32.w, st32.w, ld32.d, st32.d, +16kb 243 // Instructions(4): st32.b, st32.h, st32.w
|
H A D | CSKYInstrInfo.td | 690 def ST32B : I_ST<AddrMode32B, 0x0, "st32.b", uimm12>; 691 def ST32H : I_ST<AddrMode32H, 0x1, "st32.h", uimm12_1>; 692 def ST32W : I_ST<AddrMode32WD, 0x2, "st32.w", uimm12_2>; 695 def ST32D : I_ST<AddrMode32WD, 0x3, "st32.d", uimm12_2>;
|