HomeSort by relevance Sort by last modified time
    Searched refs:new_block (Results 1 - 25 of 28) sorted by null

1 2

  /external/markdown/markdown/extensions/
imagelinks.py 68 new_block = "<div><br/><center><span class='image-links'>\n"
74 new_block += "&nbsp;"
75 new_block += IMAGE_LINK % (photo_url,
81 new_block += "<br/>"
83 new_block += "</span>"
84 new_block += SLIDESHOW_LINK % url.get_slideshow()
90 new_block += ALBUM_LINK % (album_urls[0], "complete album")
93 new_block += ALBUM_LINK % (album_urls[i],
96 new_lines.append(new_block + "</center><br/></div>")
  /external/e2fsprogs/e2fsck/
emptydir.c 123 blk_t block, new_block; local
132 &new_block);
135 if (new_block == 0)
138 } while (ext2fs_test_block_bitmap(edi->empty_dir_blocks, new_block));
140 if (new_block == block)
142 if (new_block == 0)
144 *block_nr = new_block;
pass1b.c 661 blk_t new_block; local
677 &new_block);
684 cs->dir, new_block, blockcnt);
692 new_block);
700 retval = io_channel_write_blk(fs->io, new_block, 1,
707 *block_nr = new_block;
709 new_block);
710 ext2fs_mark_block_bitmap(fs->block_map, new_block);
pass1.c 2687 blk_t new_block; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
linker.h 47 struct gl_uniform_block *new_block);
link_uniforms.cpp 398 struct gl_uniform_block *new_block)
402 if (strcmp(old_block->Name, new_block->Name) == 0) {
403 if (old_block->NumUniforms != new_block->NumUniforms) {
409 new_block->Uniforms[j].Name) != 0)
413 new_block->Uniforms[j].Offset)
417 new_block->Uniforms[j].RowMajor)
430 memcpy(linked_block, new_block, sizeof(*new_block));
436 new_block->Uniforms,
  /external/mesa3d/src/glsl/
linker.h 47 struct gl_uniform_block *new_block);
link_uniforms.cpp 398 struct gl_uniform_block *new_block)
402 if (strcmp(old_block->Name, new_block->Name) == 0) {
403 if (old_block->NumUniforms != new_block->NumUniforms) {
409 new_block->Uniforms[j].Name) != 0)
413 new_block->Uniforms[j].Offset)
417 new_block->Uniforms[j].RowMajor)
430 memcpy(linked_block, new_block, sizeof(*new_block));
436 new_block->Uniforms,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_cfg.cpp 77 fs_bblock *entry = new_block();
109 cur_endif = new_block();
114 next = new_block();
124 next = new_block();
156 cur_while = new_block();
161 next = new_block();
172 next = new_block();
183 next = new_block();
218 fs_cfg::new_block() function in class:fs_cfg
brw_fs_cfg.h 83 fs_bblock *new_block();
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cfg.cpp 77 fs_bblock *entry = new_block();
109 cur_endif = new_block();
114 next = new_block();
124 next = new_block();
156 cur_while = new_block();
161 next = new_block();
172 next = new_block();
183 next = new_block();
218 fs_cfg::new_block() function in class:fs_cfg
brw_fs_cfg.h 83 fs_bblock *new_block();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 59 LLVMBasicBlockRef new_block; local
68 new_block = LLVMInsertBasicBlockInContext(gallivm->context, next_block, name);
73 new_block = LLVMAppendBasicBlockInContext(gallivm->context, function, name);
76 return new_block;
102 LLVMBasicBlockRef new_block; local
104 new_block = lp_build_insert_new_block(skip->gallivm, "");
106 /* if cond is true, goto skip->block, else goto new_block */
107 LLVMBuildCondBr(skip->gallivm->builder, cond, skip->block, new_block);
109 LLVMPositionBuilderAtEnd(skip->gallivm->builder, new_block);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 59 LLVMBasicBlockRef new_block; local
68 new_block = LLVMInsertBasicBlockInContext(gallivm->context, next_block, name);
73 new_block = LLVMAppendBasicBlockInContext(gallivm->context, function, name);
76 return new_block;
102 LLVMBasicBlockRef new_block; local
104 new_block = lp_build_insert_new_block(skip->gallivm, "");
106 /* if cond is true, goto skip->block, else goto new_block */
107 LLVMBuildCondBr(skip->gallivm->builder, cond, skip->block, new_block);
109 LLVMPositionBuilderAtEnd(skip->gallivm->builder, new_block);
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 70 static void* new_block(ThreadId tid, SizeT size, SizeT align, Bool is_zeroed) function
148 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False);
154 return new_block(tid, n, align, /*is_zeroed*/False);
160 return new_block(tid, nmemb*size1, VG_(clo_alignment),
255 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False);
267 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False);
  /external/qemu/block/
qcow2-refcount.c 236 int64_t new_block = alloc_clusters_noref(bs, s->cluster_size); local
237 if (new_block < 0) {
238 return new_block;
244 refcount_table_index, cluster_index << s->cluster_bits, new_block);
247 if (in_same_refcount_block(s, new_block, cluster_index << s->cluster_bits)) {
250 s->refcount_block_cache_offset = new_block;
253 int block_index = (new_block >> s->cluster_bits) &
259 ret = update_refcount(bs, new_block, s->cluster_size, 1);
267 s->refcount_block_cache_offset = new_block;
272 ret = bdrv_pwrite_sync(bs->file, new_block, s->refcount_block_cache
485 int64_t new_block; local
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftdbgmem.c 747 FT_Pointer new_block; local
803 new_block = (FT_Byte *)ft_mem_table_alloc( table, new_size );
804 if ( new_block == NULL )
807 ft_mem_table_set( table, (FT_Byte*)new_block, new_size, delta );
809 ft_memcpy( new_block, block, cur_size < new_size ? cur_size : new_size );
819 return new_block;
  /external/freetype/src/base/
ftdbgmem.c 742 FT_Pointer new_block; local
798 new_block = (FT_Byte *)ft_mem_table_alloc( table, new_size );
799 if ( new_block == NULL )
802 ft_mem_table_set( table, (FT_Byte*)new_block, new_size, delta );
804 ft_memcpy( new_block, block, cur_size < new_size ? cur_size : new_size );
814 return new_block;
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 252 void* MC_(new_block) ( ThreadId tid, function
301 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
311 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
321 return MC_(new_block) ( tid, 0, n, VG_(clo_alignment),
331 return MC_(new_block) ( tid, 0, n, alignB,
341 return MC_(new_block) ( tid, 0, nmemb*size1, VG_(clo_alignment),
770 MC_(new_block)(tid, addr, szB, /*ignored*/0, mp->is_zeroed,
  /external/qemu/
exec.c 2522 RAMBlock *new_block, *block; local
    [all...]
  /external/libpcap/
gencode.c 175 static inline struct block *new_block(int);
316 new_block(code) function
344 struct block *b = new_block(BPF_RET|BPF_K);
673 b = new_block(JMP(jtype));
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 1248 blk_t block, new_block; local
1315 blk_t orig_size, new_block; local
    [all...]
  /art/compiler/dex/
mir_graph.cc 488 BasicBlock *new_block = NewMemBB(kDalvikByteCode, num_blocks_++); local
489 block_list_.Insert(new_block);
490 new_block->start_offset = insn->offset;
491 cur_block->fall_through = new_block;
492 new_block->predecessors->Insert(cur_block);
500 AppendMIR(new_block, new_insn);
501 return new_block;
    [all...]
  /external/ceres-solver/internal/ceres/
problem_impl.cc 80 double* new_block,
83 new_block, new_block_size))
87 << "block that has memory address " << new_block << " and would have "
  /external/valgrind/main/exp-dhat/
dh_main.c 451 void* new_block ( ThreadId tid, void* p, SizeT req_szB, SizeT req_alignB, function
477 Block* bk = VG_(malloc)("dh.new_block.1", sizeof(Block));
487 bk->histoW = VG_(malloc)("dh.new_block.2", req_szB * sizeof(UShort));
622 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False );
627 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False );
632 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False );
637 return new_block( tid, NULL, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
642 return new_block( tid, NULL, szB, alignB, False );
    [all...]

Completed in 1612 milliseconds

1 2