Home
last modified time | relevance | path

Searched refs:block (Results 1 – 20 of 20) sorted by relevance

/third_party/uapp/fsck-msdosfs/
A Dboot.c43 if ((size_t)read(dosfs, block, sizeof block) != sizeof block) { in readboot()
48 if (block[510] != 0x55 || block[511] != 0xaa) { in readboot()
50 block[511], block[510]); in readboot()
67 boot->bpbHeads = block[26] + (block[27] << 8); in readboot()
69 (block[30] << 16) + (block[31] << 24); in readboot()
71 (block[34] << 16) + (block[35] << 24); in readboot()
78 boot->FATsecs = block[36] + (block[37] << 8) in readboot()
79 + (block[38] << 16) + (block[39] << 24); in readboot()
84 if (block[42] || block[43]) { in readboot()
87 block[43], block[42]); in readboot()
[all …]
/third_party/ulib/jemalloc/src/
A Dbase.c153 base_block_t *block; in base_block_alloc() local
162 if (block == NULL) in base_block_alloc()
165 block->next = NULL; in base_block_alloc()
169 return (block); in base_block_alloc()
180 base_block_t *block; in base_extent_alloc() local
186 if (block == NULL) in base_extent_alloc()
211 base_block_t *block; in base_new() local
217 if (block == NULL) in base_new()
227 base_unmap(extent_hooks, ind, block, block->size); in base_new()
254 next = block->next; in base_delete()
[all …]
A Dtsd.c167 tsd_init_check_recursion(tsd_init_head_t *head, tsd_init_block_t *block) in tsd_init_check_recursion() argument
181 ql_elm_new(block, link); in tsd_init_check_recursion()
182 block->thread = self; in tsd_init_check_recursion()
183 ql_tail_insert(&head->blocks, block, link); in tsd_init_check_recursion()
189 tsd_init_finish(tsd_init_head_t *head, tsd_init_block_t *block) in tsd_init_finish() argument
192 ql_remove(&head->blocks, block, link); in tsd_init_finish()
/third_party/ulib/uboringssl/crypto/fipsmodule/modes/
A Dinternal.h119 block128_f block);
165 block128_f block; member
269 block128_f block; member
278 block128_f block, ctr128_f ctr, unsigned M, unsigned L);
314 block128_f block);
322 block128_f block);
334 block128_f block);
345 int enc, block128_f block);
352 unsigned *num, int enc, block128_f block);
359 unsigned *num, int enc, block128_f block);
[all …]
A Dgcm.c425 gcm_key->block = block; in CRYPTO_gcm128_init_key()
429 (*block)(ghash_key, ghash_key, aes_key); in CRYPTO_gcm128_init_key()
560 block128_f block = ctx->gcm_key.block; in CRYPTO_gcm128_encrypt() local
622 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_encrypt()
639 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_encrypt()
654 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_encrypt()
669 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_encrypt()
687 block128_f block = ctx->gcm_key.block; in CRYPTO_gcm128_decrypt() local
755 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_decrypt()
786 (*block)(ctx->Yi.c, ctx->EKi.c, key); in CRYPTO_gcm128_decrypt()
[all …]
/third_party/ulib/uboringssl/
A Dzircon-unused.c18 uint8_t ivec[16], block128_f block) { in CRYPTO_cbc128_decrypt() argument
23 uint8_t ivec[16], block128_f block) { in CRYPTO_cbc128_encrypt() argument
28 uint8_t ivec[16], unsigned* num, int enc, block128_f block) { in CRYPTO_cfb128_encrypt() argument
34 block128_f block) { in CRYPTO_ctr128_encrypt() argument
45 uint8_t ivec[16], unsigned* num, block128_f block) { in CRYPTO_ofb128_encrypt() argument
/third_party/ulib/jemalloc/include/jemalloc/internal/
A Dtsd_externs.h15 tsd_init_block_t *block);
16 void tsd_init_finish(tsd_init_head_t *head, tsd_init_block_t *block);
A Dtsd_types.h463 tsd_init_block_t block; \
466 &block); \
471 block.data = (void *)wrapper; \
481 tsd_init_finish(&a_name##tsd_init_head, &block); \
/third_party/ulib/musl/src/crypt/
A Dencrypt.c28 void encrypt(char* block, int edflag) { in encrypt() argument
34 p = block; in encrypt()
52 p = block; in encrypt()
/third_party/uapp/dash/src/
A Dmkinit.c76 struct block *start;
77 struct block *last;
80 struct block { struct
81 struct block *next; argument
406 struct block *bp; in addchar()
427 struct block *bp; in writetext()
A Djobs.c1014 dowait(int block, struct job *job) in dowait() argument
1023 TRACE(("dowait(%d) called\n", block)); in dowait()
1063 } while (block); in dowait()
1141 waitproc(int block, int *status) in waitproc() argument
1144 int flags = block == DOWAIT_BLOCK ? 0 : WNOHANG; in waitproc()
1158 if (err || !block) in waitproc()
1161 block = 0; in waitproc()
A Dnodes.c.pat56 pointer funcblock; /* block to allocate function from */
57 char *funcstring; /* block to allocate strings from */
/third_party/ulib/uboringssl/include/openssl/
A Dsha.h95 OPENSSL_EXPORT void SHA1_Transform(SHA_CTX *sha, const uint8_t *block);
172 OPENSSL_EXPORT void SHA256_Transform(SHA256_CTX *sha, const uint8_t *block);
242 OPENSSL_EXPORT void SHA512_Transform(SHA512_CTX *sha, const uint8_t *block);
A Dmd4.h92 OPENSSL_EXPORT void MD4_Transform(MD4_CTX *md4, const uint8_t *block);
A Dmd5.h93 OPENSSL_EXPORT void MD5_Transform(MD5_CTX *md5, const uint8_t *block);
/third_party/ulib/uboringssl/crypto/fipsmodule/cipher/
A De_aes.c79 block128_f block; member
201 dat->block = aes_hw_decrypt; in aes_init_key()
208 dat->block = AES_decrypt; in aes_init_key()
212 dat->block = vpaes_decrypt; in aes_init_key()
216 dat->block = AES_decrypt; in aes_init_key()
221 dat->block = aes_hw_encrypt; in aes_init_key()
230 dat->block = AES_encrypt; in aes_init_key()
234 dat->block = vpaes_encrypt; in aes_init_key()
238 dat->block = AES_encrypt; in aes_init_key()
276 (*dat->block)(in + i, out + i, &dat->ks.ks); in aes_ecb_cipher()
[all …]
/third_party/lib/acpica/source/include/acpica/platform/
A Dacmsvc.h182 ..\..\source\os_specific\service_layers\oswinxf.c(701) : {937} normal block at 0x002E9190, 40 bytes…
/third_party/ulib/chromiumos-platform-ec/include/chromiumos-platform-ec/
A Dec_commands.h1432 uint8_t block[EC_VBNV_BLOCK_SIZE]; member
1436 uint8_t block[EC_VBNV_BLOCK_SIZE]; member
/third_party/ulib/musl/ldso/
A Ddynlink.c222 void* block = (void*)alloc_ptr; in dl_alloc() local
225 return block; in dl_alloc()
/third_party/lib/acpica/
A Dchanges.txt756 such, can only be entered or displayed as a hex data block.
761 only be entered or displayed as a hex data block.
1584 2) There is not already a GPE block attached to the device.
5480 object from the module-level code block. Lin Ming.
7000 block
12780 fields that are used to determine the GPE block lengths. The
13139 block must be zero if the block is not supported. Another section
13321 block were not handled correctly. This resulted in a "GPE
13636 block below a Return() statement.
14094 aligned properly with the parent block.
[all …]

Completed in 72 milliseconds