/external/valgrind/main/none/tests/amd64/ |
pcmpstr64.c | 386 V128 block[2]; local 387 memcpy(&block[0], argL, sizeof(V128)); 388 memcpy(&block[1], argR, sizeof(V128)); 400 : /*out*/ "=r"(res), "=r"(flags) : "r"/*in*/(&block[0]) 477 V128 block[2]; local 478 memcpy(&block[0], argL, sizeof(V128)); 479 memcpy(&block[1], argR, sizeof(V128)); 491 : /*out*/ "=r"(res), "=r"(flags) : "r"/*in*/(&block[0]) 571 V128 block[2]; local 572 memcpy(&block[0], argL, sizeof(V128)) 658 V128 block[2]; local 751 V128 block[2]; local 844 V128 block[2]; local 926 V128 block[2]; local 1009 V128 block[2]; local 1089 V128 block[2]; local 1171 V128 block[2]; local [all...] |
pcmpstr64w.c | 387 V128 block[2]; local 388 memcpy(&block[0], argL, sizeof(V128)); 389 memcpy(&block[1], argR, sizeof(V128)); 401 : /*out*/ "=r"(res), "=r"(flags) : "r"/*in*/(&block[0]) 478 V128 block[2]; local 479 memcpy(&block[0], argL, sizeof(V128)); 480 memcpy(&block[1], argR, sizeof(V128)); 492 : /*out*/ "=r"(res), "=r"(flags) : "r"/*in*/(&block[0]) 572 V128 block[2]; local 573 memcpy(&block[0], argL, sizeof(V128)) 657 V128 block[2]; local 750 V128 block[2]; local 843 V128 block[2]; local 925 V128 block[2]; local 1008 V128 block[2]; local 1088 V128 block[2]; local 1170 V128 block[2]; local [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
mux_client_for_testing.py | 133 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.mux_error = (first_byte >> 4) & [all...] |
/dalvik/vm/alloc/ |
Copying.cpp | 37 * are the block space table and the block queue. 39 * The block space table records the state of a block. We must track 40 * whether a block is: 44 * - If the block holds part of a large object allocation, whether the 45 * block is the initial or a continued block of the allocation. 47 * - Whether the block is pinned, that is to say whether at least one 48 * object in the block must remain stationary. Only needed during 284 size_t block; local 426 size_t block; local 642 size_t block; local [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLR.g | 77 BLOCK; 294 * 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; [all...] |
LeftRecursiveRuleWalker.g | 143 : ^( BLOCK 154 block 155 : ^( BLOCK 189 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel ^( BLOCK ( ^( ALT op=token EOA {setTokenPrec($op.t, outerAlt);} ) )+ EOB ) recurse EOA ) 252 | ^(SYNPRED block) 262 ebnf: block 263 | ^( OPTIONAL block ) 264 | ^( CLOSURE block ) 265 | ^( POSITIVE_CLOSURE block )
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
GCMBlockCipher.java | 61 "cipher required with a block size of " + BLOCK_SIZE + "."); 216 // Hash each block as it fills 230 // Hash each block as it fills 246 // Finish hash for partial AAD block 341 // Finish hash for partial AAD block 450 private void gCTRBlock(byte[] block, byte[] out, int outOff) 454 xor(tmp, block); 457 gHASHBlock(S, forEncryption ? tmp : block); 514 private static void multiply(byte[] block, byte[] val) 516 byte[] tmp = Arrays.clone(block); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopTranslator.java | 73 /** {@code null-ok;} block output order; becomes non-null in {@link #pickOrder} */ 130 * objects per basic block (to the first and last instruction, 131 * and just past the end of the block), and the possibility of 132 * an extra goto at the end of each basic block. 139 * extra instruction per block (for the locals state at the 140 * start of the block) as well as one for each interblock 179 * We almost could just check the first block here, but the 181 * subsequent block in the case of synchronized methods. 233 * and output of one block. 235 * @param block {@code non-null;} the block to process and outpu 493 private BasicBlock block; field in class:RopTranslator.TranslationVisitor [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
RopTranslator.java | 76 /** {@code null-ok;} block output order; becomes non-null in {@link #pickOrder} */ 135 * objects per basic block (to the first and last instruction, 136 * and just past the end of the block), and the possibility of 137 * an extra goto at the end of each basic block. 144 * extra instruction per block (for the locals state at the 145 * start of the block) as well as one for each interblock 184 * We almost could just check the first block here, but the 186 * subsequent block in the case of synchronized methods. 239 * and output of one block. 241 * @param block {@code non-null;} the block to process and outpu 499 private BasicBlock block; field in class:RopTranslator.TranslationVisitor [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SCCP.java | 56 /** Bitset containing bits for each block that has been found executable */ 95 * Adds a SSA basic block to the CFG worklist if it's unexecuted, or 97 * @param ssaBlock Block to add 199 * Simulate a block and note the results in the lattice. 200 * @param block Block to visit 202 private void simulateBlock(SsaBasicBlock block) { 203 for (SsaInsn insn : block.getInsns()) { 213 * Simulate the phis in a block and note the results in the lattice. 214 * @param block Block to visi 339 SsaBasicBlock block = insn.getBlock(); local 552 SsaBasicBlock block = cfgWorklist.remove(listSize); local 558 SsaBasicBlock block = cfgPhiWorklist.remove(listSize); local 658 SsaBasicBlock block = insn.getBlock(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_format_aos.c | 108 desc->block.width != 1 || 109 desc->block.height != 1) { 166 assert(desc->block.width == 1); 167 assert(desc->block.height == 1); 168 assert(desc->block.bits <= 32); 279 assert(desc->block.width == 1); 280 assert(desc->block.height == 1); 282 type = LLVMIntTypeInContext(gallivm->context, desc->block.bits); 352 if (desc->block.bits < 32) 365 * \param ptr address of the pixel block (or the texel if uncompressed [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopTranslator.java | 77 /** {@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 {@code non-null;} the block to process and outpu 500 private BasicBlock block; field in class:RopTranslator.TranslationVisitor [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SCCP.java | 57 /** Bitset containing bits for each block that has been found executable */ 96 * Adds a SSA basic block to the CFG worklist if it's unexecuted, or 98 * @param ssaBlock Block to add 200 * Simulate a block and note the results in the lattice. 201 * @param block Block to visit 203 private void simulateBlock(SsaBasicBlock block) { 204 for (SsaInsn insn : block.getInsns()) { 214 * Simulate the phis in a block and note the results in the lattice. 215 * @param block Block to visi 340 SsaBasicBlock block = insn.getBlock(); local 553 SsaBasicBlock block = cfgWorklist.remove(listSize); local 559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize); local 659 SsaBasicBlock block = insn.getBlock(); local [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_format_aos.c | 108 desc->block.width != 1 || 109 desc->block.height != 1) { 166 assert(desc->block.width == 1); 167 assert(desc->block.height == 1); 168 assert(desc->block.bits <= 32); 279 assert(desc->block.width == 1); 280 assert(desc->block.height == 1); 282 type = LLVMIntTypeInContext(gallivm->context, desc->block.bits); 352 if (desc->block.bits < 32) 365 * \param ptr address of the pixel block (or the texel if uncompressed [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
visitor.rb | 42 instead a standard single iteration block. The <tt>visit(tree)</tt> method walks 44 defined, a node is yielded to the block when it has been initially entered. If 45 +post_action+ is defined, a node is yielded to the block after all of its 58 def pre_action( &block ) 59 block_given? and @pre_action = block 63 def post_action( &block ) 64 block_given? and @post_action = block
|
/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/ |
tunnelsessionclient_unittest.cc | 180 char block[kBlockSize]; local 183 while ((res = remote_tunnel_->Read(block, sizeof(block), &read, NULL)) == 185 recv_stream_.Write(block, read, NULL, NULL); 193 char block[kBlockSize]; local 196 block, sizeof(block), local_tunnel_.get(), &leftover);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/ |
test_rendering.c | 103 static void Gradient(short *block, unsigned int start, unsigned int stop, int horizontal, unsigned int intra_unsigned) 112 *block = (short)(start + range * (x / (float)(BLOCK_WIDTH - 1))); 114 *block += 1 << 10; 115 block++; 122 *block = (short)(start + range * (y / (float)(BLOCK_WIDTH - 1))); 124 *block += 1 << 10; 125 block++;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 35 * Support for computing at the basic block level which variables 45 * The basic-block-level live variable analysis needs to know which 55 fs_bblock *block = cfg->blocks[b]; local 57 assert(ip == block->start_ip); 61 for (fs_inst *inst = block->start; 62 inst != block->end->next; 122 fs_bblock *block = link->block; local 125 if (bd[block->block_num].livein[i] && !bd[b].liveout[i]) {
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
codegen.ml | 55 (* Grab the first block so that we might later add the conditional branch 66 (* Codegen of 'then' can change the current block, update then_bb for the 76 (* Codegen of 'else' can change the current block, update else_bb for the 80 (* Emit merge block. *) 86 (* Return to the start block to add the conditional branch. *) 90 (* Set a unconditional branch at the end of the 'then' block and the 91 * 'else' block to the 'merge' block. *) 95 (* Finally, set the builder to the end of the merge block. *) 103 (* Make the new basic block for the loop header, inserting after curren [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_rendering.c | 103 static void Gradient(short *block, unsigned int start, unsigned int stop, int horizontal, unsigned int intra_unsigned) 112 *block = (short)(start + range * (x / (float)(BLOCK_WIDTH - 1))); 114 *block += 1 << 10; 115 block++; 122 *block = (short)(start + range * (y / (float)(BLOCK_WIDTH - 1))); 124 *block += 1 << 10; 125 block++;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 35 * Support for computing at the basic block level which variables 45 * The basic-block-level live variable analysis needs to know which 55 fs_bblock *block = cfg->blocks[b]; local 57 assert(ip == block->start_ip); 61 for (fs_inst *inst = block->start; 62 inst != block->end->next; 122 fs_bblock *block = link->block; local 125 if (bd[block->block_num].livein[i] && !bd[b].liveout[i]) {
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
InlineBox.cpp | 208 // own stacking context. (See Appendix E.2, section 6.4 on inline block/table elements in the CSS2.1 229 // own stacking context. (See Appendix E.2, section 6.4 on inline block/table elements in the CSS2.1 339 RenderBlock* block = root()->block(); 340 if (block->style()->isHorizontalWritingMode()) 341 return FloatPoint(x(), block->height() - height() - y()); 343 return FloatPoint(block->width() - width() - x(), y()); 350 root()->block()->flipForWritingMode(rect); 357 return root()->block()->flipForWritingMode(point); 364 root()->block()->flipForWritingMode(rect) [all...] |
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
change_picture_options.css | 36 display: inline-block; 93 display: block; 135 display: block; 143 display: block; 174 display: block; 180 display: block;
|
/external/chromium_org/chrome/browser/resources/options/ |
cookies_view.css | 38 display: block; 65 display: block; 85 display: inline-block; 96 display: inline-block; 103 display: inline-block; 139 display: inline-block;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_network.c | 172 u_socket_block(int s, boolean block) 180 /* TODO obey block */ 181 if (block) 186 u_long iMode = block ? 0 : 1;
|