HomeSort by: relevance | last modified time | path
    Searched defs:msbs (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_encoders.c 230 uint32_t msbs, mask; local
239 * none of the other bits may be set. First, select all the MSBs.
241 msbs = v & 0x88888888u;
243 mask = (msbs >> 1) | (msbs >> 2) | (msbs >> 3);
327 uint32_t msbs, mask; local
339 * First, select all the MSBs (Use octal representation for the mask)
341 msbs = v & 044444444;
343 mask = (msbs >> 1) | (msbs >> 2)
    [all...]
ml_dsa_encoders.c 230 uint32_t msbs, mask; local
239 * none of the other bits may be set. First, select all the MSBs.
241 msbs = v & 0x88888888u;
243 mask = (msbs >> 1) | (msbs >> 2) | (msbs >> 3);
327 uint32_t msbs, mask; local
339 * First, select all the MSBs (Use octal representation for the mask)
341 msbs = v & 044444444;
343 mask = (msbs >> 1) | (msbs >> 2)
    [all...]
  /src/external/public-domain/sqlite/dist/
shell.c 9065 int msbs = 8 * (APND_MARK_FOS_SZ-1); local
9072 iMark = ((sqlite3_int64)(a[APND_MARK_PREFIX_SZ] & 0x7f)) << msbs;
9074 msbs -= 8;
9075 iMark |= (sqlite3_int64)a[APND_MARK_PREFIX_SZ+i]<<msbs;
shell.c 9065 int msbs = 8 * (APND_MARK_FOS_SZ-1); local
9072 iMark = ((sqlite3_int64)(a[APND_MARK_PREFIX_SZ] & 0x7f)) << msbs;
9074 msbs -= 8;
9075 iMark |= (sqlite3_int64)a[APND_MARK_PREFIX_SZ+i]<<msbs;

Completed in 116 milliseconds