Searched defs:blocks (Results 101 - 125 of 145) sorted by relevance

123456

/external/chromium_org/v8/src/
H A Dlithium-allocator.cc546 live_in_sets_(graph->blocks()->length(), zone()),
565 int block_count = graph_->blocks()->length();
576 // Process all successor blocks.
1115 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1116 for (int i = 0; i < blocks->length(); ++i) {
1117 HBasicBlock* block = blocks->at(i);
1127 // Process the blocks in reverse order.
1128 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1261 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1284 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
[all...]
H A Disolate.cc525 // parallel recompilation queue, containing a list of blocks. Each block
528 // We iterate through all the blocks to see whether the argument handle
529 // belongs to one of the blocks. If so, it is deferred.
533 List<Object**>* blocks = &deferred->blocks_; local
534 for (int i = 0; i < blocks->length(); i++) {
536 : blocks->at(i) + kHandleBlockSize;
537 if (blocks->at(i) <= handle && handle < block_limit) return true;
1453 // There should be no try-catch blocks as they would prohibit us from
/external/e2fsprogs/misc/
H A Dmke2fs.c116 "\t[-m reserved-blocks-percentage] [-o creator-os]\n"
117 "\t[-g blocks-per-group] [-L volume-label] "
120 "\t[-T fs-type] [-U UUID] [-jnqvFKSV] device [blocks-count]\n"),
178 * Reads the bad blocks list from a file
196 _("while reading in list of bad blocks from file"));
225 _("while processing list of bad blocks from program"));
263 * See if any of the bad blocks are showing up in the backup
278 " bad blocks.\n\n"),
291 * Mark all the bad blocks as used...
296 _("while marking bad blocks a
2027 __u64 blocks; local
2256 unsigned long blocks = fs->super->s_blocks_count; local
[all...]
/external/grub/stage2/
H A Dfsys_reiserfs.c55 __u32 s_block_count; /* blocks count */
56 __u32 s_free_blocks; /* free blocks count */
61 __u32 s_journal_trans_max; /* max number of blocks in a transaction. */
63 __u32 s_journal_max_batch; /* max number of blocks to batch into a trans */
72 __u16 s_bmap_nr; /* amount of bitmap blocks needed to address each block of file system */
92 __u32 j_realblock[JOURNAL_TRANS_HALF]; /* real locations for the first blocks */
100 __u32 j_realblock[JOURNAL_TRANS_HALF]; /* real locations for the last blocks */
101 char j_digest[16]; /* md5 sum of all the blocks involved, including desc and commit. not used, kill it */
107 fully flushed means all the log blocks and all the real blocks ar
337 unsigned int blocks[MAX_HEIGHT]; member in struct:fsys_reiser_info
[all...]
/external/libvpx/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php26 # Define the width of a tab for code blocks.
319 # Turn block-level HTML blocks into hash entries
389 # Hashify HTML blocks:
444 # First, look for nested blocks, e.g.:
578 # begining in the Markdown function since hashed blocks can be part of
579 # list items and could have been indented. Indented blocks would have
588 # Run block gamut tranformations, without hashing HTML blocks. This is
589 # useful when HTML blocks are known to be already hashed, like in the first
596 # Finally form paragraph and restore hashed blocks.
1090 # Process Markdown `<pre><code>` blocks
1611 $blocks = explode("\\t", $line); variable
[all...]
/external/mesa3d/src/glsl/
H A Dlinker.cpp586 * definitons of blocks agree on their contents.
978 /* Check that uniform blocks between shaders for a stage agree. */
2358 unsigned blocks[MESA_SHADER_TYPES] = {0}; local
2364 blocks[j]++;
2370 linker_error(prog, "Too many combined uniform blocks (%d/%d)",
2375 if (blocks[i] > max_uniform_blocks[i]) {
2376 linker_error(prog, "Too many %s uniform blocks (%d/%d)",
2378 blocks[i],
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp1114 int blocks[10][64]; local
1159 cmp = blocks[pos[c]];
1177 cmp = blocks[0];
1207 int* cmpCb = blocks[pos[1]] + shift;
1208 int* cmpCr = blocks[pos[2]] + shift;
/external/openssh/
H A Dmonitor.c1843 u_int64_t blocks, bytes; local
1874 blocks = buffer_get_int64(&m);
1877 packet_set_state(MODE_OUT, seqnr, blocks, packets, bytes);
1879 blocks = buffer_get_int64(&m);
1882 packet_set_state(MODE_IN, seqnr, blocks, packets, bytes);
H A Dmonitor_wrap.c602 u_int64_t blocks, bytes; local
652 packet_get_state(MODE_OUT, &seqnr, &blocks, &packets, &bytes);
654 buffer_put_int64(&m, blocks);
657 packet_get_state(MODE_IN, &seqnr, &blocks, &packets, &bytes);
659 buffer_put_int64(&m, blocks);
H A Dpacket.c93 u_int64_t blocks; member in struct:packet_state
394 packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, argument
403 if (blocks)
404 *blocks = state->blocks;
412 packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets, argument
420 state->blocks = blocks;
747 active_state->p_send.packets = active_state->p_send.blocks = 0;
752 active_state->p_read.packets = active_state->p_read.blocks
[all...]
/external/qemu/
H A Dcpu-all.h928 QLIST_HEAD(ram, RAMBlock) blocks; member in struct:RAMList
/external/v8/src/
H A Dlithium-allocator.cc536 live_in_sets_(graph->blocks()->length()),
555 int block_count = graph_->blocks()->length();
566 // Process all successor blocks.
1087 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1088 for (int i = 0; i < blocks->length(); ++i) {
1089 HBasicBlock* block = blocks->at(i);
1099 // Process the blocks in reverse order.
1100 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1228 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
1251 const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_pipe.h150 /* linked list of preallocated blocks */
151 struct list_head blocks; member in struct:r600_pipe_fences
413 struct r600_block **blocks; member in struct:r600_context
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc428 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
429 for (int i = 0; i < blocks->length(); i++) {
431 if (i < blocks->length() - 1) next = blocks->at(i + 1);
432 DoBasicBlock(blocks->at(i), next);
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc478 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
479 for (int i = 0; i < blocks->length(); i++) {
481 if (i < blocks->length() - 1) next = blocks->at(i + 1);
482 DoBasicBlock(blocks->at(i), next);
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc433 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
434 for (int i = 0; i < blocks->length(); i++) {
436 if (i < blocks->length() - 1) next = blocks->at(i + 1);
437 DoBasicBlock(blocks->at(i), next);
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc434 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
435 for (int i = 0; i < blocks->length(); i++) {
437 if (i < blocks->length() - 1) next = blocks->at(i + 1);
438 DoBasicBlock(blocks->at(i), next);
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h44 __u32 blocks; member in struct:nfs_fattr::__anon19505::__anon19506
97 __u32 blocks; /* No. of "bsize" blocks on filesystem */ member in struct:nfs2_fsstat
98 __u32 bfree; /* No. of free "bsize" blocks */
99 __u32 bavail; /* No. of available "bsize" blocks */
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.h150 /* linked list of preallocated blocks */
151 struct list_head blocks; member in struct:r600_pipe_fences
413 struct r600_block **blocks; member in struct:r600_context
/external/stressapptest/src/
H A Dworker.cc899 int blocks = sat_->page_length() / blocksize; local
900 for (int currentblock = 0; currentblock < blocks; currentblock++) {
933 uint64 *memslice = memblock + blocks * blockwords;
937 blocks * blocksize, 0);
1196 int blocks = sat_->page_length() / blocksize; local
1204 for (int currentblock = 0; currentblock < blocks; currentblock++) {
1261 uint64 *targetmem = targetmembase + blocks * blockwords;
1262 uint64 *sourcemem = sourcemembase + blocks * blockwords;
1267 blocks * blocksize, 0);
1292 int blocks local
1315 int blocks = sat_->page_length() / blocksize; local
1340 int blocks = sat_->page_length() / blocksize; local
3066 int64 blocks = block->GetSize() / read_block_size_; local
[all...]
/external/v8/src/arm/
H A Dlithium-arm.cc443 HPhase phase("L_Mark empty blocks", this);
444 for (int i = 0; i < graph()->blocks()->length(); ++i) {
445 HBasicBlock* block = graph()->blocks()->at(i);
557 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
558 for (int i = 0; i < blocks->length(); i++) {
560 if (i < blocks->length() - 1) next = blocks->at(i + 1);
561 DoBasicBlock(blocks->at(i), next);
/external/v8/src/ia32/
H A Dlithium-ia32.cc387 HPhase phase("L_Mark empty blocks", this);
388 for (int i = 0; i < graph()->blocks()->length(); ++i) {
389 HBasicBlock* block = graph()->blocks()->at(i);
552 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
553 for (int i = 0; i < blocks->length(); i++) {
555 if (i < blocks->length() - 1) next = blocks->at(i + 1);
556 DoBasicBlock(blocks->at(i), next);
/external/v8/src/mips/
H A Dlithium-mips.cc443 HPhase phase("L_Mark empty blocks", this);
444 for (int i = 0; i < graph()->blocks()->length(); ++i) {
445 HBasicBlock* block = graph()->blocks()->at(i);
557 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
558 for (int i = 0; i < blocks->length(); i++) {
560 if (i < blocks->length() - 1) next = blocks->at(i + 1);
561 DoBasicBlock(blocks->at(i), next);
/external/v8/src/x64/
H A Dlithium-x64.cc385 HPhase phase("L_Mark empty blocks", this);
386 for (int i = 0; i < graph()->blocks()->length(); ++i) {
387 HBasicBlock* block = graph()->blocks()->at(i);
550 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
551 for (int i = 0; i < blocks->length(); i++) {
553 if (i < blocks->length() - 1) next = blocks->at(i + 1);
554 DoBasicBlock(blocks->at(i), next);
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c3370 if it is, add a description of it to 'blocks'. Otherwise ignore
3375 void analyse_deps ( /*MOD*/XArray* /* of FrameBlock */ blocks, argument
3472 VG_(addToXA)( blocks, &block );
3491 VG_(addToXA)( blocks, &block );
3500 /* Get an XArray of StackBlock which describe the stack (auto) blocks
3502 point. If 'arrays_only' is True, only array-typed blocks are
3503 returned; otherwise blocks of all types are returned. */
3612 /* Get an array of GlobalBlock which describe the global blocks owned
3616 array-typed blocks are returned; otherwise blocks o
[all...]

Completed in 658 milliseconds

123456