HomeSort by relevance Sort by last modified time
    Searched refs:blocks (Results 176 - 200 of 459) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/mmc/
mmc.h 69 unsigned int blocks; member in struct:mmc_data
  /system/extras/ext4_utils/
extent.c 83 u64 blocks; local
86 error("Failed to allocate %d blocks\n", block_len + 1);
165 blocks = (u64)block_len * info.block_size / 512;
170 inode->i_blocks_lo = blocks;
171 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
178 /* Allocates enough blocks to hold len bytes, with backing_len bytes in a data
204 /* Allocates enough blocks to hold len bytes, queues them to be written
222 /* Allocates enough blocks to hold len bytes and connects them to an inode */
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
HDRRenderer.java 175 Vector2f blocks = new Vector2f(); local
180 blocks.set(blockSize.x / pixelSize.x,
182 numPixels = blocks.x * blocks.y;
185 blocks.set(blockSize.x / pixelSize.x,
187 numPixels = blocks.x * blocks.y;
191 mat.setBoolean("Blocks", true);
  /system/core/libsparse/
sparse_read.c 99 int fd, int64_t offset, unsigned int blocks, unsigned int block,
104 unsigned int len = blocks * s->block_size;
110 if (chunk_size / s->block_size != blocks) {
137 int fd, unsigned int blocks, unsigned int block, uint32_t *crc32)
141 int64_t len = (int64_t)blocks * s->block_size;
178 int fd, unsigned int blocks, unsigned int block, uint32_t *crc32)
182 int64_t len = (int64_t)blocks * s->block_size;
  /external/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 111 void aesni_cbc_sha1_enc (const void *inp, void *out, size_t blocks,
189 blocks; local
207 if (plen>(sha_off+iv) && (blocks=(plen-(sha_off+iv))/SHA_CBLOCK)) {
210 aesni_cbc_sha1_enc(in,out,blocks,&key->ks,
212 blocks *= SHA_CBLOCK;
213 aes_off += blocks;
214 sha_off += blocks;
215 key->md.Nh += blocks>>29;
216 key->md.Nl += blocks<<=3;
217 if (key->md.Nl<(unsigned int)blocks) key->md.Nh++
    [all...]
  /external/openssl/crypto/modes/
ccm128.c 68 ctx->blocks = 0;
113 ctx->blocks++;
147 ctx->blocks++;
183 ctx->blocks++;
196 ctx->blocks += ((len+15)>>3)|1;
197 if (ctx->blocks > (U64(1)<<61)) return -2; /* too much data */
337 ctx->blocks++;
350 ctx->blocks += ((len+15)>>3)|1;
351 if (ctx->blocks > (U64(1)<<61)) return -2; /* too much data */
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mux.py 321 blocks = list(parser.read_control_blocks())
322 self.assertEqual(4, len(blocks))
324 self.assertEqual(mux._MUX_OPCODE_ADD_CHANNEL_REQUEST, blocks[0].opcode)
325 self.assertEqual(0, blocks[0].encoding)
326 self.assertEqual(0, len(blocks[0].encoded_handshake))
328 self.assertEqual(mux._MUX_OPCODE_DROP_CHANNEL, blocks[1].opcode)
329 self.assertEqual(0, blocks[1].mux_error)
330 self.assertEqual(0x0100, len(blocks[1].reason))
332 self.assertEqual(mux._MUX_OPCODE_ADD_CHANNEL_REQUEST, blocks[2].opcode)
333 self.assertEqual(2, blocks[2].encoding
    [all...]
  /external/e2fsprogs/lib/ext2fs/
mkjournal.c 138 * Convenience function which zeros out _num_ blocks starting at
310 * of free blocks.
372 * Find a reasonable journal file size (in blocks) given the number of blocks
376 int ext2fs_default_journal_size(__u64 blocks)
378 if (blocks < 2048)
380 if (blocks < 32768)
382 if (blocks < 256*1024)
384 if (blocks < 512*1024)
386 if (blocks < 1024*1024
    [all...]
  /external/grub/stage2/
fsys_vstafs.c 81 a = FILE_INFO->blocks;
198 a = FILE_INFO->blocks;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 41 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 45 (* Simplify the control flow graph (deleting unreachable blocks, etc). *)
  /external/markdown/markdown/extensions/
codehilite.py 7 Adds code/syntax highlighting to standard Python-Markdown code blocks.
179 """ Hilight source code in code blocks. """
182 """ Find code blocks and store in htmlStash. """
183 blocks = root.getiterator('pre')
184 for block in blocks:
  /external/valgrind/main/memcheck/tests/
badjump.stderr.exp 19 in use at exit: ... bytes in ... blocks
noisy_child.stderr.exp 17 in use at exit: ... bytes in ... blocks
partial_load_ok.stderr.exp 22 in use at exit: ... bytes in ... blocks
  /external/valgrind/main/memcheck/tests/darwin/
aio.stderr.exp 16 in use at exit: ... bytes in ... blocks

Completed in 575 milliseconds

1 2 3 4 5 6 78 91011>>