HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 326 - 350 of 1844) sorted by null

<<11121314151617181920>>

  /external/boringssl/src/crypto/cipher_extra/
e_aesctrhmac.c 33 block128_f block; member in struct:aead_aes_ctr_hmac_sha256_ctx
41 uint8_t block[SHA256_CBLOCK]; local
42 OPENSSL_memcpy(block, hmac_key, hmac_key_len);
43 OPENSSL_memset(block + hmac_key_len, 0x36, sizeof(block) - hmac_key_len);
47 block[i] ^= 0x36;
51 SHA256_Update(out_inner, block, sizeof(block));
53 OPENSSL_memset(block + hmac_key_len, 0x5c, sizeof(block) - hmac_key_len)
    [all...]
e_chacha20poly1305.c 204 // |CRYPTO_chacha_20| uses a 32-bit block counter. Therefore we disallow
227 uint8_t block[64 /* kChaChaBlockSize */]; local
230 memset(block, 0, sizeof(block));
231 CRYPTO_chacha_20(block, block, sizeof(block), c20_ctx->key, nonce,
233 for (size_t i = offset; i < sizeof(block) && done < extra_in_len;
235 out_tag[done] = extra_in[done] ^ block[i];
276 // |CRYPTO_chacha_20| uses a 32-bit block counter. Therefore we disallo
    [all...]
  /external/boringssl/src/crypto/fipsmodule/modes/
internal.h 90 // block128_f is the type of a 128-bit, block cipher.
127 block128_f block; member in struct:gcm128_context
148 // |len| bytes from |in| to |out| using |block| in counter mode. There's no
156 block128_f block);
191 // CRYPTO_gcm128_init initialises |ctx| to use |block| (typically AES) with
192 // the given key. |is_aesni_encrypt| is one if |block| is |aesni_encrypt|.
194 block128_f block, int is_aesni_encrypt);
259 // given IV and block cipher in CBC mode. The input need not be a multiple of
263 const void *key, uint8_t ivec[16], block128_f block);
266 // given IV and block cipher in CBC mode. If |len| is not a multiple of 12
    [all...]
  /external/compiler-rt/lib/asan/
asan_mac.cc 133 typedef void (*dispatch_function_t)(void *block);
134 typedef void* (*worker_t)(void *block);
138 void *block; member in struct:__asan::__anon17124
158 void asan_dispatch_call_block_and_release(void *block) {
160 asan_block_context_t *context = (asan_block_context_t*)block;
164 block, pthread_self());
166 // Call the original dispatcher for the block.
167 context->func(context->block);
182 asan_ctxt->block = ctxt;
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 39 MD5_u32plus block[16]; member in struct:__tsan::__anon17217
  /external/curl/lib/
md4.c 59 MD4_u32plus block[16]; member in struct:__anon17348
98 (ctx->block[(n)] = \
104 (ctx->block[(n)])
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktRandomUniformBlockCase.cpp 23 * \brief Random uniform block layout case.
99 UniformBlock& block = m_interface.allocBlock(std::string("Block") + (char)('A' + m_blockNdx)); local
104 block.setArraySize(numInstances);
107 block.setInstanceName(std::string("block") + (char)('A' + m_blockNdx));
124 block.setFlags(layoutFlags);
127 generateUniform(rnd, block);
132 void RandomUniformBlockCase::generateUniform (de::Random& rnd, UniformBlock& block)
144 block.addUniform(Uniform(name, type, flags))
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureBorderClampTests.cpp 193 const deUint8 block[BLOCK_SIZE] = { 252, 253, 255, 255, 255, 255, 255, 255, 223, 251, 28, 206, 54, 251, 160, 174 }; local
197 deMemcpy((deUint8*)dst.getData() + ndx * BLOCK_SIZE, block, BLOCK_SIZE);
    [all...]
  /external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp 21 * \brief Random uniform block layout case.
87 UniformBlock& block = m_interface.allocBlock((string("Block") + (char)('A' + m_blockNdx)).c_str()); local
92 block.setArraySize(numInstances);
95 block.setInstanceName((string("block") + (char)('A' + m_blockNdx)).c_str());
115 block.setFlags(layoutFlags);
118 generateUniform(rnd, block);
139 void RandomUniformBlockCase::generateUniform (de::Random& rnd, UniformBlock& block)
151 block.addUniform(Uniform(name.c_str(), type, flags))
    [all...]
  /external/e2fsprogs/contrib/android/
base_fs.c 39 char *line = NULL, *saveptr1, *saveptr2, *block_range, *block; local
69 block = strtok_r(block_range, "-", &saveptr2);
70 if (!block)
72 range_start = atoll(block);
73 block = strtok_r(NULL, "-", &saveptr2);
74 range_end = block ? atoll(block) : range_start;
  /external/e2fsprogs/lib/ext2fs/
irel.h 13 blk64_t block; member in struct:ext2_inode_reference
63 * particular block/offset contains a reference to an inode)
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 14 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ColXpr;
15 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ConstColXpr;
17 typedef Block<Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowXpr;
18 typedef const Block<const Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowXpr;
19 /// \internal expression type of a block of whole columns */
20 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ColsBlockXpr;
21 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ConstColsBlockXpr;
22 /// \internal expression type of a block of whole rows */
23 typedef Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr;
24 typedef const Block<const Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXp (…)
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) function
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const function
780 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) function
788 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) const function
815 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, function
823 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, function
    [all...]
  /external/eigen/test/
block.cpp 20 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMin(s1), m1.cwiseMin(s1).block(r1,c1,r2-r1+1,c2-c1+1));
21 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMax(s1), m1.cwiseMax(s1).block(r1,c1,r2-r1+1,c2-c1+1));
33 template<typename MatrixType> void block(const MatrixType& m) function
68 // check nested block xpr on lhs
78 //check block()
81 RowVectorType br1(m1.block(r1,0,1,cols));
82 VectorType bc1(m1.block(0,c1,rows,1));
83 VERIFY_IS_EQUAL(b1, m1.block(r1,c1,1,1))
    [all...]
  /external/elfutils/libelf/
elf_compress.c 88 per 16 KB block, plus a one-time overhead of six bytes for the
98 /* Guess an output block size. 1/8th of the original Elf_Data plus
100 by a block (12.5%) when necessary. */
101 size_t block = (data->d_size / 8) + hsize; local
102 size_t out_size = 2 * block;
182 void *bigger = realloc (out_buf, out_size + block);
189 out_size += block;
  /external/elfutils/tests/
dwfllines.c 120 bool block; local
121 if (dwarf_lineblock (dw_line, &block) != 0)
146 ", pe: %d, eb: %d, block: %d"
149 dw_op_index, begin, end, pend, ebegin, block, isa, disc);
  /external/harfbuzz_ng/src/
gen-indic-table.py 158 def print_block (block, start, end, data):
160 if block and block != last_block:
163 print " /* %s */" % block
178 if block:
179 last_block = block
193 block = data[u][2] variable
197 while end in uu and block == data[end][2]:
214 print_block (block, start, end, data)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithMembers.java 220 * Add an initializer block ({@link InitializerDeclaration}) to this.
223 BlockStmt block = new BlockStmt(); local
224 InitializerDeclaration initializerDeclaration = new InitializerDeclaration(false, block);
226 return block;
230 * Add a static initializer block ({@link InitializerDeclaration}) to this.
233 BlockStmt block = new BlockStmt(); local
234 InitializerDeclaration initializerDeclaration = new InitializerDeclaration(true, block);
236 return block;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
NodeWithMembers.java 190 BlockStmt block = new BlockStmt(); local
191 InitializerDeclaration initializerDeclaration = new InitializerDeclaration(false, block);
194 return block;
198 BlockStmt block = new BlockStmt(); local
199 InitializerDeclaration initializerDeclaration = new InitializerDeclaration(true, block);
202 return block;
  /external/kotlinc/lib/
kotlin-stdlib-jdk7.jar 
  /external/libchrome/base/message_loop/
message_pump_glib.cc 22 // Return a timeout suitable for the glib loop, -1 to block forever,
45 // system. File descriptors can be attached to the sources. The poll may block
46 // if none of the Prepare calls returned TRUE. It will block indefinitely, or
71 // thing, respecting the timeout for the poll (and block, although it is
96 // would never block. Once the poll is finished, Check will be called.
220 // the pump block so that we can do some processing.
225 // We don't think we have work to do, but make sure not to block
238 // shouldn't block.
297 // will mean that we don't block on the message pump until there was nothing
298 // more to do. We also set this to true to make sure not to block on th
307 bool block = !more_work_is_plausible; local
    [all...]
  /external/ltp/testcases/kernel/io/writetest/
writetest.c 80 off_t block; local
89 for (block = 0; block < num_blocks; block++) {
92 tst_resm(TINFO, "Block: %lld/%lld (%3lld%%)\r",
93 (long long int)block,
95 (long long int)(block * 100 / num_blocks));
104 tst_resm(TINFO, "Block: %lld/%lld (%3lld%%)\r",
105 (long long int)block, (long long int)num_blocks,
106 (long long int)(block * 100 / num_blocks))
115 off_t block; local
    [all...]
  /external/lzma/C/
XzIn.c 105 CXzBlockSizes *block = &p->blocks[i]; local
106 READ_VARINT_AND_CHECK(buf, pos, size, &block->totalSize);
107 READ_VARINT_AND_CHECK(buf, pos, size, &block->unpackSize);
108 if (block->totalSize == 0)
  /external/mesa3d/src/amd/vulkan/
radv_meta_copy.c 31 return (VkExtent3D) { desc->block.width, desc->block.height, 1 };
35 * elements rather than texels. One element equals one texel or one block
42 const VkExtent3D block = meta_image_block_size(image); local
44 .width = DIV_ROUND_UP(extent->width , block.width),
45 .height = DIV_ROUND_UP(extent->height, block.height),
46 .depth = DIV_ROUND_UP(extent->depth , block.depth),
51 * elements rather than texels. One element equals one texel or one block
58 const VkExtent3D block = meta_image_block_size(image); local
60 .x = offset->x / block.width
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opt_dead_cf.c 138 nir_foreach_block_in_cf_node(block, node) {
139 nir_foreach_instr(instr, block) {
185 * dominates the block after the loop. If none of the definitions that
219 dead_cf_block(nir_block *block)
221 nir_if *following_if = nir_block_get_following_if(block);
233 nir_loop *following_loop = nir_block_get_following_loop(block);
245 ends_in_jump(nir_block *block)
247 if (exec_list_is_empty(&block->instr_list))
250 nir_instr *instr = nir_block_last_instr(block);
265 nir_block *block = nir_cf_node_as_block(cur) local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 43 * Insert a new block, right where builder is pointing to.
61 /* get current basic block */
64 /* check if there's another block after this one */
67 /* insert the new block before the next block */
71 /* append new block after current block */
81 * Begin a "skip" block. Inside this block we can test a condition and
82 * skip to the end of the block if the condition is false
381 LLVMBasicBlockRef block = LLVMGetInsertBlock(gallivm->builder); local
    [all...]

Completed in 2004 milliseconds

<<11121314151617181920>>