Searched refs:block (Results 1 - 25 of 929) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/amd64/
H A Dbug132813-amd64.c6 unsigned long long int block[3]; local
17 : : "r"(&block) : "rax","rdx","cc","memory"
20 block[0] - block[1], block[2]);
25 unsigned long long int block[3]; local
36 : : "r"(&block) : "rax","rdx","cc","memory"
39 block[0] - block[1], block[
44 unsigned long long int block[3]; local
63 unsigned long long int block[3]; local
82 unsigned long long int block[3]; local
101 unsigned long long int block[3]; local
121 unsigned long long int block[3]; local
140 unsigned long long int block[3]; local
[all...]
/external/valgrind/main/none/tests/x86/
H A Dbug132813-x86.c6 unsigned int block[3]; local
17 : : "r"(&block) : "eax","edx","cc","memory"
20 block[0] - block[1], block[2]);
25 unsigned int block[3]; local
36 : : "r"(&block) : "eax","edx","cc","memory"
39 block[0] - block[1], block[
44 unsigned int block[3]; local
63 unsigned int block[3]; local
82 unsigned int block[3]; local
101 unsigned int block[3]; local
121 unsigned int block[3]; local
140 unsigned int block[3]; local
[all...]
H A Djcxz.c8 UInt block[2]; local
9 block[0] = arg;
10 block[1] = 0xdeadbeef;
21 : /*out*/ : /*in*/ "m"(block[0]),
22 "m"(block[1]) : /*trash*/ "eax","ecx","cc","memory"
24 return block[1];
29 UInt block[2]; local
30 block[0] = arg;
31 block[1] = 0xdeadbeef;
42 : /*out*/ : /*in*/ "m"(block[
[all...]
H A Dbug135421-x86.c8 int block[2]; local
9 block[0] = x;
10 block[1] = 0;
18 : : /*in*/ "m"(block[0]), "m"(block[1]) : "esi","edi","memory"
20 return block[1];
H A Dbug125959-x86.c8 int block[3]; local
9 block[0] = (int)&buf[0];
10 block[1] = i;
11 block[2] = 0;
18 : : /*in*/"r"(block) : "esi", "ebx", "eax", "memory", "cc"
20 return block[2];
/external/skia/src/core/
H A DSkChunkAlloc.cpp23 Block* block = this; local
24 while (block) {
25 Block* next = block->fNext;
26 sk_free(block);
27 block = next;
32 Block* block = this; local
33 if (block) {
35 Block* next = block->fNext;
39 block = next;
42 return block;
78 Block* block = fPool; local
105 Block* block = fBlock; local
126 Block* block = fBlock; local
140 const Block* block = fBlock; local
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-impl.c37 HB_Pointer block = NULL; local
41 block = calloc( 1, size );
42 if ( !block )
47 return block;
52 _hb_realloc(HB_Pointer block, argument
59 block2 = realloc( block, new_size );
64 block = block2;
67 return block;
72 _hb_free( HB_Pointer block )
74 if ( block )
[all...]
/external/libpcap/
H A Dgencode.h192 struct slist *jt; /*only for relative jump in block*/
193 struct slist *jf; /*only for relative jump in block*/
225 struct block *succ;
226 struct block *pred;
230 struct block { struct
242 struct block *head;
243 struct block *link; /* link field used by optimizer */
255 struct block *b; /* protocol checks */
273 void gen_and(struct block *, struct block *);
[all...]
/external/valgrind/main/memcheck/tests/
H A Derr_disable2.c10 char* block = NULL; variable
22 usechar( block[5] );
27 block = malloc(10);
28 free(block);
H A Dsbfragment.stdout.exp1 after 3000 loops, last size block requested 96032008
/external/valgrind/main/none/tests/ppc32/
H A Dtest_gx.c11 double block[2]; local
12 block[0] = x;
18 : /*in*/ "b" (&block[0])
21 return block[1];
26 double block[2]; local
27 block[0] = x;
33 : /*in*/ "b" (&block[0])
36 return block[1];
41 double block[2]; local
42 block[
57 double block[2]; local
[all...]
/external/clang/tools/libclang/
H A DIndex_Internal.h25 #define INVOKE_BLOCK2(block, arg1, arg2) block(arg1, arg2)
29 // define and call the block manually.
31 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRow.cpp49 RenderMathMLBlock* block = toRenderMathMLBlock(current); local
50 int blockHeight = block->nonOperatorHeight();
78 RenderMathMLBlock* block = toRenderMathMLBlock(current); local
79 // Check to see if the non-operator block has a greater height.
80 if (!block->hasBase() && !block->isRenderMathMLOperator() && block->offsetHeight() > maxHeight)
81 maxHeight = block->offsetHeight();
82 if (block->hasBase() && block
108 RenderMathMLBlock* block = toRenderMathMLBlock(current); local
125 RenderMathMLBlock* block = toRenderMathMLBlock(firstChild()); local
[all...]
/external/chromium/net/disk_cache/
H A Dmapped_file_posix.cc35 bool MappedFile::Load(const FileBlock* block) { argument
36 size_t offset = block->offset() + view_size_;
37 return Read(block->buffer(), block->size(), offset);
40 bool MappedFile::Store(const FileBlock* block) { argument
41 size_t offset = block->offset() + view_size_;
42 return Write(block->buffer(), block->size(), offset);
H A Dmapped_file_win.cc45 bool MappedFile::Load(const FileBlock* block) { argument
46 size_t offset = block->offset() + view_size_;
47 return Read(block->buffer(), block->size(), offset);
50 bool MappedFile::Store(const FileBlock* block) { argument
51 size_t offset = block->offset() + view_size_;
52 return Write(block->buffer(), block->size(), offset);
/external/clang/test/CodeGen/
H A D2010-06-17-asmcrash.c9 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
12 :"+g"(h), "+S"(pixels), "+D"(block)
H A Dblockwithlocalstatic.c5 int (^block)(void) = ^ {
/external/clang/test/Index/
H A Dtargeted-cursor.m.h4 -(void)mm:(void (^)(I*))block;
/external/eigen/doc/snippets/
H A DMatrixBase_block_int_int.cpp3 cout << "Here is m.block<2,2>(1,1):" << endl << m.block<2,2>(1,1) << endl;
4 m.block<2,2>(1,1).setZero();
H A DMatrixBase_block_int_int_int_int.cpp3 cout << "Here is m.block(1, 1, 2, 2):" << endl << m.block(1, 1, 2, 2) << endl;
4 m.block(1, 1, 2, 2).setZero();
H A DMatrixBase_setIdentity.cpp2 m.block<3,3>(1,0).setIdentity();
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.cpp49 HandleSlot block = blocks[i]; local
50 heapRootMarker.mark(block, blockLength);
52 HandleSlot block = blocks[end]; local
53 heapRootMarker.mark(block, m_frame.m_next - block);
58 HandleSlot block = m_blockStack.grow(); local
59 m_frame.m_next = block;
60 m_frame.m_end = block + m_blockStack.blockLength;
/external/webkit/Source/WebCore/rendering/
H A DTrailingFloatsRootInlineBox.h35 TrailingFloatsRootInlineBox(RenderBlock* block) argument
36 : RootInlineBox(block)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java32 static void multiply(byte[] block, byte[] val) argument
34 byte[] tmp = Arrays.clone(block);
58 System.arraycopy(c, 0, block, 0, 16);
92 static void shiftRight(byte[] block) argument
98 int b = block[i] & 0xff;
99 block[i] = (byte) ((b >>> 1) | bit);
108 static void shiftRight(int[] block) argument
114 int b = block[i];
115 block[i] = (b >>> 1) | bit;
124 static void shiftRightN(int[] block, in argument
140 xor(byte[] block, byte[] val) argument
148 xor(int[] block, int[] val) argument
[all...]
/external/clang/test/SemaCXX/
H A Dprintf-block.cpp3 int (^block) (int, const char *,...) __attribute__((__format__(__printf__,2,3))) = ^ __attribute__((__format__(__printf__,2,3))) (int arg, const char *format,...) {return 5;};
16 block(n, "%s %d", str, n); // no-warning
17 block(n, "%s %s", hncs, n); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected type from format string was 'char *'}} expected-warning{{format specifies type 'char *' but the argument has type 'int'}}

Completed in 799 milliseconds

1234567891011>>