Home
last modified time | relevance | path

Searched refs:bits (Results 1 – 24 of 24) sorted by relevance

/third_party/ulib/jemalloc/test/include/test/
A Dbtalloc.h2 void *btalloc(size_t size, unsigned bits);
5 void *btalloc_##n(size_t size, unsigned bits);
11 btalloc_##n(size_t size, unsigned bits) \
15 if (bits == 0) \
18 switch (bits & 0x1U) { \
20 p = (btalloc_0(size, bits >> 1)); \
23 p = (btalloc_1(size, bits >> 1)); \
/third_party/ulib/musl/src/internal/
A Dfloatscan.c76 int emax = -emin - bits + 3; in decfloat()
150 if (lrp == dc && dc < 10 && (bits > 30 || x[0] >> bits == 0)) in decfloat()
283 if (bits < 0) in decfloat()
284 bits = 0; in decfloat()
434 if (bits < 0) in hexfloat()
435 bits = 0; in hexfloat()
438 if (bits < LDBL_MANT_DIG) in hexfloat()
456 int bits; in __floatscan() local
462 bits = FLT_MANT_DIG; in __floatscan()
466 bits = DBL_MANT_DIG; in __floatscan()
[all …]
/third_party/ulib/jemalloc/src/
A Drtree.c15 rtree_new(rtree_t *rtree, unsigned bits) in rtree_new() argument
21 assert(bits > 0 && bits <= (sizeof(uintptr_t) << 3)); in rtree_new()
24 : (bits % RTREE_BITS_PER_LEVEL); in rtree_new()
25 if (bits > bits_in_leaf) { in rtree_new()
26 height = 1 + (bits - bits_in_leaf) / RTREE_BITS_PER_LEVEL; in rtree_new()
39 rtree->levels[0].cumbits = rtree->levels[0].bits; in rtree_new()
43 rtree->levels[i].bits = RTREE_BITS_PER_LEVEL; in rtree_new()
50 rtree->levels[height-1].bits = bits_in_leaf; in rtree_new()
51 rtree->levels[height-1].cumbits = bits; in rtree_new()
106 nchildren = ZU(1) << rtree->levels[level].bits; in rtree_delete_subtree()
[all …]
/third_party/ulib/uboringssl/crypto/fipsmodule/aes/
A Daes.c547 switch (bits) { in aes_nohw_set_encrypt_key()
567 if (bits == 128) { in aes_nohw_set_encrypt_key()
585 if (bits == 192) { in aes_nohw_set_encrypt_key()
605 if (bits == 256) { in aes_nohw_set_encrypt_key()
640 status = AES_set_encrypt_key(key, bits, aeskey); in aes_nohw_set_decrypt_key()
816 int aes_nohw_set_encrypt_key(const uint8_t *key, unsigned bits,
818 int aes_nohw_set_decrypt_key(const uint8_t *key, unsigned bits,
847 return aes_hw_set_encrypt_key(key, bits, aeskey); in AES_set_encrypt_key()
849 return aes_nohw_set_encrypt_key(key, bits, aeskey); in AES_set_encrypt_key()
855 return aes_hw_set_decrypt_key(key, bits, aeskey); in AES_set_decrypt_key()
[all …]
A Dinternal.h55 int aes_hw_set_encrypt_key(const uint8_t *user_key, const int bits,
57 int aes_hw_set_decrypt_key(const uint8_t *user_key, const int bits,
72 static int aes_hw_set_encrypt_key(const uint8_t *user_key, int bits, in aes_hw_set_encrypt_key() argument
77 static int aes_hw_set_decrypt_key(const uint8_t *user_key, int bits, in aes_hw_set_decrypt_key() argument
/third_party/ulib/jemalloc/test/src/
A Dbtalloc.c4 btalloc(size_t size, unsigned bits) in btalloc() argument
6 return (btalloc_0(size, bits)); in btalloc()
/third_party/ulib/uboringssl/include/openssl/
A Daes.h83 OPENSSL_EXPORT int AES_set_encrypt_key(const uint8_t *key, unsigned bits,
91 OPENSSL_EXPORT int AES_set_decrypt_key(const uint8_t *key, unsigned bits,
A Devp.h704 int bits);
/third_party/ulib/jemalloc/include/jemalloc/internal/
A Drtree_structs.h49 unsigned bits; member
A Drtree_externs.h6 bool rtree_new(rtree_t *rtree, unsigned bits);
A Drtree_inlines.h79 rtree->levels[level].bits) - 1)); in rtree_subkey()
A Djemalloc_internal.h.in217 * Flags bits:
/third_party/ulib/cryptolib/
A Dcryptolib.c130 #define _ROR(value, bits) (((value) >> (bits)) | ((value) << (32 - (bits)))) in _SHA256_transform() argument
131 #define _SHR(value, bits) ((value) >> (bits)) in _SHA256_transform() argument
240 #define _ROL(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) in _SHA1_transform() argument
/third_party/lib/jitterentropy/
A Djitterentropy-base.c126 unsigned int bits, unsigned int min) in jent_loop_shuffle() argument
131 unsigned int mask = (1<<bits) - 1; in jent_loop_shuffle()
144 for (i = 0; (DATA_SIZE_BITS / bits) > i; i++) { in jent_loop_shuffle()
146 time = time >> bits; in jent_loop_shuffle()
/third_party/uapp/dash/src/
A Dvar.c545 int bits = VSTRFIXED; in poplocalvars() local
549 bits |= VTEXTFIXED; in poplocalvars()
554 vp->flags &= ~bits; in poplocalvars()
555 vp->flags |= (lvp->flags & bits); in poplocalvars()
/third_party/ulib/jemalloc/include/jemalloc/
A Djemalloc_macros.h.in24 * Bias tcache index bits so that 0 encodes "automatic tcache management", and 1
30 * Bias arena index bits so that 0 encodes "use an automatically chosen arena".
/third_party/ulib/uboringssl/crypto/fipsmodule/modes/
A Dinternal.h357 void CRYPTO_cfb128_1_encrypt(const uint8_t *in, uint8_t *out, size_t bits,
/third_party/ulib/uboringssl/crypto/fipsmodule/cipher/
A De_aes.c157 int vpaes_set_encrypt_key(const uint8_t *userKey, int bits, AES_KEY *key);
158 int vpaes_set_decrypt_key(const uint8_t *userKey, int bits, AES_KEY *key);
172 static int vpaes_set_encrypt_key(const uint8_t *userKey, int bits, in vpaes_set_encrypt_key() argument
176 static int vpaes_set_decrypt_key(const uint8_t *userKey, int bits, in vpaes_set_decrypt_key() argument
/third_party/ulib/musl/
A DCOPYRIGHT108 (include/* and arch/*/bits/*) and crt files intended to be linked into
A DWHATSNEW7 sigset_t was wrongly defined as 1024 bytes instead of 1024 bits,
936 - support for large device minor numbers (greater than 8 bits)
989 - make install failed to install bits headers if make was not run first
/third_party/lib/acpica/tests/misc/
A Dbadcode.asl27 // Integer beyond the table integer size (32 bits)
A Dgrammar.asl1412 SMD0, 32, // 32-bits
1413 SMD1, 32, // 32-bits
1414 SMD2, 32, // 32-bits
1415 SMD3, 32 // 32-bits
4015 // Shift the bits to check the same
4717 // Check the stored single bits
4910 // Check the stored single bits
8085 SMD0, 32, // 32-bits
8086 SMD1, 32, // 32-bits
8087 SMD2, 32, // 32-bits
[all …]
/third_party/lib/acpica/
A Dchanges.txt2698 flags (was incorrectly 2 bits, should be 3).
5887 transfers. The Value parameter has been extended from 32 bits to 64 bits
6264 bits
8226 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on
10369 is truncated to 32 bits.
10388 function was still (internally) 32 bits instead of the required 64 bits.
12261 the active and edge/level bits.
13278 defined as 32 bits, but must be 16 bits according to the ACPI
14387 This field was 8 bits when it should be 64.
14724 Increased the maximum ASL Field size from 64K bits to 4G bits.
[all …]
/third_party/ulib/jemalloc/
A DChangeLog396 cache locality for the frequently accessed bits.

Completed in 59 milliseconds