HomeSort by relevance Sort by last modified time
    Searched refs:Hi (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/valgrind/main/none/tests/
pth_once.stdout.exp 2 identify_yourself: Hi, I'm a thread
3 identify_yourself: Hi, I'm a thread
4 identify_yourself: Hi, I'm a thread
5 identify_yourself: Hi, I'm a thread
6 identify_yourself: Hi, I'm a thread
7 identify_yourself: Hi, I'm a thread
8 identify_yourself: Hi, I'm a thread
9 identify_yourself: Hi, I'm a thread
10 identify_yourself: Hi, I'm a thread
11 identify_yourself: Hi, I'm a threa
    [all...]
  /external/valgrind/main/drd/tests/
tc21_pthonce.stdout.exp 2 child: Hi, I'm thread 0
3 child: Hi, I'm thread 1
  /external/valgrind/main/helgrind/tests/
tc21_pthonce.stdout.exp 2 child: Hi, I'm thread 0
3 child: Hi, I'm thread 1
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 160 SDValue JoinIntegers(SDValue Lo, SDValue Hi);
169 void SplitInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
171 SDValue &Lo, SDValue &Hi);
295 /// of Op are exactly equal to the bits of Lo; the high bits exactly equal Hi.
298 /// Op, and Hi being equal to the upper 32 bits.
299 void GetExpandedInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
300 void SetExpandedInteger(SDValue Op, SDValue Lo, SDValue Hi);
305 SDValue &Lo, SDValue &Hi);
306 void ExpandIntRes_ANY_EXTEND (SDNode *N, SDValue &Lo, SDValue &Hi);
307 void ExpandIntRes_AssertSext (SDNode *N, SDValue &Lo, SDValue &Hi);
    [all...]
LegalizeTypesGeneric.cpp 14 // computation in two identical registers of a smaller type. The Lo/Hi part
30 // These routines assume that the Lo/Hi part is stored first in memory on
31 // little/big-endian machines, followed by the Hi/Lo part. This means that
34 SDValue &Lo, SDValue &Hi) {
36 GetExpandedOp(Op, Lo, Hi);
39 void DAGTypeLegalizer::ExpandRes_BITCAST(SDNode *N, SDValue &Lo, SDValue &Hi) {
53 SplitInteger(GetSoftenedFloat(InOp), Lo, Hi);
55 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
60 GetExpandedOp(InOp, Lo, Hi);
    [all...]
LegalizeIntegerTypes.cpp 237 SDValue Lo, Hi;
238 GetSplitVector(N->getOperand(0), Lo, Hi);
240 Hi = BitConvertToInteger(Hi);
243 std::swap(Lo, Hi);
248 JoinIntegers(Lo, Hi));
668 SDValue Hi = DAG.getNode(ISD::SRL, DL, Mul.getValueType(), Mul,
670 Overflow = DAG.getSetCC(DL, N->getValueType(1), Hi,
671 DAG.getConstant(0, Hi.getValueType()), ISD::SETNE);
    [all...]
LegalizeFloatTypes.cpp     [all...]
LegalizeVectorTypes.cpp 479 SDValue Lo, Hi;
495 case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
497 case ISD::SELECT: SplitRes_SELECT(N, Lo, Hi); break;
498 case ISD::SELECT_CC: SplitRes_SELECT_CC(N, Lo, Hi); break;
499 case ISD::UNDEF: SplitRes_UNDEF(N, Lo, Hi); break;
500 case ISD::BITCAST: SplitVecRes_BITCAST(N, Lo, Hi); break;
501 case ISD::BUILD_VECTOR: SplitVecRes_BUILD_VECTOR(N, Lo, Hi); break;
502 case ISD::CONCAT_VECTORS: SplitVecRes_CONCAT_VECTORS(N, Lo, Hi); break;
503 case ISD::EXTRACT_SUBVECTOR: SplitVecRes_EXTRACT_SUBVECTOR(N, Lo, Hi); break;
504 case ISD::FP_ROUND_INREG: SplitVecRes_InregOp(N, Lo, Hi); break
    [all...]
LegalizeTypes.cpp 766 SDValue &Hi) {
772 Hi = Entry.second;
776 SDValue Hi) {
779 Hi.getValueType() == Lo.getValueType() &&
781 // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
783 AnalyzeNewValue(Hi);
789 Entry.second = Hi;
793 SDValue &Hi) {
799 Hi = Entry.second;
803 SDValue Hi) {
    [all...]
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 33 uint16_t Hi = value << 8;
35 return Hi | Lo;
65 uint64_t Hi = SwapByteOrder_32(uint32_t(value));
67 return (Hi << 32) | Lo;
GCOV.h 139 uint64_t Hi = readInt();
140 uint64_t Result = Lo | (Hi << 32);
MathExtras.h 222 // get hi portion
223 uint32_t Hi = Hi_32(Value);
225 // if some bits in hi portion
226 if (Hi) {
227 // leading zeros in hi portion plus all bits in lo portion
228 Count = CountLeadingZeros_32(Hi);
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 171 // lui $t9, %hi(NewVal)
176 int Hi = ((unsigned)NewVal & 0xffff0000) >> 16;
178 Hi++;
181 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
216 int Hi = ((unsigned)EmittedAddr & 0xffff0000) >> 16;
218 Hi++;
221 // lui t9, %hi(EmittedAddr)
226 JCE.emitWordLE(0xf << 26 | 25 << 16 | Hi);
231 JCE.emitWordBE(0xf << 26 | 25 << 16 | Hi);
Mips16ISelDAGToDAG.cpp 42 SDNode *Lo = 0, *Hi = 0;
54 Hi = CurDAG->getMachineNode(Opcode, DL, Ty, InFlag);
56 return std::make_pair(Lo, Hi);
199 // lui $2, %hi($CPI1_0)
203 // lui $2, %hi($CPI1_0)
  /external/llvm/include/llvm/IR/
MDBuilder.h 81 /// \brief Return metadata describing the range [Lo, Hi).
82 MDNode *createRange(const APInt &Lo, const APInt &Hi) {
83 assert(Lo.getBitWidth() == Hi.getBitWidth() && "Mismatched bitwidths!");
85 if (Hi == Lo)
88 // Return the range [Lo, Hi).
90 Value *Range[2] = { ConstantInt::get(Ty, Lo), ConstantInt::get(Ty, Hi) };
  /frameworks/av/libvideoeditor/vss/3gpwriter/inc/
M4MP4W_Utils.h 96 * Put Hi and Lo u16 part in a u32 variable
99 M4OSA_Void M4MP4W_put32_Hi(M4OSA_UInt32* tab, M4OSA_UInt16 Hi);
  /external/openssl/crypto/modes/asm/
ghash-ia64.pl 58 { .mfi; (p18) ld8 Hlo=[Hi[1]],-8
62 { .mfi; (p18) ld8 Hhi=[Hi[1]]
65 (p18) and Hi[1]=mask0xf0,xi[2] };;
70 (p18) add Hi[1]=Htbl,Hi[1] };;
72 { .mfi; (p18) ld8 Hlo=[Hi[1]],-8
74 { .mfi; (p17) shladd Hi[0]=xi[1],4,r0
76 { .mfi; (p18) ld8 Hhi=[Hi[1]]
79 (p17) and Hi[0]=mask0xf0,Hi[0] };
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
irc_command.py 106 class Hi(IRCCommand):
141 "hi": Hi,
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 32 Hi, Lo, // Hi/Lo operations, typically on a global address.
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 571 SDValue Hi = DAG.getNode(XCoreISD::MACCS, dl,
574 SDValue Lo(Hi.getNode(), 1);
575 SDValue Ops[] = { Lo, Hi };
588 SDValue Hi = DAG.getNode(XCoreISD::LMUL, dl,
591 SDValue Lo(Hi.getNode(), 1);
592 SDValue Ops[] = { Lo, Hi };
685 SDValue Hi = DAG.getNode(XCoreISD::MACCU, dl,
688 SDValue Lo(Hi.getNode(), 1);
689 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
693 SDValue Hi = DAG.getNode(XCoreISD::MACCS, dl
    [all...]
  /external/llvm/lib/MC/
SubtargetFeature.cpp 128 const SubtargetFeatureKV *Hi = A + L;
130 const SubtargetFeatureKV *F = std::lower_bound(A, Hi, KV);
132 if (F == Hi || StringRef(F->Key) != S) return NULL;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 205 RelLsIter Hi = I++;
207 return (I->Reloc.Type == ELF::R_MIPS_LO16) && (Hi->Sym == I->Sym) &&
208 (Hi->Offset == I->Offset);
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 340 /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
341 /// in bytes of the directive is specified by Size and Hi/Lo specify the
343 void EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
346 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
347 /// where the size in bytes of the directive is specified by Size and Hi/Lo
349 void EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 303 DIEDelta(const MCSymbol *Hi, const MCSymbol *Lo)
304 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}

Completed in 701 milliseconds

1 2 3