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

1 23 4 5 6 7 8 91011>>

  /external/libnfc-nci/src/hal/int/
nfc_hal_nv_ci.h 81 UINT8 block);
  /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/webkit/Source/JavaScriptCore/heap/
MarkedSpace.cpp 55 MarkedBlock* block = MarkedBlock::create(globalData(), sizeClass.cellSize); local
56 sizeClass.blockList.append(block);
57 sizeClass.nextBlock = block;
58 m_blocks.add(block);
60 return block;
66 for (MarkedBlock* block = blocks.head(); block; block = next) {
67 next = block->next();
69 blocks.remove(block);
97 MarkedBlock* block = *it; local
    [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/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/webkit/Source/WebCore/rendering/
RenderTextFragment.cpp 65 if (RenderBlock* block = blockForAccompanyingFirstLetter()) {
66 block->style()->removeCachedPseudoStyle(FIRST_LETTER);
67 block->updateFirstLetter();
110 for (RenderObject* block = m_firstLetter->parent(); block; block = block->parent()) {
111 if (block->style()->hasPseudoStyle(FIRST_LETTER) && block->canHaveChildren() && block->isRenderBlock()
    [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/clang/test/CodeGen/
2009-01-05-BlockInlining.c 4 // These will be inlined by the optimizers provided the block descriptors
5 // and block literals are internal constants.
14 static int block(int x) { function
25 print(block(x));
  /external/compiler-rt/BlocksRuntime/tests/
copynull.c 16 #import <Block.h>
23 void (^block)(void) = (void (^)(void))0;
24 void (^blockcopy)(void) = Block_copy(block);
dispatch_call_Block_with_release.c 8 #include <Block.h>
16 dispatch_call_Block_with_release2(void *block)
18 void (^b)(void) = (void (^)(void))block;
25 void (^b2)(void) = ^{ callsomething("hellow world\n", 0); }; // global block now
  /external/dropbear/libtomcrypt/src/mac/omac/
omac_done.c 39 if ((omac->buflen > (int)sizeof(omac->block)) || (omac->buflen < 0) ||
40 (omac->blklen > (int)sizeof(omac->block)) || (omac->buflen > omac->blklen)) {
47 omac->block[omac->buflen++] = 0x80;
51 omac->block[omac->buflen++] = 0x00;
60 omac->block[x] ^= omac->prev[x] ^ omac->Lu[mode][x];
64 if ((err = cipher_descriptor[omac->cipher_idx].ecb_encrypt(omac->block, omac->block, &omac->key)) != CRYPT_OK) {
71 out[x] = omac->block[x];
  /external/eigen/doc/examples/
Tutorial_BlockOperations_print_block.cpp 13 cout << "Block in the middle" << endl;
14 cout << m.block<2,2>(1,1) << endl << endl;
17 cout << "Block of size " << i << "x" << i << endl;
18 cout << m.block(0,0,i,i) << endl << endl;
  /external/eigen/doc/snippets/
MatrixBase_set.cpp 7 m2.block(0,0, 2,2) << 10, 11, 12, 13;
12 v1, m1.block(1,1,2,2);
  /external/valgrind/main/none/tests/ppc32/
test_fx.c 7 double block[2]; local
8 block[0] = x;
14 : /*in*/ "b" (&block[0])
17 return block[1];
22 double block[2]; local
23 block[0] = x;
29 : /*in*/ "b" (&block[0])
32 return block[1];
  /external/valgrind/main/none/tests/x86/
lzcnt32.c 10 UInt block[3] = { arg, 0, 0 }; local
18 : : "r"(&block[0]) : "esi","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 UInt block[3] = { arg, 0, 0 }; local
35 : : "r"(&block[0]) : "esi","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
  /system/core/rootdir/etc/
mountd.conf 5 ## root block device with partition map or raw FAT file system
6 block_device /dev/block/mmcblk0
8 ## mount point for block device
14 ## path to the UMS driver file for specifying the block device path
  /hardware/qcom/audio/hal/
edid.c 25 * This is the sysfs path for the HDMI audio data block
52 char block[MAX_SAD_BLOCKS * SAD_BLOCK_SIZE]; local
53 char *sad = block;
65 /* Read audio block header */
69 if (header.length > (int)sizeof(block))
70 header.length = (int)sizeof(block);
71 fread(&block, header.length, 1, file);
87 /* Advance to next block */
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapText.java 48 private StringBlock block; field in class:BitmapText
69 this.block = new StringBlock();
70 block.setSize(font.getPreferredSize());
71 letters = new Letters(font, block, rightToLeft);
80 clone.block = block.clone();
94 block.setSize(size);
114 if (text == block.getText() || block.getText().equals(text)) {
118 block.setText(text);
    [all...]
  /external/eigen/test/
corners.cpp 28 COMPARE_CORNER(topLeftCorner(r,c), block(0,0,r,c));
29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c));
30 COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c));
31 COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c));
38 COMPARE_CORNER(topRows(r), block(0,0,r,cols));
39 COMPARE_CORNER(middleRows(sr,nr), block(sr,0,nr,cols));
40 COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols));
41 COMPARE_CORNER(leftCols(c), block(0,0,rows,c));
42 COMPARE_CORNER(middleCols(sc,nc), block(0,sc,rows,nc));
43 COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c))
    [all...]

Completed in 1667 milliseconds

1 23 4 5 6 7 8 91011>>