HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 51 - 75 of 2292) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eigen/doc/examples/
Tutorial_BlockOperations_block_assignment.cpp 14 a.block<2,2>(1,1) = m;
15 cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl;
16 a.block(0,0,2,3) = a.block(2,1,2,3);
17 cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl;
  /external/valgrind/main/none/tests/amd64/
lzcnt64.c 10 ULong block[3] = { arg, 0ULL, 0ULL }; local
18 : : "r"(&block[0]) : "r11","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 ULong block[3] = { arg, 0ULL, 0ULL }; local
35 : : "r"(&block[0]) : "r11","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
44 ULong block[3] = { arg, 0ULL, 0ULL }; local
52 : : "r"(&block[0]) : "r11","cc","memory
    [all...]
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/chromium_org/third_party/skia/src/gpu/
GrAllocPool.cpp 14 struct GrAllocPool::Block {
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
24 block->fNext = next;
25 block->fPtr = (char*)block + sizeof(Block)
69 Block* block = fBlock; local
107 Block* block = fBlock; local
    [all...]
  /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 14 struct GrAllocPool::Block {
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
24 block->fNext = next;
25 block->fPtr = (char*)block + sizeof(Block)
69 Block* block = fBlock; local
107 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/chromium_org/third_party/WebKit/Source/bindings/templates/
interface_base.cpp 97 {% block constructor_getter %}{% endblock %}
98 {% block replaceable_attribute_setter_and_callback %}{% endblock %}
99 {% block security_check_functions %}{% endblock %}
121 {% block origin_safe_method_setter %}{% endblock %}
126 {% block overloaded_constructor %}{% endblock %}
127 {% block event_constructor %}{% endblock %}
130 {% block visit_dom_wrapper %}{% endblock %}
131 {% block class_attributes %}{% endblock %}
132 {% block class_accessors %}{% endblock %}
133 {% block class_methods %}{% endblock %
    [all...]
  /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/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/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/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...]

Completed in 708 milliseconds

1 23 4 5 6 7 8 91011>>