/external/e2fsprogs/tests/f_16384_block/ |
name | 1 16384 byte blocksize
|
/external/e2fsprogs/tests/f_8192_block/ |
name | 1 8192 byte blocksize
|
/external/e2fsprogs/misc/ |
mke2fs.conf | 3 blocksize = 4096 21 blocksize = 1024 26 blocksize = 1024 35 blocksize = -1 39 blocksize = -1 42 blocksize = 4096
|
default_profile.c | 4 " blocksize = 4096\n" 22 " blocksize = 1024\n" 27 " blocksize = 1024\n" 36 " blocksize = -1\n" 40 " blocksize = -1\n" 43 " blocksize = 4096\n"
|
dumpe2fs.8.in | 17 .B \-o blocksize=\fIblocksize 42 .B \-o blocksize=\fIblocksize 44 .I blocksize
|
/external/e2fsprogs/e2fsck/ |
extend.c | 21 fprintf(stderr, _("%s: %s filename nblocks blocksize\n"), 30 int nblocks, blocksize; local 40 blocksize = strtoul(argv[3], 0, 0); 47 block = malloc(blocksize); 50 blocksize); 53 memset(block, 0, blocksize); 60 ret = lseek(fd, nblocks*blocksize, SEEK_SET); 65 ret = read(fd, block, blocksize); 70 ret = lseek(fd, nblocks*blocksize, SEEK_SET); 75 ret = write(fd, block, blocksize); [all...] |
/external/clang/test/SemaCUDA/ |
config-type.cu | 3 void cudaConfigureCall(unsigned gridSize, unsigned blockSize); // expected-error {{must have scalar return type}}
|
cuda.h | 18 int cudaConfigureCall(dim3 gridSize, dim3 blockSize, size_t sharedSize = 0,
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/ |
CTSBlockCipher.java | 15 private int blockSize; 32 blockSize = cipher.getBlockSize(); 34 buf = new byte[blockSize * 2]; 95 System.arraycopy(buf, blockSize, buf, 0, blockSize); 97 bufOff = blockSize; 130 int blockSize = getBlockSize(); 149 System.arraycopy(buf, blockSize, buf, 0, blockSize); 151 bufOff = blockSize; [all...] |
CFBBlockCipher.java | 18 private int blockSize; 34 this.blockSize = bitBlockSize / 8; 108 return cipher.getAlgorithmName() + "/CFB" + (blockSize * 8); 118 return blockSize; 163 if ((inOff + blockSize) > in.length) 168 if ((outOff + blockSize) > out.length) 178 for (int i = 0; i < blockSize; i++) 186 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize); 187 System.arraycopy(out, outOff, cfbV, cfbV.length - blockSize, blockSize) [all...] |
OFBBlockCipher.java | 18 private final int blockSize; 26 * @param blockSize the block size in bits (note: a multiple of 8) 30 int blockSize) 33 this.blockSize = blockSize / 8; 105 return cipher.getAlgorithmName() + "/OFB" + (blockSize * 8); 116 return blockSize; 139 if ((inOff + blockSize) > in.length) 144 if ((outOff + blockSize) > out.length) 155 for (int i = 0; i < blockSize; i++ [all...] |
GOFBBlockCipher.java | 18 private final int blockSize; 38 this.blockSize = cipher.getBlockSize(); 40 if (blockSize != 8) 130 return blockSize; 153 if ((inOff + blockSize) > in.length) 158 if ((outOff + blockSize) > out.length) 181 for (int i = 0; i < blockSize; i++) 189 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize); 190 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize) [all...] |
SICBlockCipher.java | 15 private final int blockSize; 30 this.blockSize = cipher.getBlockSize(); 31 this.IV = new byte[blockSize]; 32 this.counter = new byte[blockSize]; 33 this.counterOut = new byte[blockSize];
|
/external/dropbear/libtomcrypt/src/mac/xcbc/ |
xcbc_process.c | 41 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher].block_length) || (xcbc->blocksize < 0) || 42 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) { 48 while (inlen > (unsigned long)xcbc->blocksize) { 49 for (x = 0; x < xcbc->blocksize; x += sizeof(LTC_FAST_TYPE)) { 53 in += xcbc->blocksize; 54 inlen -= xcbc->blocksize; 60 if (xcbc->buflen == xcbc->blocksize) {
|
xcbc_done.c | 37 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher].block_length) || (xcbc->blocksize < 0) || 38 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) { 43 if (xcbc->buflen == xcbc->blocksize) { 45 for (x = 0; x < xcbc->blocksize; x++) { 51 for (x = 0; x < xcbc->blocksize; x++) { 61 for (x = 0; x < xcbc->blocksize && (unsigned long)x < *outlen; x++) {
|
/external/dropbear/libtomcrypt/src/mac/f9/ |
f9_process.c | 38 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) || 39 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { 45 while (inlen >= (unsigned long)f9->blocksize) { 46 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) { 50 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) { 53 in += f9->blocksize; 54 inlen -= f9->blocksize; 60 if (f9->buflen == f9->blocksize) { 62 for (x = 0; x < f9->blocksize; x++) [all...] |
f9_done.c | 37 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) || 38 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { 46 for (x = 0; x < f9->blocksize; x++) { 61 for (x = 0; x < f9->blocksize && (unsigned long)x < *outlen; x++) {
|
/external/e2fsprogs/lib/ext2fs/ |
imager.c | 43 static int check_zero_block(char *buf, int blocksize) 46 int left = blocksize; 69 buf = malloc(fs->blocksize * BUF_BLOCKS); 94 if (check_zero_block(cp, fs->blocksize)) { 98 cp += fs->blocksize; 99 lseek(fd, fs->blocksize, SEEK_CUR); 104 if (check_zero_block(cp + d*fs->blocksize, fs->blocksize)) 108 actual = write(fd, cp, fs->blocksize * d); 113 if (actual != (ssize_t) (fs->blocksize * d)) [all...] |
getsize.c | 72 errcode_t ext2fs_get_device_size(const char *file, int blocksize, 96 *retblocks = pi.PartitionLength.QuadPart / blocksize; 106 gi.Cylinders.QuadPart / blocksize; 110 *retblocks = filesize.QuadPart / blocksize; 116 *retblocks = filesize / blocksize; 141 errcode_t ext2fs_get_device_size2(const char *file, int blocksize, 172 *retblocks = size64 / (blocksize / 512); 186 *retblocks = size64 / blocksize; 193 *retblocks = size / (blocksize / 512); 200 *retblocks = this_floppy.size / (blocksize / 512) [all...] |
newdir.c | 39 retval = ext2fs_get_mem(fs->blocksize, &buf); 42 memset(buf, 0, fs->blocksize); 45 retval = ext2fs_set_rec_len(fs, fs->blocksize, dir); 59 rec_len = fs->blocksize - EXT2_DIR_REC_LEN(1);
|
dir_iterate.c | 33 *rec_len = fs->blocksize; 43 if ((len > fs->blocksize) || (fs->blocksize > (1 << 18)) || (len & 3)) 49 if (len == fs->blocksize) { 50 if (fs->blocksize == 65536) 76 (offset <= fs->blocksize - DIRENT_MIN_LENGTH)) { 97 int blocksize, 116 retval = ext2fs_get_mem(fs->blocksize, &ctx.buf); 135 int blocksize, 144 int blocksize, char *buf, void *priv_data variable [all...] |
rw_bitmaps.c | 55 retval = ext2fs_get_mem(fs->blocksize, &block_buf); 58 memset(block_buf, 0xff, fs->blocksize); 63 retval = ext2fs_get_mem(fs->blocksize, &inode_buf); 66 memset(inode_buf, 0xff, fs->blocksize); 88 for (j = nbits; j < fs->blocksize * 8; j++) 172 retval = ext2fs_get_mem(do_image ? fs->blocksize : 186 retval = ext2fs_get_mem(do_image ? fs->blocksize : 195 blk = (fs->image_header->offset_inodemap / fs->blocksize); 202 cnt = fs->blocksize << 3; 209 ino_itr += fs->blocksize << 3 [all...] |
ind_block.c | 28 int limit = fs->blocksize >> 2; 33 memset(buf, 0, fs->blocksize); 52 int limit = fs->blocksize >> 2;
|
/external/dropbear/ |
packet.c | 99 unsigned char blocksize; local 102 blocksize = ses.keys->recv_algo_crypt->blocksize; 104 if (ses.readbuf == NULL || ses.readbuf->len < blocksize) { 105 /* In the first blocksize of a packet */ 107 /* Read the first blocksize of the packet, so we can decrypt it and 112 * a whole blocksize and should exit */ 150 * length. Only called during the first BLOCKSIZE of a packet. */ 155 unsigned char blocksize; local 159 blocksize = ses.keys->recv_algo_crypt->blocksize 199 blocksize); local 229 unsigned char blocksize; local 413 unsigned char blocksize, macsize; local [all...] |
/external/e2fsprogs/debugfs/ |
unused.c | 47 for (i=0; i < current_fs->blocksize; i++) 50 if (i >= current_fs->blocksize) 54 for (i=0; i < current_fs->blocksize; i++)
|