Home
last modified time | relevance | path

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

12345678910>>...49

/external/valgrind/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/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 …]
/external/valgrind/coregrind/m_sigframe/
Dsigframe-tilegx-linux.c252 struct vki_sigcontext *mc; in VG_() local
270 mc = &ucp->uc_mcontext; in VG_()
281 tst->arch.vex.guest_r0 = mc->gregs[0]; in VG_()
282 tst->arch.vex.guest_r1 = mc->gregs[1]; in VG_()
283 tst->arch.vex.guest_r2 = mc->gregs[2]; in VG_()
284 tst->arch.vex.guest_r3 = mc->gregs[3]; in VG_()
285 tst->arch.vex.guest_r4 = mc->gregs[4]; in VG_()
286 tst->arch.vex.guest_r5 = mc->gregs[5]; in VG_()
287 tst->arch.vex.guest_r6 = mc->gregs[6]; in VG_()
288 tst->arch.vex.guest_r7 = mc->gregs[7]; in VG_()
[all …]
Dsigframe-mips64-linux.c211 struct vki_sigcontext *mc; in VG_() local
220 mc = &ucp->uc_mcontext; in VG_()
227 tst->arch.vex.guest_r1 = mc->sc_regs[1]; in VG_()
228 tst->arch.vex.guest_r2 = mc->sc_regs[2]; in VG_()
229 tst->arch.vex.guest_r3 = mc->sc_regs[3]; in VG_()
230 tst->arch.vex.guest_r4 = mc->sc_regs[4]; in VG_()
231 tst->arch.vex.guest_r5 = mc->sc_regs[5]; in VG_()
232 tst->arch.vex.guest_r6 = mc->sc_regs[6]; in VG_()
233 tst->arch.vex.guest_r7 = mc->sc_regs[7]; in VG_()
234 tst->arch.vex.guest_r8 = mc->sc_regs[8]; in VG_()
[all …]
Dsigframe-mips32-linux.c271 struct vki_sigcontext *mc; in VG_() local
283 mc = &ucp->uc_mcontext; in VG_()
292 mc = &(frame->sf_sc); in VG_()
300 tst->arch.vex.guest_r1 = mc->sc_regs[1]; in VG_()
301 tst->arch.vex.guest_r2 = mc->sc_regs[2]; in VG_()
302 tst->arch.vex.guest_r3 = mc->sc_regs[3]; in VG_()
303 tst->arch.vex.guest_r4 = mc->sc_regs[4]; in VG_()
304 tst->arch.vex.guest_r5 = mc->sc_regs[5]; in VG_()
305 tst->arch.vex.guest_r6 = mc->sc_regs[6]; in VG_()
306 tst->arch.vex.guest_r7 = mc->sc_regs[7]; in VG_()
[all …]
Dsigframe-ppc32-linux.c137 void stack_mcontext ( struct vki_mcontext *mc, in stack_mcontext() argument
143 (Addr)mc, sizeof(struct vki_pt_regs) ); in stack_mcontext()
145 # define DO(gpr) mc->mc_gregs[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr in stack_mcontext()
152 mc->mc_gregs[VKI_PT_NIP] = tst->arch.vex.guest_CIA; in stack_mcontext()
153 mc->mc_gregs[VKI_PT_MSR] = 0xf032; /* pretty arbitrary */ in stack_mcontext()
154 mc->mc_gregs[VKI_PT_ORIG_R3] = tst->arch.vex.guest_GPR3; in stack_mcontext()
155 mc->mc_gregs[VKI_PT_CTR] = tst->arch.vex.guest_CTR; in stack_mcontext()
156 mc->mc_gregs[VKI_PT_LNK] = tst->arch.vex.guest_LR; in stack_mcontext()
157 mc->mc_gregs[VKI_PT_XER] = LibVEX_GuestPPC32_get_XER(&tst->arch.vex); in stack_mcontext()
158 mc->mc_gregs[VKI_PT_CCR] = LibVEX_GuestPPC32_get_CR(&tst->arch.vex); in stack_mcontext()
[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/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/apache-commons-math/src/main/java/org/apache/commons/math/util/
DBigReal.java85 public BigReal(BigInteger unscaledVal, int scale, MathContext mc) { in BigReal() argument
86 d = new BigDecimal(unscaledVal, scale, mc); in BigReal()
93 public BigReal(BigInteger val, MathContext mc) { in BigReal() argument
94 d = new BigDecimal(val, mc); in BigReal()
119 public BigReal(char[] in, int offset, int len, MathContext mc) { in BigReal() argument
120 d = new BigDecimal(in, offset, len, mc); in BigReal()
127 public BigReal(char[] in, MathContext mc) { in BigReal() argument
128 d = new BigDecimal(in, mc); in BigReal()
142 public BigReal(double val, MathContext mc) { in BigReal() argument
143 d = new BigDecimal(val, mc); in BigReal()
[all …]
/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 |…
11 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r3 %s -o -| llvm-readobj -h |…
12 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r5 %s -o -| llvm-readobj -h |…
15 # 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=mips64r3 -mattr=+nan2008 %s -o -| l…
17 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r5 -mattr=+nan2008 %s -o -| l…
20 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64 %s -o -| llvm-readobj -h | F…
23 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64 -mattr=+nan2008 %s -o -| llv…
[all …]
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 -target-abi n32 | \
11 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -target-abi n32 -filetype=obj -o - | \
15 # RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 | \
20 # RUN: llvm-mc /dev/null -arch=mips64 -mcpu=mips64 -filetype=obj -o - | \
24 # RUN: llvm-mc /dev/null -arch=mips -mcpu=mips32 -mattr=+fp64 -filetype=obj -o - | \
28 # RUN: llvm-mc /dev/null -arch=mips64 -mcpu=mips64 -target-abi n32 -filetype=obj -o - | \
32 # RUN: llvm-mc /dev/null -arch=mips64 -mcpu=mips64 -filetype=obj -o - | \
Dcpsetup.s1 # RUN: llvm-mc -triple mips64-unknown-unknown -target-abi o32 -filetype=obj -o - %s | \
5 # RUN: llvm-mc -triple mips64-unknown-unknown -target-abi o32 %s | \
8 # RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 -filetype=obj -o - %s | \
12 # RUN: llvm-mc -triple mips64-unknown-unknown -target-abi n32 %s | \
15 # RUN: llvm-mc -triple mips64-unknown-unknown %s -filetype=obj -o - | \
19 # RUN: llvm-mc -triple mips64-unknown-unknown %s | \
/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/
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 \
19 @ RUN: not llvm-mc -show-encoding -triple=armv6sm-eabi < %s 2>&1 \
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…
Dthumb2-bxj.s1 @ RUN: llvm-mc -triple=thumbv6t2--none-eabi -show-encoding < %s | FileCheck %s
2 @ RUN: llvm-mc -triple=thumbv7a--none-eabi -show-encoding < %s | FileCheck %s
3 @ RUN: llvm-mc -triple=thumbv7r--none-eabi -show-encoding < %s | FileCheck %s
4 @ RUN: llvm-mc -triple=thumbv8a--none-eabi -show-encoding < %s | FileCheck %s
5 @ RUN: not llvm-mc -triple=thumbv7m--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pref…
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 \
Dthumb2-ldrexd-strexd.s1 @ RUN: llvm-mc -triple=thumbv6t2--none-eabi -show-encoding < %s | FileCheck %s
2 @ RUN: llvm-mc -triple=thumbv7a--none-eabi -show-encoding < %s | FileCheck %s
3 @ RUN: llvm-mc -triple=thumbv7r--none-eabi -show-encoding < %s | FileCheck %s
4 @ RUN: llvm-mc -triple=thumbv8a--none-eabi -show-encoding < %s | FileCheck %s
5 @ RUN: not llvm-mc -triple=thumbv7m--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pref…
Dcps.s1 @ RUN: llvm-mc -triple=thumbv6t2--none-eabi -show-encoding < %s | FileCheck %s
2 @ RUN: llvm-mc -triple=thumbv7a--none-eabi -show-encoding < %s | FileCheck %s
3 @ RUN: llvm-mc -triple=thumbv7r--none-eabi -show-encoding < %s | FileCheck %s
4 @ RUN: llvm-mc -triple=thumbv8a--none-eabi -show-encoding < %s | FileCheck %s
5 @ RUN: not llvm-mc -triple=thumbv7m--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pref…
Dthumb2-bxj-v8.s1 @ RUN: not llvm-mc -triple=thumbv6t2--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pre…
2 @ RUN: not llvm-mc -triple=thumbv7a--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pre…
3 @ RUN: not llvm-mc -triple=thumbv7r--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pre…
4 @ RUN: not llvm-mc -triple=thumbv7m--none-eabi -show-encoding < %s 2>&1 | FileCheck %s --check-pre…
5 @ RUN: llvm-mc -triple=thumbv8a--none-eabi -show-encoding < %s 2>&1 | FileCheck %s
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 \
/external/selinux/sepolgen/tests/
Dtest_module.py27 mc = module.ModuleCompiler()
28 mc.create_module_package("module_compile_test.te", refpolicy=True)
32 mc.refpolicy = True
33 mc.create_module_package("module_compile_test.te", refpolicy=False)
/external/llvm/test/MC/Disassembler/ARM/
Dthumb2-preloads.txt1 # RUN: not llvm-mc -triple=thumbv6t2-none-eabi -disassemble < %s 2>/dev/null | FileCheck…
2 # RUN: not llvm-mc -triple=thumbv7a-none-eabi -disassemble -mattr=-mp < %s 2>/dev/null | FileCheck…
3 # RUN: llvm-mc -triple=thumbv7a-none-eabi -disassemble -mattr=+mp < %s 2>/dev/null | FileCheck…
4 # RUN: not llvm-mc -triple=thumbv7m-none-eabi -disassemble < %s 2>/dev/null | FileCheck…
6 # RUN: not llvm-mc -triple=thumbv6t2-none-eabi -disassemble < %s 2>&1 >/dev/null | FileC…
7 # RUN: not llvm-mc -triple=thumbv7a-none-eabi -disassemble -mattr=-mp < %s 2>&1 >/dev/null | FileC…
8 # RUN: llvm-mc -triple=thumbv7a-none-eabi -disassemble -mattr=+mp < %s 2>&1 >/dev/null
9 # RUN: not llvm-mc -triple=thumbv7m-none-eabi -disassemble < %s 2>&1 >/dev/null | FileC…

12345678910>>...49