Home
last modified time | relevance | path

Searched refs:read32_le (Results 1 – 14 of 14) sorted by relevance

/dports/www/h2o-devel/h2o-dcc7134/deps/picotls/deps/cifra/src/
H A Dsalsa20.c45 x1 = z1 = read32_le(key0 + 0), in cf_salsa20_core()
46 x2 = z2 = read32_le(key0 + 4), in cf_salsa20_core()
47 x3 = z3 = read32_le(key0 + 8), in cf_salsa20_core()
48 x4 = z4 = read32_le(key0 + 12), in cf_salsa20_core()
50 x6 = z6 = read32_le(nonce + 0), in cf_salsa20_core()
51 x7 = z7 = read32_le(nonce + 4), in cf_salsa20_core()
52 x8 = z8 = read32_le(nonce + 8), in cf_salsa20_core()
55 xb = zb = read32_le(key1 + 0), in cf_salsa20_core()
56 xc = zc = read32_le(key1 + 4), in cf_salsa20_core()
57 xd = zd = read32_le(key1 + 8), in cf_salsa20_core()
[all …]
H A Dchacha20.c36 x4 = z4 = read32_le(key0 + 0), in cf_chacha20_core()
37 x5 = z5 = read32_le(key0 + 4), in cf_chacha20_core()
38 x6 = z6 = read32_le(key0 + 8), in cf_chacha20_core()
39 x7 = z7 = read32_le(key0 + 12), in cf_chacha20_core()
40 x8 = z8 = read32_le(key1 + 0), in cf_chacha20_core()
41 x9 = z9 = read32_le(key1 + 4), in cf_chacha20_core()
42 xa = za = read32_le(key1 + 8), in cf_chacha20_core()
43 xb = zb = read32_le(key1 + 12), in cf_chacha20_core()
44 xc = zc = read32_le(nonce + 0), in cf_chacha20_core()
45 xd = zd = read32_le(nonce + 4), in cf_chacha20_core()
[all …]
H A Dnorx.c135 ctx->s[0] = read32_le(nonce + 0); in init()
136 ctx->s[1] = read32_le(nonce + 4); in init()
140 ctx->s[4] = read32_le(key + 0); in init()
141 ctx->s[5] = read32_le(key + 4); in init()
142 ctx->s[6] = read32_le(key + 8); in init()
143 ctx->s[7] = read32_le(key + 12); in init()
191 ctx->s[i] ^= read32_le(data); in input_block_final()
249 ctx->s[i] ^= read32_le(plain); in body_block_encrypt()
292 uint32_t ct = read32_le(cipher); in body_block_decrypt()
350 ctx->s[offset] = read32_le(tmp); in decrypt_body()
H A Dbitops.h65 static inline uint32_t read32_le(const uint8_t buf[4]) in read32_le() function
85 uint32_t hi = read32_le(buf + 4), in read64_le()
86 lo = read32_le(buf); in read64_le()
H A Dsha3.c83 uint32_t lo = read32_le(data + 0), in read64_bi()
84 hi = read32_le(data + 4); in read64_bi()
H A Dtestaes.c89 TEST_CHECK(read32_le(buf) == (end)); \ in test_bitops_incr()
/dports/audio/audiere/audiere-1.9.4/src/
H A Dinput_wav.cpp43 int riff_length = read32_le(riff_length_buffer); in initialize()
161 u32 chunk_length = read32_le(chunk_length_buffer); in findFormatChunk()
187 u32 samples_per_second = read32_le(chunk + 4); in findFormatChunk()
248 u32 chunk_length = read32_le(chunk_length_buffer); in findDataChunk()
H A Dutility.h94 inline u32 read32_le(const u8* b) { in read32_le() function
/dports/security/steghide/steghide-0.5.1/src/
H A DBmpFile.cc407 bmfh.bfSize = getBinIO()->read32_le() ; in readheaders()
410 bmfh.bfOffBits = getBinIO()->read32_le() ; in readheaders()
412 unsigned long tmpSize = getBinIO()->read32_le() ; in readheaders()
460 bmih.biWidth = getBinIO()->read32_le () ; in bmpwin_readheaders()
461 bmih.biHeight = getBinIO()->read32_le () ; in bmpwin_readheaders()
499 bmih.biCompression = getBinIO()->read32_le () ; in bmpwin_readheaders()
508 bmih.biSizeImage = getBinIO()->read32_le () ; in bmpwin_readheaders()
509 bmih.biXPelsPerMeter = getBinIO()->read32_le () ; in bmpwin_readheaders()
510 bmih.biYPelsPerMeter = getBinIO()->read32_le () ; in bmpwin_readheaders()
511 bmih.biClrUsed = getBinIO()->read32_le () ; in bmpwin_readheaders()
[all …]
H A DWavFormatChunk.cc38 SamplesPerSec = io->read32_le() ; in read()
39 AvgBytesPerSec = io->read32_le() ; in read()
H A DWavChunkHeader.cc42 ChunkLength = io->read32_le() ; in read()
H A DBinaryIO.h109 UWORD32 read32_le (void) ;
H A DBinaryIO.cc189 UWORD32 BinaryIO::read32_le (void) in read32_le() function in BinaryIO
H A DWavFile.cc316 riffchhdr = new WavChunkHeader ("RIFF", getBinIO()->read32_le()) ; in readheaders()