/external/e2fsprogs/lib/ext2fs/ |
io_manager.c | 71 errcode_t io_channel_read_blk64(io_channel channel, unsigned long long block, 77 return (channel->manager->read_blk64)(channel, block, 80 if ((block >> 32) != 0) 83 return (channel->manager->read_blk)(channel, (unsigned long) block, 87 errcode_t io_channel_write_blk64(io_channel channel, unsigned long long block, 93 return (channel->manager->write_blk64)(channel, block, 96 if ((block >> 32) != 0) 99 return (channel->manager->write_blk)(channel, (unsigned long) block,
|
bitops.h | 61 extern int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block); 63 blk_t block); 64 extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block); 72 blk_t block); 74 blk_t block); 76 blk_t block); 90 blk_t block, int num); 92 blk_t block, int num); 94 blk_t block, int num); 98 blk_t block, int num) [all...] |
test_io.c | 49 unsigned long block; member in struct:test_private_data 51 void (*read_blk)(unsigned long block, int count, errcode_t err); 52 void (*write_blk)(unsigned long block, int count, errcode_t err); 54 void (*write_byte)(unsigned long block, int count, errcode_t err); 55 void (*read_blk64)(unsigned long long block, int count, errcode_t err); 56 void (*write_blk64)(unsigned long long block, int count, errcode_t err); 62 static errcode_t test_read_blk(io_channel channel, unsigned long block, 64 static errcode_t test_write_blk(io_channel channel, unsigned long block, 66 static errcode_t test_read_blk64(io_channel channel, unsigned long long block, 68 static errcode_t test_write_blk64(io_channel channel, unsigned long long block, [all...] |
bmove.c | 46 blk_t block, orig; local 49 block = orig = *block_nr; 55 if (ext2fs_test_block_bitmap(pb->reserve, block)) { 57 if (++block >= fs->super->s_blocks_count) 58 block = fs->super->s_first_data_block; 59 if (block == orig) { 63 } while (ext2fs_test_block_bitmap(pb->reserve, block) || 64 ext2fs_test_block_bitmap(pb->alloc_map, block)); 71 retval = io_channel_write_blk(fs->io, block, 1, pb->buf); 76 *block_nr = block; [all...] |
dirblock.c | 2 * dirblock.c --- directory block routines. 22 errcode_t ext2fs_read_dir_block2(ext2_filsys fs, blk_t block, 31 retval = io_channel_read_blk(fs->io, block, 1, buf); 61 errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block, 64 return ext2fs_read_dir_block2(fs, block, buf, 0); 68 errcode_t ext2fs_write_dir_block2(ext2_filsys fs, blk_t block, 101 retval = io_channel_write_blk(fs->io, block, 1, buf); 105 return io_channel_write_blk(fs->io, block, 1, (char *) inbuf); 110 errcode_t ext2fs_write_dir_block(ext2_filsys fs, blk_t block, 113 return ext2fs_write_dir_block2(fs, block, inbuf, 0) [all...] |
/external/libvpx/libvpx/nestegg/halloc/ |
halloc.h | 23 void * halloc (void * block, size_t len); 24 void hattach(void * block, void * parent);
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/ |
u_format_test.c | 65 for (i = 0; i < format_desc->block.bits/8; ++i) { 84 for (i = 0; i < format_desc->block.height; ++i) { 85 for (j = 0; j < format_desc->block.width; ++j) { 106 for (i = 0; i < format_desc->block.height; ++i) { 107 for (j = 0; j < format_desc->block.width; ++j) { 128 for (i = 0; i < format_desc->block.height; ++i) { 129 for (j = 0; j < format_desc->block.width; ++j) { 149 for (i = 0; i < format_desc->block.height; ++i) { 150 for (j = 0; j < format_desc->block.width; ++j) { 171 for (i = 0; i < format_desc->block.height; ++i) [all...] |
/external/mesa3d/src/gallium/tests/unit/ |
u_format_test.c | 65 for (i = 0; i < format_desc->block.bits/8; ++i) { 84 for (i = 0; i < format_desc->block.height; ++i) { 85 for (j = 0; j < format_desc->block.width; ++j) { 106 for (i = 0; i < format_desc->block.height; ++i) { 107 for (j = 0; j < format_desc->block.width; ++j) { 128 for (i = 0; i < format_desc->block.height; ++i) { 129 for (j = 0; j < format_desc->block.width; ++j) { 149 for (i = 0; i < format_desc->block.height; ++i) { 150 for (j = 0; j < format_desc->block.width; ++j) { 171 for (i = 0; i < format_desc->block.height; ++i) [all...] |
/external/clang/lib/Analysis/ |
CFGReachabilityAnalysis.cpp | 11 // analysis based on Clang's CFGs. Clients can query if a given basic block 55 const CFGBlock *block = worklist.back(); local 58 if (visited[block->getBlockID()]) 60 visited[block->getBlockID()] = true; 65 DstReachability[block->getBlockID()] = true; 71 for (CFGBlock::const_pred_iterator i = block->pred_begin(), 72 e = block->pred_end(); i != e; ++i) {
|
/external/clang/www/ |
menu.css | 22 display:block; 26 display:block; 33 display:block;
|
/external/compiler-rt/www/ |
menu.css | 22 display:block; 26 display:block; 33 display:block;
|
/external/e2fsprogs/e2fsck/ |
extend.c | 32 char *block; local 47 block = malloc(blocksize); 48 if (block == 0) { 49 fprintf(stderr, _("Couldn't allocate block buffer (size=%d)\n"), 53 memset(block, 0, blocksize); 65 ret = read(fd, block, blocksize); 75 ret = write(fd, block, blocksize);
|
/external/chromium_org/dbus/ |
dbus_statistics_unittest.cc | 64 int sent = 0, received = 0, block = 0; local 69 "service1", "service1.interface1", "method1", &sent, &received, &block)); 72 EXPECT_EQ(0, block); 77 "service1", "service1.interface1", "method1", &sent, &received, &block)); 80 EXPECT_EQ(0, block); 82 // Add a block call 86 "service1", "service1.interface1", "method1", &sent, &received, &block)); 89 EXPECT_EQ(1, block); 93 int sent = 0, received = 0, block = 0; local 101 "service1", "service1.interface1", "method1", &sent, &received, &block)); [all...] |
/external/stressapptest/src/ |
disk_blocks.cc | 69 void DiskBlockTable::InsertOnStructure(BlockData *block) { 70 int64 address = block->GetAddress(); 72 sd->block = block; 74 // Creating new block ... 87 int DiskBlockTable::RemoveBlock(BlockData *block) { 90 int64 address = block->GetAddress(); 107 block->DecreaseReferenceCounter(); 108 if (block->GetReferenceCounter() == 0) 109 delete block; 183 BlockData *block = new BlockData(); local [all...] |
/frameworks/av/media/libnbaio/ |
NBAIO.cpp | 141 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block) 150 if (block == 0 || block > maxBlock) { 151 block = maxBlock; 153 double buffer[((frameSize * block) + sizeof(double) - 1) / sizeof(double)]; 157 if (count > block) { 158 count = block; 178 int64_t readPTS, size_t block) 187 if (block == 0 || block > maxBlock) [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
ConditionVariableTest.java | 36 assertFalse(mConditionVariable.block(BLOCK_TIME)); 37 assertFalse(new ConditionVariable(false).block(BLOCK_TIME)); 38 assertTrue(new ConditionVariable(true).block(BLOCK_TIME)); 42 // test open then block(long) 45 assertTrue(mConditionVariable.block(BLOCK_TIME)); 48 // test close then block(long) 51 assertFalse(mConditionVariable.block(BLOCK_TIME)); 54 // test block then open 69 mConditionVariable.block(); 88 assertTrue(mConditionVariable.block(BLOCK_TIME)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLImport.cpp | 59 child->block(); 91 void HTMLImport::block() function in class:WebCore::HTMLImport 130 void HTMLImport::block(HTMLImport* import) function in class:WebCore::HTMLImport 132 import->block(); 134 block(import->m_children[i]); 145 HTMLImport::block(sibling); 148 this->block();
|
/system/core/libsparse/ |
backed_block.c | 27 unsigned int block; member in struct:backed_block 72 return bb->block; 181 if (!bb->next || bb->next->block > start->block) { 196 /* Block doesn't exist (possible if one block is the last block) */ 201 assert(a->block < b->block); 210 if (a->block + block_len != b->block) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
RFC3394WrapEngine.java | 84 byte[] block = new byte[inLen + iv.length]; 87 System.arraycopy(iv, 0, block, 0, iv.length); 88 System.arraycopy(in, 0, block, iv.length, inLen); 96 System.arraycopy(block, 0, buf, 0, iv.length); 97 System.arraycopy(block, 8 * i, buf, iv.length, 8); 110 System.arraycopy(buf, 0, block, 0, 8); 111 System.arraycopy(buf, 8, block, 8 * i, 8); 115 return block; 136 byte[] block = new byte[inLen - iv.length]; 141 System.arraycopy(in, iv.length, block, 0, inLen - iv.length) [all...] |
/external/yaffs2/yaffs2/direct/ |
yaffs_flashif.c | 43 yflash_Page page[32]; // The pages in the block 51 yflash_Block **block; member in struct:__anon30777 75 ramdisk.block = YMALLOC(sizeof(yflash_Block *) * ramdisk.nBlocks); 77 if(!ramdisk.block) return 0; 81 ramdisk.block[i] = NULL; 86 if((ramdisk.block[i] = YMALLOC(sizeof(yflash_Block))) == 0) 101 YFREE(ramdisk.block[i]); 103 YFREE(ramdisk.block); 129 memcpy(ramdisk.block[blk]->page[pg].data,data,512); 137 memcpy(&ramdisk.block[blk]->page[pg].data[512],&pt,sizeof(pt)) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaInsn.java | 30 /** {@code non-null;} the block that contains this instance */ 31 private final SsaBasicBlock block; field in class:SsaInsn 40 * @param block {@code non-null;} block containing this insn. Can 43 protected SsaInsn(RegisterSpec result, SsaBasicBlock block) { 44 if (block == null) { 45 throw new NullPointerException("block == null"); 48 this.block = block; 56 * @param block {@code non-null;} owning bloc [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_linear.c | 42 size_t bytes = t->cols * t->block.size; 66 size_t bytes = t->cols * t->block.size; 85 const struct u_linear_format_block *block, 89 t->block = *block; 93 t->cols = t->tile.width / t->block.width; 94 t->rows = t->tile.height / t->block.height; 95 t->tile.size = t->cols * t->rows * t->block.size; 99 t->stride = t->cols * t->tiles_x * t->block.size;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_rast_debug.c | 55 const struct cmd_block *block, 61 if (block->cmd[k] == LP_RAST_OP_SHADE_TILE || 62 block->cmd[k] == LP_RAST_OP_SHADE_TILE_OPAQUE || 63 block->cmd[k] == LP_RAST_OP_TRIANGLE_1 || 64 block->cmd[k] == LP_RAST_OP_TRIANGLE_2 || 65 block->cmd[k] == LP_RAST_OP_TRIANGLE_3 || 66 block->cmd[k] == LP_RAST_OP_TRIANGLE_4 || 67 block->cmd[k] == LP_RAST_OP_TRIANGLE_5 || 68 block->cmd[k] == LP_RAST_OP_TRIANGLE_6 || 69 block->cmd[k] == LP_RAST_OP_TRIANGLE_7 236 const struct cmd_block *block; local [all...] |
/external/chromium_org/third_party/re2/util/ |
arena.cc | 50 // We do not know for sure whether or not the first block is aligned, 72 AllocatedBlock *block; local 73 // Find the next block. 76 block = &first_blocks_[blocks_alloced_++]; 79 // Adds another block to the vector. 81 // block points to the last block of the vector. 82 block = &overflow_blocks_->back(); 85 block->mem = reinterpret_cast<char*>(malloc(block_size)); 86 block->size = block_size 129 AllocatedBlock *block = AllocNewBlock(block_size_); local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_linear.c | 42 size_t bytes = t->cols * t->block.size; 66 size_t bytes = t->cols * t->block.size; 85 const struct u_linear_format_block *block, 89 t->block = *block; 93 t->cols = t->tile.width / t->block.width; 94 t->rows = t->tile.height / t->block.height; 95 t->tile.size = t->cols * t->rows * t->block.size; 99 t->stride = t->cols * t->tiles_x * t->block.size;
|