/external/valgrind/none/tests/mips64/ |
unaligned_load.stdout.exp-BE | 1 i: 8, memSrc[1]: 0x0, outLoad: 0x0 2 i: 9, memSrc[1]: 0x0, outLoad: 0x0 3 i: 10, memSrc[1]: 0x0, outLoad: 0x0 4 i: 11, memSrc[1]: 0x0, outLoad: 0x0 5 i: 12, memSrc[1]: 0x0, outLoad: 0x0 6 i: 13, memSrc[1]: 0x0, outLoad: 0x0 7 i: 14, memSrc[1]: 0x0, outLoad: 0x0 8 i: 15, memSrc[1]: 0x0, outLoad: 0x0 9 i: 16, memSrc[2]: 0x3, outLoad: 0x3 10 i: 17, memSrc[2]: 0x3, outLoad: 0x3f [all...] |
unaligned_load.stdout.exp-LE | 1 i: 8, memSrc[1]: 0x0, outLoad: 0x0 2 i: 9, memSrc[1]: 0x0, outLoad: 0x3 3 i: 10, memSrc[1]: 0x0, outLoad: 0x0 4 i: 11, memSrc[1]: 0x0, outLoad: 0x0 5 i: 12, memSrc[1]: 0x0, outLoad: 0x0 6 i: 13, memSrc[1]: 0x0, outLoad: 0x0 7 i: 14, memSrc[1]: 0x0, outLoad: 0x0 8 i: 15, memSrc[1]: 0x0, outLoad: 0x0 9 i: 16, memSrc[2]: 0x3, outLoad: 0x300000000000000 10 i: 17, memSrc[2]: 0x3, outLoad: 0xfffffffffffffff [all...] |
load_store_unaligned.stdout.exp | 1 i: 0, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 2 i: 1, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 3 i: 2, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 4 i: 3, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 5 i: 4, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 6 i: 5, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 7 i: 6, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 8 i: 7, memSrc[0]: 0x12345658121f1e1f, memDst[0]: 0x12345658121f1e1f, outLoad: 0x12345658121f1e1f 9 i: 8, memSrc[1]: 0x0, memDst[1]: 0x0, outLoad: 0x0 10 i: 9, memSrc[1]: 0x0, memDst[1]: 0x0, outLoad: 0x [all...] |
load_store_unaligned.c | 6 unsigned long long memSrc[] = { 39 : "r" (memSrc), "r" (i), "r" (memDst) 43 printf("i: %d, memSrc[%d]: 0x%llx, memDst[%d]: 0x%llx, outLoad: 0x%llx\n", 44 i, index, memSrc[index], index, memDst[index], outLoad);
|
unaligned_load.c | 6 unsigned long long memSrc[] = { 32 : "r" (memSrc), "r" (i) 36 printf("i: %d, memSrc[%d]: 0x%llx, outLoad: 0x%llx\n", 37 i, index, memSrc[index], outLoad);
|
/external/llvm/lib/Target/MSP430/ |
MSP430InstrInfo.td | 74 def memsrc : Operand<i16> { 188 def Bm : I16rm<0, (outs), (ins memsrc:$brdst), 219 (outs), (ins memsrc:$dst), 266 (outs GR8:$dst), (ins memsrc:$src), 270 (outs GR16:$dst), (ins memsrc:$src), 280 (outs GR16:$dst), (ins memsrc:$src), 327 (outs), (ins memdst:$dst, memsrc:$src), 331 (outs), (ins memdst:$dst, memsrc:$src), 357 (outs GR8:$dst), (ins GR8:$src, memsrc:$src2), 362 (outs GR16:$dst), (ins GR16:$src, memsrc:$src2) [all...] |
/external/libjpeg-turbo/ |
djpeg.c | 92 boolean memsrc; /* for -memsrc switch */ variable 169 fprintf(stderr, " -memsrc Load input file into memory before decompressing\n"); 198 memsrc = FALSE; 355 } else if (keymatch(arg, "memsrc", 2)) { 358 memsrc = TRUE; 593 if (memsrc) { 773 if (memsrc && inbuffer != NULL)
|
djpeg.1 | 193 .BI \-memsrc
|
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | 227 GlobalVariable *MemSrc = dyn_cast<GlobalVariable>(MTI->getSource()); 228 if (MemSrc && MemSrc->isConstant()) { 231 } else if (Instruction *I = dyn_cast<Instruction>(MemSrc)) { [all...] |