HomeSort by: relevance | last modified time | path
    Searched defs:block (Results 1 - 25 of 1302) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/
udivmodsi4.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ define
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(26
    [all...]
udivsi3.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ define
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(26
    [all...]
umodsi3.S 55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ define
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(26
    [all...]
udivmodsi4.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ define
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(26
    [all...]
udivsi3.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ define
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(26
    [all...]
umodsi3.S 55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ define
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(26
    [all...]
  /src/sys/dev/hdaudio/
hdafg_dd.c 50 struct eld_baseline_block *block = &hdi->eld; local
59 if (datalen < sizeof(block->header)) {
66 memcpy(&block->header, data, sizeof(block->header));
67 data += sizeof(block->header);
68 datalen -= sizeof(block->header);
70 if (datalen < block->header.baseline_eld_len * 4 ||
71 datalen < sizeof(*block) - sizeof(block->header)) {
78 datalen = block->header.baseline_eld_len * 4
    [all...]
hdafg_dd.c 50 struct eld_baseline_block *block = &hdi->eld; local
59 if (datalen < sizeof(block->header)) {
66 memcpy(&block->header, data, sizeof(block->header));
67 data += sizeof(block->header);
68 datalen -= sizeof(block->header);
70 if (datalen < block->header.baseline_eld_len * 4 ||
71 datalen < sizeof(*block) - sizeof(block->header)) {
78 datalen = block->header.baseline_eld_len * 4
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa2012/ref/
stream_salsa2012_ref.c 18 unsigned char block[64]; local
47 crypto_core_salsa2012(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local
82 crypto_core_salsa2012(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa2012(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
stream_salsa2012_ref.c 18 unsigned char block[64]; local
47 crypto_core_salsa2012(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local
82 crypto_core_salsa2012(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa2012(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa208/ref/
stream_salsa208_ref.c 18 unsigned char block[64]; local
47 crypto_core_salsa208(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local
82 crypto_core_salsa208(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa208(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
stream_salsa208_ref.c 18 unsigned char block[64]; local
47 crypto_core_salsa208(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local
82 crypto_core_salsa208(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa208(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
e_camellia.c 29 block128_f block; member in struct:__anon2032
90 dat->block = (block128_f) cmll_t4_decrypt;
106 dat->block = (block128_f) cmll_t4_encrypt;
228 dat->block = (block128_f) Camellia_decrypt;
232 dat->block = (block128_f) Camellia_encrypt;
251 EVP_CIPHER_CTX_iv_noconst(ctx), dat->block);
254 EVP_CIPHER_CTX_iv_noconst(ctx), dat->block);
270 (*dat->block) (in + i, out + i, &dat->ks);
282 EVP_CIPHER_CTX_iv_noconst(ctx), &num, dat->block);
294 EVP_CIPHER_CTX_iv_noconst(ctx), &num, EVP_CIPHER_CTX_encrypting(ctx), dat->block);
    [all...]
e_camellia.c 29 block128_f block; member in struct:__anon2032
90 dat->block = (block128_f) cmll_t4_decrypt;
106 dat->block = (block128_f) cmll_t4_encrypt;
228 dat->block = (block128_f) Camellia_decrypt;
232 dat->block = (block128_f) Camellia_encrypt;
251 EVP_CIPHER_CTX_iv_noconst(ctx), dat->block);
254 EVP_CIPHER_CTX_iv_noconst(ctx), dat->block);
270 (*dat->block) (in + i, out + i, &dat->ks);
282 EVP_CIPHER_CTX_iv_noconst(ctx), &num, dat->block);
294 EVP_CIPHER_CTX_iv_noconst(ctx), &num, EVP_CIPHER_CTX_encrypting(ctx), dat->block);
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
nxt.h 34 uint8_t block = (uint8_t)(code / 8), highest_block = block; local
36 memset(rdata->octets, 0, block + 1);
37 rdata->octets[block] = (uint8_t)(1 << (7 - bit));
44 block = (uint8_t)(code / 8);
45 if (block > highest_block) {
46 memset(&rdata->octets[highest_block+1], 0, block - highest_block);
47 highest_block = block;
49 rdata->octets[block] |= 1 << (7 - bit);
nxt.h 34 uint8_t block = (uint8_t)(code / 8), highest_block = block; local
36 memset(rdata->octets, 0, block + 1);
37 rdata->octets[block] = (uint8_t)(1 << (7 - bit));
44 block = (uint8_t)(code / 8);
45 if (block > highest_block) {
46 memset(&rdata->octets[highest_block+1], 0, block - highest_block);
47 highest_block = block;
49 rdata->octets[block] |= 1 << (7 - bit);
  /src/external/gpl2/libmalloc/dist/
malloc-find.c 3 /* Find the starting address of a malloc'd block, from anywhere inside it.
36 __malloc_size_t block = BLOCK (ptr); local
37 int type = _heapinfo[block].busy.type;
42 __malloc_ptrdiff_t sizevalue = _heapinfo[block].busy.info.size;
47 block += sizevalue;
49 /* BLOCK is now the first block of the object.
51 return ADDRESS (block);
55 /* Get the size of fragments in this block. *
    [all...]
malloc-find.c 3 /* Find the starting address of a malloc'd block, from anywhere inside it.
36 __malloc_size_t block = BLOCK (ptr); local
37 int type = _heapinfo[block].busy.type;
42 __malloc_ptrdiff_t sizevalue = _heapinfo[block].busy.info.size;
47 block += sizevalue;
49 /* BLOCK is now the first block of the object.
51 return ADDRESS (block);
55 /* Get the size of fragments in this block. *
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
scm-frame.c 11 int block (void) function
21 return 0; /* Block break here. */
28 block ();
scm-frame.c 11 int block (void) function
21 return 0; /* Block break here. */
28 block ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-frame.c 11 int block (void) function
21 return 0; /* Block break here. */
28 block ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/
scm-frame.c 11 int block (void) function
21 return 0; /* Block break here. */
28 block ();
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-frame.c 11 int block (void) function
21 return 0; /* Block break here. */
28 block ();
  /src/external/mit/isl/dist/
isl_vec_private.h 17 struct isl_blk block; member in struct:isl_vec
  /src/external/public-domain/xz/dist/src/liblzma/common/
stream_buffer_encoder.c 28 // Get the maximum possible size of a Block.
59 // getting too big and still being accepted with LZMA_OK, and Block
88 // Encode a Block but only if there is at least one byte of input.
89 lzma_block block = { local
96 return_if_error(lzma_block_buffer_encode(&block, allocator,
112 lzma_block_unpadded_size(&block),
113 block.uncompressed_size);

Completed in 79 milliseconds

1 2 3 4 5 6 7 8 91011>>