Home
last modified time | relevance | path

Searched refs:mc (Results 1 – 25 of 997) sorted by relevance

12345678910>>...40

/external/valgrind/main/drd/
Ddrd_malloc_wrappers.c91 DRD_Chunk* mc; in DRD_() local
102 mc = VG_(malloc)("drd.malloc_wrappers.cDC.1", sizeof(DRD_Chunk)); in DRD_()
103 mc->data = p; in DRD_()
104 mc->size = size; in DRD_()
105 mc->where = VG_(record_ExeContext)(tid, 0); in DRD_()
106 VG_(HT_add_node)(s_malloc_list, mc); in DRD_()
124 DRD_Chunk* mc; in DRD_() local
130 mc = VG_(HT_lookup)(s_malloc_list, (UWord)p); in DRD_()
131 if (mc) in DRD_()
133 tl_assert(p == mc->data); in DRD_()
[all …]
/external/valgrind/main/memcheck/
Dmc_malloc_wrappers.c81 void delete_MC_Chunk (MC_Chunk* mc);
99 static void add_to_freed_queue ( MC_Chunk* mc ) in add_to_freed_queue() argument
102 const int l = (mc->szB >= MC_(clo_freelist_big_blocks) ? 0 : 1); in add_to_freed_queue()
109 mc->next = NULL; in add_to_freed_queue()
110 freed_list_end[l] = freed_list_start[l] = mc; in add_to_freed_queue()
113 if (mc->szB >= MC_(clo_freelist_vol)) { in add_to_freed_queue()
114 mc->next = freed_list_start[l]; in add_to_freed_queue()
115 freed_list_start[l] = mc; in add_to_freed_queue()
117 mc->next = NULL; in add_to_freed_queue()
118 freed_list_end[l]->next = mc; in add_to_freed_queue()
[all …]
Dmc_errors.c788 void MC_(record_freemismatch_error) ( ThreadId tid, MC_Chunk* mc ) in MC_()
796 ai->Addr.Block.block_szB = mc->szB; in MC_()
798 ai->Addr.Block.allocated_at = MC_(allocated_at) (mc); in MC_()
799 ai->Addr.Block.freed_at = MC_(freed_at) (mc); in MC_()
800 VG_(maybe_record_error)( tid, Err_FreeMismatch, mc->data, /*s*/NULL, in MC_()
928 Bool addr_is_in_MC_Chunk_default_REDZONE_SZB(MC_Chunk* mc, Addr a) in addr_is_in_MC_Chunk_default_REDZONE_SZB() argument
930 return VG_(addr_is_in_block)( a, mc->data, mc->szB, in addr_is_in_MC_Chunk_default_REDZONE_SZB()
934 Bool addr_is_in_MC_Chunk_with_REDZONE_SZB(MC_Chunk* mc, Addr a, SizeT rzB) in addr_is_in_MC_Chunk_with_REDZONE_SZB() argument
936 return VG_(addr_is_in_block)( a, mc->data, mc->szB, in addr_is_in_MC_Chunk_with_REDZONE_SZB()
949 MC_Chunk* mc; in describe_addr() local
[all …]
/external/llvm/tools/llvm-config/
DLibraryDependencies.inc23 …VMAArch64AsmParser.a", 1, { "aarch64desc", "aarch64info", "aarch64utils", "mc", "mcparser", "suppo…
24 { "aarch64asmprinter", "libLLVMAArch64AsmPrinter.a", 1, { "aarch64utils", "mc", "support" } },
25 …arch64info", "aarch64utils", "analysis", "asmprinter", "codegen", "core", "mc", "scalaropts", "sel…
26 …{ "aarch64desc", "libLLVMAArch64Desc.a", 1, { "aarch64asmprinter", "aarch64info", "mc", "support" …
27 …{ "aarch64disassembler", "libLLVMAArch64Disassembler.a", 1, { "aarch64info", "aarch64utils", "mc",…
34 …{ "armasmparser", "libLLVMARMAsmParser.a", 1, { "armdesc", "arminfo", "mc", "mcparser", "support" …
35 { "armasmprinter", "libLLVMARMAsmPrinter.a", 1, { "mc", "support" } },
36 …nter", "armdesc", "arminfo", "analysis", "asmprinter", "codegen", "core", "mc", "scalaropts", "sel…
37 { "armdesc", "libLLVMARMDesc.a", 1, { "armasmprinter", "arminfo", "mc", "support" } },
38 { "armdisassembler", "libLLVMARMDisassembler.a", 1, { "armdesc", "arminfo", "mc", "support" } },
[all …]
/external/valgrind/main/coregrind/m_sigframe/
Dsigframe-mips64-linux.c250 struct vki_sigcontext *mc; in VG_() local
259 mc = &ucp->uc_mcontext; in VG_()
266 tst->arch.vex.guest_r1 = mc->sc_regs[1]; in VG_()
267 tst->arch.vex.guest_r2 = mc->sc_regs[2]; in VG_()
268 tst->arch.vex.guest_r3 = mc->sc_regs[3]; in VG_()
269 tst->arch.vex.guest_r4 = mc->sc_regs[4]; in VG_()
270 tst->arch.vex.guest_r5 = mc->sc_regs[5]; in VG_()
271 tst->arch.vex.guest_r6 = mc->sc_regs[6]; in VG_()
272 tst->arch.vex.guest_r7 = mc->sc_regs[7]; in VG_()
273 tst->arch.vex.guest_r8 = mc->sc_regs[8]; in VG_()
[all …]
Dsigframe-mips32-linux.c312 struct vki_sigcontext *mc; in VG_() local
324 mc = &ucp->uc_mcontext; in VG_()
333 mc = &(frame->sf_sc); in VG_()
341 tst->arch.vex.guest_r1 = mc->sc_regs[1]; in VG_()
342 tst->arch.vex.guest_r2 = mc->sc_regs[2]; in VG_()
343 tst->arch.vex.guest_r3 = mc->sc_regs[3]; in VG_()
344 tst->arch.vex.guest_r4 = mc->sc_regs[4]; in VG_()
345 tst->arch.vex.guest_r5 = mc->sc_regs[5]; in VG_()
346 tst->arch.vex.guest_r6 = mc->sc_regs[6]; in VG_()
347 tst->arch.vex.guest_r7 = mc->sc_regs[7]; in VG_()
[all …]
Dsigframe-ppc32-linux.c138 void stack_mcontext ( struct vki_mcontext *mc, in stack_mcontext() argument
144 (Addr)mc, sizeof(struct vki_pt_regs) ); in stack_mcontext()
146 # define DO(gpr) mc->mc_gregs[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr in stack_mcontext()
153 mc->mc_gregs[VKI_PT_NIP] = tst->arch.vex.guest_CIA; in stack_mcontext()
154 mc->mc_gregs[VKI_PT_MSR] = 0xf032; /* pretty arbitrary */ in stack_mcontext()
155 mc->mc_gregs[VKI_PT_ORIG_R3] = tst->arch.vex.guest_GPR3; in stack_mcontext()
156 mc->mc_gregs[VKI_PT_CTR] = tst->arch.vex.guest_CTR; in stack_mcontext()
157 mc->mc_gregs[VKI_PT_LNK] = tst->arch.vex.guest_LR; in stack_mcontext()
158 mc->mc_gregs[VKI_PT_XER] = LibVEX_GuestPPC32_get_XER(&tst->arch.vex); in stack_mcontext()
159 mc->mc_gregs[VKI_PT_CCR] = LibVEX_GuestPPC32_get_CR(&tst->arch.vex); in stack_mcontext()
[all …]
/external/llvm/test/MC/X86/
Dx86_nop.s1 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=generic %s | llvm-objdump -d - | FileCheck…
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…
6 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium-mmx %s | llvm-objdump -d - | FileC…
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 -filetype=obj -triple=i686-pc-linux -mcpu=k6-2 %s | llvm-objdump -d - | FileCheck %s
[all …]
Dx86_long_nop.s1 # RUN: llvm-mc -filetype=obj -arch=x86 -triple=x86_64-pc-linux-gnu %s | llvm-objdump -d -no-show-ra…
2 # RUN: llvm-mc -filetype=obj -arch=x86 -triple=i686-pc-linux-gnu %s | llvm-objdump -d -no-show-raw-…
3 # RUN: llvm-mc -filetype=obj -arch=x86 -triple=x86_64-apple-darwin10.0 %s | llvm-objdump -d -no-sho…
4 # RUN: llvm-mc -filetype=obj -arch=x86 -triple=i686-apple-darwin8 %s | llvm-objdump -d -no-show-raw…
5 # RUN: llvm-mc -filetype=obj -arch=x86 -triple=i686-pc-linux-gnu -mcpu=slm %s | llvm-objdump -d -no…
/external/llvm/test/MC/Mips/
Delf_eflags.s4 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r6 %s -o -| llvm-readobj -h |…
7 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r6 -mattr=+nan2008 %s -o -| l…
10 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r2 %s -o -| llvm-readobj -h |…
13 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r2 -mattr=+nan2008 %s -o -| l…
16 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64 %s -o -| llvm-readobj -h | F…
19 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64 -mattr=+nan2008 %s -o -| llv…
22 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32r6 %s -o -| llvm-readobj -h |…
25 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32r6 -mattr=+nan2008 %s -o -| l…
28 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32r2 %s -o -| llvm-readobj -h |…
31 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+nan2008 %s -o -| l…
[all …]
Dcpsetup.s1 # RUN: llvm-mc -triple mips64-unknown-unknown -mattr=-n64,+o32 -filetype=obj -o - %s | \
5 # RUN: llvm-mc -triple mips64-unknown-unknown -mattr=-n64,+o32 %s | \
8 # RUN: llvm-mc -triple mips64-unknown-unknown -mattr=-n64,+n32 -filetype=obj -o - %s | \
12 # RUN: llvm-mc -triple mips64-unknown-unknown -mattr=-n64,+n32 %s | \
15 # RUN: llvm-mc -triple mips64-unknown-unknown %s -filetype=obj -o - | \
19 # RUN: llvm-mc -triple mips64-unknown-unknown %s | \
Doddspreg.s1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -mattr=+fp64 | \
4 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -mattr=+fp64 -filetype=obj -o - | \
8 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -mattr=-n64,+n32 | \
11 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -mattr=-n64,+n32 -filetype=obj -o - | \
15 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 | \
18 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -filetype=obj -o - | \
/external/llvm/test/MC/Disassembler/AArch64/
Darm64-basic-a64-undefined.txt4 # RUN: echo "0x00 0x08 0x20 0xf8" | llvm-mc -triple arm64 -disassemble 2>&1 | FileCheck %s
5 # RUN: echo "0x00 0x88 0x20 0xf8" | llvm-mc -triple arm64 -disassemble 2>&1 | FileCheck %s
9 # RUN: echo "0x00 0x10 0xa0 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
10 # RUN: echo "0x00 0x10 0x60 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
11 # RUN: echo "0x00 0x14 0x20 0x0b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
14 # RUN: echo "0x00 0x00 0xc0 0x72" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
17 # RUN: echo "0x00 0x00 0xc0 0xeb" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
18 # RUN: echo "0x00 0x80 0x80 0x6b" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
21 # RUN: echo "0x00 0x80 0x00 0x53" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
24 # RUN: echo "0x00 0x40 0x00 0x2e" | llvm-mc -triple=arm64 -disassemble 2>&1 | FileCheck %s
[all …]
/external/eigen/bench/
DbenchBlasGemm.cpp30 void bench_eigengemm(MyMatrix& mc, const MyMatrix& ma, const MyMatrix& mb, int nbloops);
102 MyMatrix ma(M,K), mb(K,N), mc(M,N); in main() local
105 mc = MyMatrix::Random(M,N); in main()
123 …Major, CblasNoTrans, CblasNoTrans, M, N, K, alpha, ma.data(), K, mb.data(), N, beta, mc.data(), N); in main()
125 …Major, CblasNoTrans, CblasNoTrans, M, N, K, alpha, ma.data(), M, mb.data(), K, beta, mc.data(), M); in main()
138 mc = MyMatrix::Random(M,N); in main()
147 bench_eigengemm(mc, ma, mb, nbloops); in main()
165 void bench_eigengemm(MyMatrix& mc, const MyMatrix& ma, const MyMatrix& mb, int nbloops) in bench_eigengemm() argument
168 mc.noalias() += ma * mb; in bench_eigengemm()
176 MyMatrix ma(M,K), mb(K,N), mc(M,N), maT(K,M), mbT(N,K), meigen(M,N), mref(M,N); in check_product() local
[all …]
/external/llvm/test/MC/ARM/
Didiv.s1 @ RUN: llvm-mc -triple=armv7 -mcpu=cortex-a15 -show-encoding < %s 2>&1 | FileCheck -check-prefix A1…
2 @ RUN: llvm-mc -triple=thumbv7 -mcpu=cortex-a15 -show-encoding < %s 2>&1 | FileCheck -check-prefix …
4 @ RUN: llvm-mc -triple=armv7 -mcpu=cortex-a15 -mattr=-hwdiv -show-encoding < %s 2>&1 | FileCheck -c…
5 @ RUN: llvm-mc -triple=thumbv7 -mcpu=cortex-a15 -mattr=-hwdiv-arm -show-encoding < %s 2>&1 | FileCh…
7 @ RUN: llvm-mc -triple=armv8 -show-encoding < %s 2>&1 | FileCheck -check-prefix ARMV8 %s
8 @ RUN: llvm-mc -triple=thumbv8 -show-encoding < %s 2>&1 | FileCheck -check-prefix THUMBV8 %s
10 @ RUN: llvm-mc -triple=armv8 -mattr=-hwdiv -show-encoding < %s 2>&1 | FileCheck -check-prefix ARMV8…
11 @ RUN: llvm-mc -triple=thumbv8 -mattr=-hwdiv-arm -show-encoding < %s 2>&1 | FileCheck -check-prefix…
Darm-thumb-cpus-default.s1 @ RUN: llvm-mc -show-encoding -triple=arm-eabi < %s \
4 @ RUN: llvm-mc -show-encoding -triple=armv4t-eabi < %s \
7 @ RUN: llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-a15 < %s \
10 @ RUN: llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-m3 < %s \
13 @ RUN: llvm-mc -show-encoding -triple=armv7m-eabi < %s \
16 @ RUN: llvm-mc -show-encoding -triple=armv6m-eabi < %s \
Darm-thumb-cpus.s1 @ RUN: not llvm-mc -show-encoding -triple=arm-eabi < %s 2>&1 \
4 @ RUN: llvm-mc -show-encoding -triple=armv4t < %s 2>&1 \
7 @ RUN: llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-a15 < %s 2>&1 \
10 @ RUN: not llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-m3 < %s 2>&1 \
13 @ RUN: not llvm-mc -show-encoding -triple=armv7m-eabi < %s 2>&1 \
16 @ RUN: not llvm-mc -show-encoding -triple=armv6m-eabi < %s 2>&1 \
Ddirective-arch_extension-mp.s1 @ RUN: not llvm-mc -triple armv6-eabi -filetype asm -o /dev/null 2>&1 %s \
3 @ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null 2>&1 %s \
5 @ RUN: not llvm-mc -triple armv7m-eabi -filetype asm -o /dev/null 2>&1 %s \
7 @ RUN: not llvm-mc -triple thumbv6-eabi -filetype asm -o /dev/null 2>&1 %s \
9 @ RUN: not llvm-mc -triple thumbv7-eabi -filetype asm -o /dev/null 2>&1 %s \
11 @ RUN: not llvm-mc -triple thumbv7m-eabi -filetype asm -o /dev/null 2>&1 %s \
Ddirective-arch_extension-sec.s1 @ RUN: not llvm-mc -triple armv6-eabi -filetype asm -o /dev/null 2>&1 %s \
3 @ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null 2>&1 %s \
5 @ RUN: not llvm-mc -triple thumbv6-eabi -filetype asm -o /dev/null 2>&1 %s \
7 @ RUN: not llvm-mc -triple thumbv7-eabi -filetype asm -o /dev/null 2>&1 %s \
Ddirective-arch_extension-idiv.s1 @ RUN: not llvm-mc -triple armv6-eabi -filetype asm -o /dev/null 2>&1 %s \
3 @ RUN: not llvm-mc -triple armv7-eabi -filetype asm -o /dev/null 2>&1 %s \
5 @ RUN: not llvm-mc -triple armv7m-eabi -filetype asm -o /dev/null 2>&1 %s \
7 @ RUN: not llvm-mc -triple thumbv6-eabi -filetype asm -o /dev/null 2>&1 %s \
9 @ RUN: not llvm-mc -triple thumbv7-eabi -filetype asm -o /dev/null 2>&1 %s \
11 @ RUN: not llvm-mc -triple thumbv7m-eabi -filetype asm -o /dev/null 2>&1 %s \
/external/llvm/test/Transforms/InstCombine/
Dadd4.ll7 %mc = fsub float 1.000000e+00, %cf
8 %p1 = fmul fast float %A, %mc
40 %mc = fsub fast float 1.000000e+00, %cf
41 %p1 = fmul fast float %A, %mc
53 %mc = fsub fast float 1.000000e+00, %cf
54 %p1 = fmul fast float %A, %mc
65 %mc = fsub float 1.000000e+00, %cf
66 %p1 = fmul fast float %A, %mc
83 %mc = fsub fast <4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>, %cf
84 %p1 = fmul fast <4 x float> %A, %mc
[all …]
/external/chromium_org/gpu/command_buffer/client/
Dmapped_memory.cc95 MemoryChunk* mc = new MemoryChunk(id, shm, helper_, poll_callback_); in Alloc() local
96 allocated_memory_ += mc->GetSize(); in Alloc()
97 chunks_.push_back(mc); in Alloc()
98 void* mem = mc->Alloc(size); in Alloc()
100 *shm_id = mc->shm_id(); in Alloc()
101 *shm_offset = mc->GetOffset(mem); in Alloc()
/external/llvm/test/MC/AsmParser/
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
/external/llvm/test/MC/PowerPC/
Dppc-machine.s1 # RUN: llvm-mc -triple powerpc-unknown-unknown %s
2 # RUN: llvm-mc -triple powerpc64-unknown-unknown %s
3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown %s
Dppc-nop.s1 # RUN: llvm-mc -filetype=obj -triple=powerpc-unknown-linux-gnu %s | llvm-readobj -s -sd - | FileChe…
2 # RUN: llvm-mc -filetype=obj -triple=powerpc64-unknown-linux-gnu %s | llvm-readobj -s -sd - | FileC…
3 # RUN: llvm-mc -filetype=obj -triple=powerpc64le-unknown-linux-gnu %s | llvm-readobj -s -sd - | Fil…

12345678910>>...40