Searched refs:block (Results 251 - 275 of 929) sorted by relevance

<<11121314151617181920>>

/external/valgrind/main/memcheck/tests/
H A Ddoublefree.stderr.exp4 Address 0x........ is 0 bytes inside a block of size 177 free'd
H A Derr_disable1.stderr.exp10 Address 0x........ is 5 bytes inside a block of size 10 free'd
23 Address 0x........ is 5 bytes inside a block of size 10 free'd
33 Address 0x........ is 5 bytes inside a block of size 10 free'd
40 Address 0x........ is 5 bytes inside a block of size 10 free'd
H A Dmemalign_test.stderr.exp4 Address 0x........ is 0 bytes inside a block of size 111,110 free'd
H A Dpartial_load_dflt.stderr.exp4 Address 0x........ is 0 bytes inside a block of size 3 alloc'd
10 Address 0x........ is 1 bytes inside a block of size 4 alloc'd
16 Address 0x........ is 0 bytes inside a block of size 1 alloc'd
22 Address 0x........ is 0 bytes inside a block of size 4 free'd
/external/webkit/Source/WebCore/rendering/
H A DRenderSelectionInfo.h86 , m_rects(b->needsLayout() ? GapRects() : block()->selectionGapRectsForRepaint(m_repaintContainer))
95 RenderBlock* block() const { return toRenderBlock(m_object); } function in class:WebCore::RenderBlockSelectionInfo
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java23 * A basic block is a sequence of bytecode that does not contain jump/branch
31 public BasicBlock[] exit; // null if the block is a leaf.
32 public boolean stop; // true if the block ends with an unconditional jump.
50 throw new BadBytecode("no basic block at " + pos);
97 BasicBlock block; field in class:BasicBlock.Mark
105 block = null;
198 if (m.block == null)
199 m.block = makeBlock(pos);
202 m.block.incoming++;
225 makeMark(marks, index, makeArray(to.block, nex
[all...]
/external/valgrind/main/none/tests/
H A Dsha1_test.c82 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
83 |(rol(block->l[i],8)&0x00FF00FF))
85 #define blk0(i) block->l[i]
89 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
90 ^block->l[(i+2)&15]^block->l[i&15],1))
100 /* Hash a single 512-bit block
110 CHAR64LONG16 block[1]; /* use array to appear as a pointer */ local
118 CHAR64LONG16* block = (const CHAR64LONG16*)buffer; local
[all...]
/external/webkit/Tools/CSSTestSuiteHarness/harness/
H A Dharness.css76 display: inline-block;
173 display: inline-block;
187 display: inline-block;
245 display: inline-block;
251 display: inline-block;
263 display: block;
280 display: block;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-internal.c130 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \
131 (rol(block->l[i], 8) & 0x00FF00FF))
133 #define blk0(i) block->l[i]
135 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \
136 block->l[(i + 8) & 15] ^ block->l[(i + 2) & 15] ^ block->l[i & 15], 1))
169 /* Hash a single 512-bit block
178 CHAR64LONG16* block; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-internal.c130 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \
131 (rol(block->l[i], 8) & 0x00FF00FF))
133 #define blk0(i) block->l[i]
135 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \
136 block->l[(i + 8) & 15] ^ block->l[(i + 2) & 15] ^ block->l[i & 15], 1))
169 /* Hash a single 512-bit block
178 CHAR64LONG16* block; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-internal.c130 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \
131 (rol(block->l[i], 8) & 0x00FF00FF))
133 #define blk0(i) block->l[i]
135 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \
136 block->l[(i + 8) & 15] ^ block->l[(i + 2) & 15] ^ block->l[i & 15], 1))
169 /* Hash a single 512-bit block
178 CHAR64LONG16* block; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
H A Dprofile-mode.rb21 * either the ';' or the '{' of the block and then it picks
30 | functionHeader block
56 block
65 | block
71 : 'for' '(' assignStat ';' expr ';' assignStat ')' block
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRSACoreEngine.java44 * Return the maximum size for an input block to this engine.
48 * @return maximum size for an input block.
65 * Return the maximum size for an output block to this engine.
69 * @return maximum size for an output block.
99 byte[] block;
103 block = new byte[inLen];
105 System.arraycopy(in, inOff, block, 0, inLen);
109 block = in;
112 BigInteger res = new BigInteger(1, block);
/external/e2fsprogs/util/
H A Dcopy_sparse.c46 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
48 static unsigned long get_bmap(int fd, unsigned long block) argument
53 b = block;
93 long lb, i, fd, ofd, bs, block, numblocks; local
121 printf("%s: Invalid block size: %ld\n", src, bs);
149 block = get_bmap(fd, lb);
150 if (!block)
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixSquareRoot.h123 if (T.coeff(j, j-1) != 0) // if T(j-1:j, j-1:j) is a 2-by-2 block
126 if (i > 0 && T.coeff(i, i-1) != 0) // if T(i-1:i, i-1:i) is a 2-by-2 block
142 // pre: T.block(i,i,2,2) has complex conjugate eigenvalues
143 // post: sqrtT.block(i,i,2,2) is square root of T.block(i,i,2,2)
150 Matrix<Scalar,2,2> block = T.template block<2,2>(i,i); local
151 EigenSolver<Matrix<Scalar,2,2> > es(block);
152 sqrtT.template block<2,2>(i,i)
156 // pre: block structur
[all...]
/external/libnfc-nci/src/nfc/tags/
H A Drw_t2t.c665 ** specified block. If the specified block is in different
668 ** command for the block.
673 tNFC_STATUS rw_t2t_read (UINT16 block) argument
682 read_cmd[0] = block % T2T_BLOCKS_PER_SECTOR;
683 if (p_t2t->sector != block/T2T_BLOCKS_PER_SECTOR)
690 p_t2t->select_sector = (UINT8) (block/T2T_BLOCKS_PER_SECTOR);
697 p_t2t->block_read = block;
710 p_t2t->block_read = block;
711 RW_TRACE_EVENT1 ("rw_t2t_read Sent Command for Block: %u", block);
730 rw_t2t_write(UINT16 block, UINT8 *p_write_data) argument
899 RW_T2tRead(UINT16 block) argument
933 RW_T2tWrite(UINT16 block, UINT8 *p_write_data) argument
[all...]
/external/libvpx/vp8/encoder/
H A Dethreading.c101 // reset above block coeffs
208 // If the block has been refreshed mark it as clean (the magnitude of the -ve influences how long it will be before we consider another refresh):
228 vpx_memcpy(&xd->mode_info_context->bmi[i], &xd->block[i].bmi, sizeof(xd->block[i].bmi));
336 z->block[i].quant = x->block[i].quant;
337 z->block[i].quant_fast = x->block[i].quant_fast;
338 z->block[i].quant_shift = x->block[
[all...]
/external/markdown/markdown/extensions/
H A Dcodehilite.py130 Determines language of a code block from shebang lines and whether said
135 code fragment and removed from the code block prior to processing for
184 for block in blocks:
185 children = block.getchildren()
193 block.clear()
196 block.tag = 'p'
197 block.text = placeholder
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp408 WKPageRunJavaScriptBlock block = (WKPageRunJavaScriptBlock)context; local
409 block(resultValue, error);
410 Block_release(block);
413 void WKPageRunJavaScriptInMainFrame_b(WKPageRef pageRef, WKStringRef scriptRef, WKPageRunJavaScriptBlock block) argument
415 WKPageRunJavaScriptInMainFrame(pageRef, scriptRef, Block_copy(block), callRunJavaScriptBlockAndRelease);
427 WKPageRenderTreeExternalRepresentationBlock block = (WKPageRenderTreeExternalRepresentationBlock)context; local
428 block(resultValue, error);
429 Block_release(block);
432 void WKPageRenderTreeExternalRepresentation_b(WKPageRef pageRef, WKPageRenderTreeExternalRepresentationBlock block) argument
434 WKPageRenderTreeExternalRepresentation(pageRef, Block_copy(block), callRenderTreeExternalRepresentationBlockAndDispos
446 WKPageGetSourceForFrameBlock block = (WKPageGetSourceForFrameBlock)context; local
451 WKPageGetSourceForFrame_b(WKPageRef pageRef, WKFrameRef frameRef, WKPageGetSourceForFrameBlock block) argument
465 WKPageGetContentsAsStringBlock block = (WKPageGetContentsAsStringBlock)context; local
470 WKPageGetContentsAsString_b(WKPageRef pageRef, WKPageGetSourceForFrameBlock block) argument
[all...]
/external/clang/lib/Analysis/
H A DReachableCode.cpp44 void enqueue(const CFGBlock *block);
57 void DeadCodeScan::enqueue(const CFGBlock *block) { argument
58 unsigned blockID = block->getBlockID();
62 WorkList.push_back(block);
128 // It is possible that this block has been marked reachable after
133 // Look for any dead code within the block.
137 // No dead code. Possibly an empty block. Look at dead predecessors.
170 const CFGBlock *block = I->first; local
171 if (Reachable[block->getBlockID()])
174 count += clang::reachable_code::ScanReachableFromBlock(block, Reachabl
318 const CFGBlock *block = *I; local
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dmux_client_for_testing.py133 raise Exception('Invalid "size of size" in control block')
139 raise Exception('Invalid control block received')
146 raise Exception('Invalid size of control block (%d < %d)' % (
160 block = _ControlBlock(opcode)
164 block.encode = (first_byte >> 2) & 3
165 block.rejected = (first_byte >> 4) & 1
168 block.channel_id = channel_id
174 block.encoded_handshake = encoded_handshake
176 blocks.append(block)
178 block
[all...]
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js92 "block": function(statements) {
147 "for": function(init, cond, step, block) {
148 return [ this[0], walk(init), walk(cond), walk(step), walk(block) ];
150 "for-in": function(has_var, key, hash, block) {
151 return [ this[0], has_var, key, walk(hash), walk(block) ];
153 "while": function(cond, block) {
154 return [ this[0], walk(cond), walk(block) ];
156 "do": function(cond, block) {
157 return [ this[0], walk(cond), walk(block) ];
193 "label": function(name, block) {
[all...]
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLR.g294 * return ^(BLOCK["BLOCK"] {alt} EOB["<end-of-block>"])
302 GrammarAST block = (GrammarAST)adaptor.create(BLOCK, b.getToken(), "BLOCK");
303 adaptor.addChild(block, alt);
304 adaptor.addChild(alt, adaptor.create(EOB, "<end-of-block>"));
306 return block;
314 * ^(BLOCK["BLOCK"] {GrammarAST.dupTreeNoActions(alt)} EOB["<end-of-block>"])
318 GrammarAST block = (GrammarAST)adaptor.create(BLOCK, alt.getToken(), "BLOCK");
319 adaptor.addChild( block, nalt );
320 adaptor.addChild( block, adaptor.create( EOB, "<end-of-block>" ) );
[all...]
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp76 * If the block ends with a jump, must be the strength of the jump.
79 * If the block doesn't end with a jump, it can be different than strength_none if all paths before it lead to some jump
187 struct block_record block; member in struct:ir_lower_jumps_visitor
224 this->block.min_strength = ir->is_break() ? strength_break : strength_continue;
230 this->block.min_strength = strength_return;
288 block_record saved_block = this->block;
289 this->block = block_record();
291 block_record ret = this->block;
292 this->block = saved_block;
431 this->block
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DRopTranslator.java77 /** {@code null-ok;} block output order; becomes non-null in {@link #pickOrder} */
136 * objects per basic block (to the first and last instruction,
137 * and just past the end of the block), and the possibility of
138 * an extra goto at the end of each basic block.
145 * extra instruction per block (for the locals state at the
146 * start of the block) as well as one for each interblock
185 * We almost could just check the first block here, but the
187 * subsequent block in the case of synchronized methods.
240 * and output of one block.
242 * @param block {
246 outputBlock(BasicBlock block, int nextLabel) argument
500 private BasicBlock block; field in class:RopTranslator.TranslationVisitor
524 setBlock(BasicBlock block, CodeAddress lastAddress) argument
[all...]

Completed in 654 milliseconds

<<11121314151617181920>>