/external/eigen/doc/snippets/ |
Tutorial_commainit_01b.cpp | 3 m.block(1,0,2,2) << 4, 5, 7, 8;
|
/external/eigen/failtest/ |
const_qualified_block_method_retval_0.cpp | 12 Block<Matrix3d,3,3> b(m.block<3,3>(0,0));
|
const_qualified_block_method_retval_1.cpp | 12 Block<Matrix3d> b(m.block(0,0,3,3));
|
/external/libnfc-nci/src/hal/int/ |
nfc_hal_nv_ci.h | 81 UINT8 block);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeintra.h | 17 void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
|
/external/skia/src/gpu/ |
GrAllocPool.cpp | 15 struct GrAllocPool::Block { 16 Block* fNext; 21 static Block* Create(size_t size, Block* next) { 24 Block* block = (Block*)GrMalloc(sizeof(Block) + size); local 25 block->fNext = next; 26 block->fPtr = (char*)block + sizeof(Block) 70 Block* block = fBlock; local 109 Block* block = fBlock; local [all...] |
/external/valgrind/main/memcheck/tests/ |
err_disable1.c | 9 char* block = NULL; variable 21 usechar( block[5] ); 26 block = malloc(10); 27 free(block);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
OAEPEncoding.java | 145 byte[] block = new byte[getInputBlockSize() + 1 + 2 * defHash.length]; 150 System.arraycopy(in, inOff, block, block.length - inLen, inLen); 155 block[block.length - inLen - 1] = 0x01; 158 // as the block is already zeroed - there's no need to add PS (the >= 0 pad of 0) 164 System.arraycopy(defHash, 0, block, defHash.length, defHash.length); 174 // mask the message block. 176 byte[] mask = maskGeneratorFunction1(seed, 0, seed.length, block.length - defHash.length); 178 for (int i = defHash.length; i != block.length; i++ [all...] |
/external/valgrind/main/none/tests/amd64/ |
bug127521-64.c | 17 ULong block[6]; local 20 block[0] = rdxIn; 21 block[1] = raxIn; 22 block[2] = rcxIn; 23 block[3] = rbxIn; 24 block[4] = (ULong)&mem[0]; 25 block[5] = ~(0ULL); 40 : /*in*/ "r"(&block[0]) 43 *rdxOut = block[0]; 44 *raxOut = block[1] 70 ULong block[6]; local [all...] |
/external/markdown/markdown/ |
blockprocessors.py | 10 different type of block. Extensions may add/replace/remove BlockProcessors 19 """ Base class for block processors. 24 whether the current block should be processed by this processor. If the 60 def test(self, parent, block): 61 """ Test for block type. Must be overridden by subclasses. 64 on each to determine if the given block of text is of that type. This 66 testing is left to the needs of that particular block type. It could 67 be as simple as ``block.startswith(some_string)`` or a complex regular 68 expression. As the block type may be different depending on the parent 69 of the block (i.e. inside a list), the parent etree element is also [all...] |
preprocessors.py | 81 def _get_left_tag(self, block): 82 return block[1:].replace(">", " ", 1).split()[0].lower() 84 def _get_right_tag(self, left_tag, block): 87 i = block.rfind(tag) 90 return block.rstrip()[-len(left_tag)-2:-1].lower(), len(block) 118 block = text[0] 119 if block.startswith("\n"): 120 block = block[1: [all...] |
/external/chromium_org/gpu/command_buffer/client/ |
fenced_allocator.cc | 37 Block block = { FREE, 0, RoundDown(size), kUnusedToken }; local 38 blocks_.push_back(block); 53 // Looks for a non-allocated block that is big enough. Search in the FREE 56 // optimizing what to wait for, just looks inside the block in order (first-fit 68 // Try first to allocate in a free block. 70 Block &block = blocks_[i]; local 71 if (block.state == FREE && block.size >= size) 101 Block &block = blocks_[index]; local 111 Block &block = blocks_[i]; local 124 Block &block = blocks_[i]; local 185 Block &block = blocks_[index]; local 196 Block& block = blocks_[i]; local 210 Block &block = blocks_[index]; local [all...] |
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael-api-fst.c | 96 word8 block[16], iv[4][4]; local 120 bcopy(cipher->IV, block, 16); 122 ((word32*)block)[0] ^= ((word32*)iv)[0]; 123 ((word32*)block)[1] ^= ((word32*)iv)[1]; 124 ((word32*)block)[2] ^= ((word32*)iv)[2]; 125 ((word32*)block)[3] ^= ((word32*)iv)[3]; 127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0]; 128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1]; 129 ((word32*)block)[2] = ((word32*)cipher->IV)[2] ^ ((word32*)input)[2]; 130 ((word32*)block)[3] = ((word32*)cipher->IV)[3] ^ ((word32*)input)[3] 210 word8 block[16], *iv, *cp; local 273 word8 block[16], iv[4][4]; local 371 word8 block[16]; local 463 word8 block[4][4]; local [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
parameter.rb | 8 if block then "&#{ name }" 17 attr_accessor :splat, :block 28 @block and names << @block.to_s 41 param.block = options.fetch( :block, false ) 51 @block and signature << ", &" << @block.to_s
|
/external/chromium/net/disk_cache/ |
mapped_file_posix.cc | 35 bool MappedFile::Load(const FileBlock* block) { 36 size_t offset = block->offset() + view_size_; 37 return Read(block->buffer(), block->size(), offset); 40 bool MappedFile::Store(const FileBlock* block) { 41 size_t offset = block->offset() + view_size_; 42 return Write(block->buffer(), block->size(), offset);
|
mapped_file_win.cc | 45 bool MappedFile::Load(const FileBlock* block) { 46 size_t offset = block->offset() + view_size_; 47 return Read(block->buffer(), block->size(), offset); 50 bool MappedFile::Store(const FileBlock* block) { 51 size_t offset = block->offset() + view_size_; 52 return Write(block->buffer(), block->size(), offset);
|
/external/chromium-trace/trace-viewer/src/ui/ |
quad_view.css | 7 display: block;
|
/external/chromium_org/base/mac/ |
bind_objc_block.h | 8 #include <Block.h> 14 // BindBlock builds a callback from an Objective-C block. Example usages: 23 // Helper functions to run the block contained in the parameter. 25 R RunBlock(base::mac::ScopedBlock<R(^)()> block) { 26 R(^extracted_block)() = block.get(); 31 R RunBlock(base::mac::ScopedBlock<R(^)(A1)> block, A1 a) { 32 R(^extracted_block)(A1) = block.get(); 38 // Construct a callback with no argument from an objective-C block. 40 base::Callback<R(void)> BindBlock(R(^block)()) { 42 base::mac::ScopedBlock<R(^)()>(Block_copy(block))); [all...] |
scoped_block.h | 8 #include <Block.h> 24 B block = NULL, 26 : block_(block) { 28 block_ = Block_copy(block); 47 void reset(B block = NULL, 50 if (block && policy == base::scoped_policy::RETAIN) 51 block = Block_copy(block); 54 block_ = block;
|
/external/chromium_org/chrome/browser/resources/print_preview/ |
print_header.css | 11 display: block;
|
/external/chromium_org/net/disk_cache/ |
mapped_file.cc | 52 bool MappedFile::Load(const FileBlock* block) { 53 size_t offset = block->offset() + view_size_; 54 return Read(block->buffer(), block->size(), offset); 57 bool MappedFile::Store(const FileBlock* block) { 58 size_t offset = block->offset() + view_size_; 59 return Write(block->buffer(), block->size(), offset);
|
mapped_file_posix.cc | 41 bool MappedFile::Load(const FileBlock* block) { 42 size_t offset = block->offset() + view_size_; 43 return Read(block->buffer(), block->size(), offset); 46 bool MappedFile::Store(const FileBlock* block) { 47 size_t offset = block->offset() + view_size_; 48 return Write(block->buffer(), block->size(), offset);
|
mapped_file_win.cc | 52 bool MappedFile::Load(const FileBlock* block) { 53 size_t offset = block->offset() + view_size_; 54 return Read(block->buffer(), block->size(), offset); 57 bool MappedFile::Store(const FileBlock* block) { 58 size_t offset = block->offset() + view_size_; 59 return Write(block->buffer(), block->size(), offset);
|
/external/chromium_org/net/quic/ |
spdy_utils.cc | 21 scoped_ptr<SpdyFrame> block(builder.take()); 22 return string(block->data(), length);
|
/external/chromium_org/net/tools/quic/ |
spdy_utils.cc | 34 SpdyHeaderBlock* block, 50 SpdyHeaderBlock::iterator it = block->find(name); 51 if (it != block->end()) { 56 block->insert(make_pair(name, hi->second.as_string())); 65 SpdyHeaderBlock* block) { 66 PopulateSpdyHeaderBlock(headers, block, true); 70 block->insert(make_pair(kV3Host, host_header.as_string())); 72 block->insert(make_pair(kV3Host, host_and_port)); 74 block->insert(make_pair(kV3Path, path)); 75 block->insert(make_pair(kV3Scheme, scheme)) 127 SpdyHeaderBlock block; local 138 SpdyHeaderBlock block = RequestHeadersToSpdyHeaders(request_headers); local 145 SpdyHeaderBlock block; local 153 SpdyHeaderBlock block = ResponseHeadersToSpdyHeaders(response_headers); local [all...] |