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

1 2

  /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 158 SDValue JoinIntegers(SDValue Lo, SDValue Hi);
170 void SplitInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
172 SDValue &Lo, SDValue &Hi);
296 /// of Op are exactly equal to the bits of Lo; the high bits exactly equal Hi.
299 /// Op, and Hi being equal to the upper 32 bits.
300 void GetExpandedInteger(SDValue Op, SDValue &Lo, SDValue &Hi);
301 void SetExpandedInteger(SDValue Op, SDValue Lo, SDValue Hi);
306 SDValue &Lo, SDValue &Hi);
307 void ExpandIntRes_ANY_EXTEND (SDNode *N, SDValue &Lo, SDValue &Hi);
308 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
31 // These routines assume that the Lo/Hi part is stored first in memory on
32 // little/big-endian machines, followed by the Hi/Lo part. This means that
35 SDValue &Lo, SDValue &Hi) {
37 GetExpandedOp(Op, Lo, Hi);
40 void DAGTypeLegalizer::ExpandRes_BITCAST(SDNode *N, SDValue &Lo, SDValue &Hi) {
56 SplitInteger(GetSoftenedFloat(InOp), Lo, Hi);
58 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
63 GetExpandedOp(InOp, Lo, Hi);
    [all...]
LegalizeIntegerTypes.cpp 239 SDValue Lo, Hi;
240 GetSplitVector(N->getOperand(0), Lo, Hi);
242 Hi = BitConvertToInteger(Hi);
245 std::swap(Lo, Hi);
250 JoinIntegers(Lo, Hi));
661 SDValue Hi = DAG.getNode(ISD::SRL, DL, Mul.getValueType(), Mul,
663 Overflow = DAG.getSetCC(DL, N->getValueType(1), Hi,
664 DAG.getConstant(0, Hi.getValueType()), ISD::SETNE);
    [all...]
LegalizeFloatTypes.cpp     [all...]
LegalizeVectorTypes.cpp 407 SDValue Lo, Hi;
418 case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
420 case ISD::SELECT: SplitRes_SELECT(N, Lo, Hi); break;
421 case ISD::SELECT_CC: SplitRes_SELECT_CC(N, Lo, Hi); break;
422 case ISD::UNDEF: SplitRes_UNDEF(N, Lo, Hi); break;
423 case ISD::BITCAST: SplitVecRes_BITCAST(N, Lo, Hi); break;
424 case ISD::BUILD_VECTOR: SplitVecRes_BUILD_VECTOR(N, Lo, Hi); break;
425 case ISD::CONCAT_VECTORS: SplitVecRes_CONCAT_VECTORS(N, Lo, Hi); break;
426 case ISD::EXTRACT_SUBVECTOR: SplitVecRes_EXTRACT_SUBVECTOR(N, Lo, Hi); break;
427 case ISD::FP_ROUND_INREG: SplitVecRes_InregOp(N, Lo, Hi); break
    [all...]
LegalizeTypes.cpp 765 SDValue &Hi) {
771 Hi = Entry.second;
775 SDValue Hi) {
778 Hi.getValueType() == Lo.getValueType() &&
780 // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
782 AnalyzeNewValue(Hi);
788 Entry.second = Hi;
792 SDValue &Hi) {
798 Hi = Entry.second;
802 SDValue Hi) {
    [all...]
LegalizeDAG.cpp 476 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
480 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
486 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
592 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
597 SDValue Lo, Hi;
604 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
609 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
622 TLI.getShiftAmountTy(Hi.getValueType()));
623 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
627 Hi.getValue(1))
    [all...]
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 126 // lui $t9, %hi(NewVal)
131 int Hi = ((unsigned)NewVal & 0xffff0000) >> 16;
133 Hi++;
136 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
171 int Hi = ((unsigned)EmittedAddr & 0xffff0000) >> 16;
173 Hi++;
176 // lui t9, %hi(EmittedAddr)
180 JCE.emitWordLE(0xf << 26 | 25 << 16 | Hi);
MipsISelDAGToDAG.cpp 163 // lui $2, %hi($CPI1_0)
167 // lui $2, %hi($CPI1_0)
169 if ((Addr.getOperand(0).getOpcode() == MipsISD::Hi ||
257 SDNode *Hi = CurDAG->getMachineNode(Mips::MFHI, dl, MVT::i32, InFlag);
263 ReplaceUses(SDValue(Node, 1), SDValue(Hi,0));
  /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 137 uint64_t Hi = readInt();
138 uint64_t Result = Lo | (Hi << 32);
MathExtras.h 204 // get hi portion
205 uint32_t Hi = Hi_32(Value);
207 // if some bits in hi portion
208 if (Hi) {
209 // leading zeros in hi portion plus all bits in lo portion
210 Count = CountLeadingZeros_32(Hi);
  /frameworks/media/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/clang/lib/CodeGen/
TargetInfo.cpp 849 /// Post merger cleanup, reduces a malformed Hi and Lo pair to
858 /// \param Hi - The classification for the parts of the type
861 void postMerge(unsigned AggregateSize, Class &Lo, Class &Hi) const;
869 /// \param Hi - The classification for the parts of the type
882 /// If the \arg Lo class is ComplexX87, then the \arg Hi class will
884 void classify(QualType T, uint64_t OffsetBase, Class &Lo, Class &Hi) const;
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 331 /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
332 /// in bytes of the directive is specified by Size and Hi/Lo specify the
334 void EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
337 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
338 /// where the size in bytes of the directive is specified by Size and Hi/Lo
340 void EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
  /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.
SparcISelLowering.cpp 469 SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
479 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Hi));
500 MemOpChains.push_back(DAG.getStore(Chain, dl, Hi, PtrOff,
704 // Custom legalize GlobalAddress nodes into LO/HI parts.
819 case SPISD::Hi: return "SPISD::Hi"
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 560 SDValue Hi = DAG.getNode(XCoreISD::MACCS, dl,
563 SDValue Lo(Hi.getNode(), 1);
564 SDValue Ops[] = { Lo, Hi };
577 SDValue Hi = DAG.getNode(XCoreISD::LMUL, dl,
580 SDValue Lo(Hi.getNode(), 1);
581 SDValue Ops[] = { Lo, Hi };
674 SDValue Hi = DAG.getNode(XCoreISD::MACCU, dl,
677 SDValue Lo(Hi.getNode(), 1);
678 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
682 SDValue Hi = DAG.getNode(XCoreISD::MACCS, dl
    [all...]
  /external/llvm/lib/MC/
SubtargetFeature.cpp 128 const T *Hi = A + L;
130 const T *F = std::lower_bound(A, Hi, KV);
132 if (F == Hi || StringRef(F->Key) != S) return NULL;
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 341 DIEDelta(const MCSymbol *Hi, const MCSymbol *Lo)
342 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
  /frameworks/media/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Utils.c 281 M4OSA_Void M4MP4W_put32_Hi(M4OSA_UInt32* tab, M4OSA_UInt16 Hi)
285 *tab |= Hi<<16;

Completed in 487 milliseconds

1 2