Searched refs:blocks (Results 1 - 25 of 195) sorted by relevance

12345678

/external/valgrind/main/memcheck/tests/
H A Dleak-0.stderr.exp1 leaked: 0 bytes in 0 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 1 blocks
4 suppressed: 0 bytes in 0 blocks
H A Dleak-cases-summary.stderr.exp1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
H A Derror_counts.stderr.exp7 leaked: 0 bytes in 0 blocks
8 dubious: 0 bytes in 0 blocks
9 reachable: 0 bytes in 0 blocks
10 suppressed: 0 bytes in 0 blocks
14 leaked: 77 bytes in 1 blocks
15 dubious: 88 bytes in 1 blocks
16 reachable: 99 bytes in 1 blocks
17 suppressed: 0 bytes in 0 blocks
H A Dleak-tree.stderr.exp1 leaked: 64 bytes in 4 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 48 bytes in 3 blocks
4 suppressed: 0 bytes in 0 blocks
5 16 bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dpointer-trace.stderr.exp1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dleak-cycle.stderr.exp1 leaked: 288 bytes in 18 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 0 blocks
4 suppressed: 0 bytes in 0 blocks
5 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
17 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
23 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dleak-cases-full.stderr.exp1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
5 16 bytes in 1 blocks are possibly lost in loss record ... of ...
11 16 bytes in 1 blocks are possibly lost in loss record ... of ...
17 16 bytes in 1 blocks are possibly lost in loss record ... of ...
23 16 bytes in 1 blocks are possibly lost in loss record ... of ...
29 16 bytes in 1 blocks are possibly lost in loss record ... of ...
35 16 bytes in 1 blocks ar
[all...]
H A Dtrivialleak.stderr.exp1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dcreatebug.py39 Options.blocks,
49 blocks = self._options.blocks
50 if not blocks:
51 blocks = state.get("bug_blocked")
52 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=cc)
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.cpp44 const Vector<HandleSlot>& blocks = m_blockStack.blocks(); local
47 int end = blocks.size() - 1;
49 HandleSlot block = blocks[i];
52 HandleSlot block = blocks[end];
H A DHandleStack.h85 const Vector<HandleSlot>& blocks = m_blockStack.blocks();
88 int i = blocks.size() - 1;
89 for ( ; blocks[i] + m_blockStack.blockLength != lastFrame.m_end; --i) {
91 blocks[i][j] = JSValue();
94 for (HandleSlot it = blocks[i] + m_blockStack.blockLength - 1; it != lastFrame.m_next - 1; --it)
/external/e2fsprogs/lib/ext2fs/
H A Dtst_getsize.c31 blk_t blocks; local
38 retval = ext2fs_get_device_size(argv[1], 1024, &blocks);
43 printf("%s is device has %u blocks.\n", argv[1], blocks);
/external/genext2fs/
H A Dtest.sh31 # Usage: dtest file-size number-of-blocks correct-checksum
33 size=$1; blocks=$2; checksum=$3
35 dgen $size $blocks
43 # Usage: ftest spec-file number-of-blocks correct-checksum
45 fname=$1; blocks=$2; checksum=$3
47 fgen $fname $blocks
H A Dtest-mount.sh34 # Usage: dtest-mount file-size number-of-blocks
36 size=$1; blocks=$2
38 dgen $size $blocks
47 pass dtest $size $blocks
54 # Usage: ftest-mount spec-file number-of-blocks
56 fname=$1; blocks=$2
58 fgen $fname $blocks
75 pass ftest $fname $blocks
H A Dtest-gen.lib9 # Usage: dgen file-size number-of-blocks
11 size=$1; blocks=$2
23 ./genext2fs -N 17 -b $blocks -d test -f -q ext2.img
28 # Usage: fgen spec-file number-of-blocks
30 fname=$1; blocks=$2;
34 ./genext2fs -N 92 -b $blocks -D test/$fname -f ext2.img
/external/markdown/markdown/
H A Dblockparser.py38 """ Parse Markdown blocks into an ElementTree object.
67 blocks which will be split on blank lines, it could contain only one
77 def parseBlocks(self, parent, blocks):
78 """ Process blocks of markdown text and attach to given etree node.
80 Given a list of ``blocks``, each blockprocessor is stepped through
81 until there are no blocks left. While an extension could potentially
89 while blocks:
91 if processor.test(parent, blocks[0]):
92 processor.run(parent, blocks)
H A Dblockprocessors.py5 This parser handles basic parsing of Markdown blocks. It doesn't concern itself
7 blocks, lists, quotes, etc.
11 as they need to alter how markdown blocks are parsed.
80 def run(self, parent, blocks):
95 the list of blocks.
100 * ``blocks``: A list of all remaining blocks of the document.
129 def run(self, parent, blocks):
130 block = blocks.pop(0)
187 """ Process code blocks
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-cbc.c35 int i, j, blocks; local
42 blocks = data_len / AES_BLOCK_SIZE;
43 for (i = 0; i < blocks; i++) {
68 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.c35 int i, j, blocks; local
42 blocks = data_len / AES_BLOCK_SIZE;
43 for (i = 0; i < blocks; i++) {
68 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.c35 int i, j, blocks; local
42 blocks = data_len / AES_BLOCK_SIZE;
43 for (i = 0; i < blocks; i++) {
68 int i, j, blocks; local
75 blocks = data_len / AES_BLOCK_SIZE;
76 for (i = 0; i < blocks; i++) {
/external/clang/test/CodeGenCXX/
H A D2006-09-12-OpaqueStructCrash.cpp24 B<C<Ty> > blocks; member in struct:D
/external/dbus/dbus/
H A Ddbus-mempool.c35 * blocks of small uniformly-sized objects. The main point is to avoid
84 * only saved so we can free all the blocks
104 DBusMemBlock *blocks; /**< blocks of memory from malloc() */ member in struct:DBusMemPool
188 block = pool->blocks;
234 block->next = pool->blocks;
235 pool->blocks = block;
268 if (pool->blocks == NULL ||
269 pool->blocks->used_so_far == pool->block_size)
313 block->next = pool->blocks;
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java71 TypedBlock[] blocks = TypedBlock.makeBlocks(minfo, ca, false);
73 mm.make(blocks, ca.getCode());
74 for (int i = 0; i < blocks.length; i++)
75 System.out.println(blocks[i]);
91 TypedBlock[] blocks = TypedBlock.makeBlocks(minfo, ca, true);
92 if (blocks == null)
96 mm.make(blocks, ca.getCode());
97 return mm.toStackMap(blocks);
112 TypedBlock[] blocks = TypedBlock.makeBlocks(minfo, ca, true);
113 if (blocks
134 make(TypedBlock[] blocks, byte[] code) argument
306 toStackMap(TypedBlock[] blocks) argument
468 toStackMap2(ConstPool cp, TypedBlock[] blocks) argument
[all...]
/external/bluetooth/bluez/sbc/
H A Dsbcenc.c48 int dualchannel, int snr, int blocks)
137 sbc.blocks = blocks == 4 ? SBC_BLK_4 :
138 blocks == 8 ? SBC_BLK_8 :
139 blocks == 12 ? SBC_BLK_12 : SBC_BLK_16;
142 fprintf(stderr, "encoding %s with rate %d, %d blocks, "
145 filename, srate, blocks, subbands, bitpool,
223 "\t-B, --blocks Number of blocks (4, 8, 12 or 16)\n"
235 { "blocks",
47 encode(char *filename, int subbands, int bitpool, int joint, int dualchannel, int snr, int blocks) argument
242 int snr = 0, blocks = 16; local
[all...]
/external/clang/tools/libclang/
H A DIndex_Internal.h23 #if __has_feature(blocks)
28 // If we are compiled with a compiler that doesn't have native blocks support,
41 #endif // !__has_feature(blocks)

Completed in 526 milliseconds

12345678