Searched defs:blocks (Results 1 - 25 of 190) sorted by relevance

12345678

/external/llvm/test/CodeGen/SystemZ/Large/
H A Dbranch-range-02.py3 # RUN: python %s | llc -mtriple=s390x-linux-gnu -align-all-blocks=8 | FileCheck %s
19 # with N == 256 + 4. The -align-all-blocks=8 option ensures that all blocks
20 # are 256 bytes in size. The first 4 blocks and the last 4 blocks are then
39 # ...lots of other blocks...
59 blocks = 256 + 4 variable
67 for i in xrange(blocks):
70 next = 'b%d' % (i + 1) if i + 1 < blocks else 'end'
71 other = 'end' if 2 * i < blocks els
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtst_getsize.c32 blk_t blocks; local
39 retval = ext2fs_get_device_size(argv[1], 1024, &blocks);
44 printf("%s is device has %u blocks.\n", argv[1], blocks);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.h30 * cost of being unable to explicitly free one of the allocated blocks.
41 struct memory_block * blocks; member in struct:memory_pool
/external/clang/test/CodeGenCXX/
H A D2006-09-12-OpaqueStructCrash.cpp25 B<C<Ty> > blocks; member in struct:D
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py17 blocks = {} variable
19 global blocks
40 blocks[u] = t
74 all_blocks = set([blocks[u] for u in uu])
97 block = blocks.get(u, last_block)
/external/mesa3d/src/compiler/nir/
H A Dnir_worklist.h39 /** Represents a double-ended queue of unique blocks
44 * caller must ensure that the blocks are properly indexed.
50 /* The number of blocks currently in the worklist */
53 /* The offset in the array of blocks at which the list starts */
56 /* A bitset of all of the blocks currently present in the worklist */
60 nir_block **blocks; member in struct:__anon15995
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dblock.c38 Status XvMCCreateBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCBlockArray *blocks) argument
47 assert(blocks);
49 blocks->context_id = context->context_id;
50 blocks->num_blocks = num_blocks;
51 blocks->blocks = MALLOC(BLOCK_SIZE_BYTES * num_blocks);
52 blocks->privData = NULL;
58 Status XvMCDestroyBlocks(Display *dpy, XvMCBlockArray *blocks) argument
61 assert(blocks);
62 FREE(blocks
68 XvMCCreateMacroBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCMacroBlockArray *blocks) argument
88 XvMCDestroyMacroBlocks(Display *dpy, XvMCMacroBlockArray *blocks) argument
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dblockdev.h49 /** Total number of blocks */
50 uint64_t blocks; member in struct:block_device
H A Dbitmap.h41 bitmap_block_t *blocks; member in struct:bitmap
58 free ( bitmap->blocks );
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_dense_alloc_test.cc34 IndexT blocks[N]; local
38 blocks[i] = idx;
45 IndexT idx = blocks[i];
/external/pdfium/third_party/bigint/
H A DBigIntegerUtils.hh58 BigInteger::Blk *blocks = new BigInteger::Blk[numBlocks]; local
68 blocks[blockNum] = curBlock;
72 BigInteger x(blocks, numBlocks, sign);
74 delete [] blocks;
/external/v8/src/crankshaft/
H A Dhydrogen-mark-unreachable.cc16 const ZoneList<HBasicBlock*>* blocks = graph()->blocks(); local
19 for (int i = 0; i < blocks->length(); i++) {
20 HBasicBlock* block = blocks->at(i);
22 bool is_reachable = blocks->at(0) == block;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-cbc.c29 int i, j, blocks; local
39 blocks = data_len / AES_BLOCK_SIZE;
40 for (i = 0; i < blocks; i++) {
65 int i, j, blocks; local
75 blocks = data_len / AES_BLOCK_SIZE;
76 for (i = 0; i < blocks; i++) {
/external/wpa_supplicant_8/src/crypto/
H A Daes-cbc.c29 int i, j, blocks; local
39 blocks = data_len / AES_BLOCK_SIZE;
40 for (i = 0; i < blocks; i++) {
65 int i, j, blocks; local
75 blocks = data_len / AES_BLOCK_SIZE;
76 for (i = 0; i < blocks; i++) {
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-cbc.c29 int i, j, blocks; local
39 blocks = data_len / AES_BLOCK_SIZE;
40 for (i = 0; i < blocks; i++) {
65 int i, j, blocks; local
75 blocks = data_len / AES_BLOCK_SIZE;
76 for (i = 0; i < blocks; i++) {
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dctr.c177 size_t blocks = len / 16; local
181 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) {
182 blocks = (1U << 28);
187 // amount of blocks to the exact overflow point...
188 ctr32 += (uint32_t)blocks;
189 if (ctr32 < blocks) {
190 blocks -= ctr32;
193 (*func)(in, out, blocks, key, ivec);
200 blocks *= 16;
201 len -= blocks;
[all...]
H A Dpolyval.c78 size_t blocks = todo / sizeof(polyval_block); local
79 for (size_t i = 0; i < blocks; i++) {
/external/fio/crc/
H A Dmurmur3.c52 const uint32_t *blocks = (const uint32_t *)(data + nblocks * 4); local
56 uint32_t k1 = blocks[i];
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_blocks.c48 XvMCBlockArray blocks = {0}; local
82 assert(XvMCCreateBlocks(display, NULL, 1, &blocks) == XvMCBadContext);
83 /* Test 0 blocks */
84 assert(XvMCCreateBlocks(display, &context, 0, &blocks) == BadValue);
86 assert(XvMCCreateBlocks(display, &context, min_required_blocks, &blocks) == Success);
88 assert(blocks.context_id == context.context_id);
89 /* Test number of blocks assigned and correct */
90 assert(blocks.num_blocks == min_required_blocks);
92 assert(blocks.blocks !
[all...]
/external/strace/
H A Dstat.h37 unsigned long long blocks; member in struct:strace_stat
/external/valgrind/include/
H A Dpub_tool_libcfile.h65 ULong blocks; member in struct:vg_stat
/external/adhd/cras/src/common/
H A Dcras_sbc_codec.c98 uint8_t blocks, uint8_t bitpool) {
118 data->sbc.blocks = blocks;
96 cras_sbc_codec_create(uint8_t freq, uint8_t mode, uint8_t subbands, uint8_t alloc, uint8_t blocks, uint8_t bitpool) argument
/external/e2fsprogs/contrib/android/
H A Dbasefs_allocator.c16 static void fs_free_blocks_range(ext2_filsys fs, struct block_range *blocks) argument
18 while (blocks) {
19 ext2fs_unmark_block_bitmap_range2(fs->block_map, blocks->start,
20 blocks->end - blocks->start + 1);
21 blocks = blocks->next;
25 static void fs_reserve_blocks_range(ext2_filsys fs, struct block_range *blocks) argument
27 while (blocks) {
29 blocks
[all...]
/external/f2fs-tools/fsck/
H A Dnode.h84 u64 blocks = le64_to_cpu(dn->inode_blk->i.i_blocks); local
86 dn->inode_blk->i.i_blocks = cpu_to_le64(blocks + 1);
/external/kernel-headers/original/uapi/linux/mmc/
H A Dioctl.h19 unsigned int blocks; member in struct:mmc_ioc_cmd

Completed in 1557 milliseconds

12345678