Searched refs:mc (Results 1 - 25 of 743) sorted by relevance

1234567891011>>

/external/valgrind/main/drd/
H A Ddrd_malloc_wrappers.c91 DRD_Chunk* mc; local
102 mc = VG_(malloc)("drd.malloc_wrappers.cDC.1", sizeof(DRD_Chunk));
103 mc->data = p;
104 mc->size = size;
105 mc->where = VG_(record_ExeContext)(tid, 0);
106 VG_(HT_add_node)(s_malloc_list, mc);
124 DRD_Chunk* mc; local
130 mc = VG_(HT_lookup)(s_malloc_list, (UWord)p);
131 if (mc)
133 tl_assert(p == mc
180 DRD_Chunk* mc; local
284 DRD_Chunk* mc; local
321 DRD_Chunk* mc; local
347 DRD_Chunk* mc; local
[all...]
/external/llvm/test/MC/AsmParser/
H A Ddirective_line.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s
2 # RUN: llvm-mc -triple i386-unknown-unknown %s -filetype=null
H A Ddollars-in-identifiers.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s > %t
H A Dextern.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
H A Dline_with_hash.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
H A Ddirective_lcomm.s1 # RUN: llvm-mc -triple i386-apple-darwin10 %s | FileCheck %s
2 # RUN: llvm-mc -triple i386-pc-mingw32 %s | FileCheck %s
3 # RUN: not llvm-mc -triple i386-linux-gnu %s 2>&1 | FileCheck %s -check-prefix=ERROR
H A Ddirective_file.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2 # RUN: llvm-mc -triple i386-unknown-unknown %s -filetype=null
H A Ddirective_loc.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2 # RUN: llvm-mc -triple i386-unknown-unknown %s -filetype=null
H A Ddirective_subsections_via_symbols.s1 # RUN: llvm-mc -triple i386-apple-darwin9 %s | FileCheck %s
H A Ddirective_incbin.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s -I %p | FileCheck %s
H A Ddirective_thread_init_func.s1 # RUN: llvm-mc -triple x86_64-unknown-darwin %s | FileCheck %s
/external/libcxx/test/re/re.regex/re.regex.construct/
H A Dptr.pass.cpp21 test(const CharT* p, unsigned mc) argument
25 assert(r.mark_count() == mc);
H A Dstring.pass.cpp22 test(const String& p, unsigned mc) argument
26 assert(r.mark_count() == mc);
/external/llvm/test/MC/COFF/
H A Dinvalid-endef.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
H A Dinvalid-scl.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
H A Dinvalid-type.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c81 void delete_MC_Chunk (MC_Chunk* mc);
99 static void add_to_freed_queue ( MC_Chunk* mc )
102 const int l = (mc->szB >= MC_(clo_freelist_big_blocks) ? 0 : 1);
109 mc->next = NULL;
110 freed_list_end[l] = freed_list_start[l] = mc;
113 if (mc->szB >= MC_(clo_freelist_vol)) {
114 mc->next = freed_list_start[l];
115 freed_list_start[l] = mc;
117 mc->next = NULL;
118 freed_list_end[l]->next = mc;
175 MC_Chunk* mc; local
193 MC_Chunk* mc = VG_(allocEltPA)(MC_(chunk_poolalloc)); local
221 delete_MC_Chunk(MC_Chunk* mc) argument
227 in_block_list(VgHashTable block_list, MC_Chunk* mc) argument
251 live_block(MC_Chunk* mc) argument
267 allocated_at(MC_Chunk* mc) argument
280 freed_at(MC_Chunk* mc) argument
295 set_allocated_at(ThreadId tid, MC_Chunk* mc) argument
308 set_freed_at(ThreadId tid, MC_Chunk* mc) argument
370 MC_Chunk* mc; local
458 die_and_free_mem( ThreadId tid, MC_Chunk* mc, SizeT rzB ) argument
483 record_freemismatch_error(ThreadId tid, MC_Chunk* mc) argument
499 MC_Chunk* mc; local
650 MC_Chunk* mc = VG_(HT_lookup) ( MC_(malloc_list), (UWord)p ); local
664 MC_Chunk* mc = VG_(HT_lookup) ( MC_(malloc_list), (UWord)p ); local
737 MC_Chunk* mc; local
886 MC_Chunk* mc; local
921 MC_Chunk* mc; local
1057 MC_Chunk* mc; local
1105 MC_Chunk* mc; local
[all...]
/external/llvm/test/MC/X86/
H A Dx86_nop.s1 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=generic %s | llvm-objdump -d - | FileCheck %s
2 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i386 %s | llvm-objdump -d - | FileCheck %s
3 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i486 %s | llvm-objdump -d - | FileCheck %s
4 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i586 %s | llvm-objdump -d - | FileCheck %s
5 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium %s | llvm-objdump -d - | FileCheck %s
6 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium-mmx %s | llvm-objdump -d - | FileCheck %s
7 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=geode %s | llvm-objdump -d - | FileCheck %s
8 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i686 %s | llvm-objdump -d - | FileCheck %s
9 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=k6 %s | llvm-objdump -d - | FileCheck %s
10 # RUN: llvm-mc
[all...]
H A Dx86_directives.s1 # RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
/external/clang/unittests/Basic/
H A DMakefile12 LINK_COMPONENTS := support mc
/external/llvm/test/MC/ARM/
H A D2013-03-18-Br-to-label-named-like-reg.s1 @ RUN: llvm-mc -triple arm-eabi %s -o - | FileCheck %s
H A Dldr-pseudo-parse-errors.s1 @RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s 2>&1 | FileCheck %s
2 @RUN: not llvm-mc -triple=armv7-apple-darwin < %s 2>&1 | FileCheck %s
/external/llvm/test/MC/Sparc/
H A Dsparc-directive-xword.s1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32
2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARC64
/external/llvm/test/MC/X86/AlignedBundling/
H A Dbundle-group-too-large-error.s1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
/external/llvm/tools/llvm-mc/
H A DMakefile1 ##===- tools/llvm-mc/Makefile ------------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-mc

Completed in 295 milliseconds

1234567891011>>