Searched refs:Depth (Results 1 - 25 of 71) sorted by relevance

123

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DScoreboardHazardRecognizer.h47 size_t Depth; member in class:llvm::ScoreboardHazardRecognizer::Scoreboard
51 Scoreboard():Data(NULL), Depth(0), Head(0) { }
56 size_t getDepth() const { return Depth; }
58 // Depth is expected to be a power-of-2.
59 assert(Depth && !(Depth & (Depth - 1)) &&
62 return Data[(Head + idx) & (Depth-1)];
67 Depth = d;
68 Data = new unsigned[Depth];
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DValueTracking.h40 const TargetData *TD = 0, unsigned Depth = 0);
46 const TargetData *TD = 0, unsigned Depth = 0);
54 unsigned Depth = 0);
60 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
72 const TargetData *TD = 0, unsigned Depth = 0);
84 unsigned Depth = 0);
93 unsigned Depth = 0);
98 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
/macosx-10.9.5/expat-12/expat/examples/
H A Doutline.c46 int Depth; variable
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DValueTracking.cpp49 const TargetData *TD, unsigned Depth) {
60 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
81 llvm::ComputeMaskedBits(Op0, LHSKnownZero, LHSKnownOne, TD, Depth+1);
86 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
135 const TargetData *TD, unsigned Depth) {
137 ComputeMaskedBits(Op1, KnownZero, KnownOne, TD, Depth+1);
138 ComputeMaskedBits(Op0, KnownZero2, KnownOne2, TD, Depth+1);
161 isKnownNonZero(Op0, TD, Depth)) ||
163 isKnownNonZero(Op1, TD, Depth));
229 const TargetData *TD, unsigned Depth) {
46 ComputeMaskedBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const TargetData *TD, unsigned Depth) argument
132 ComputeMaskedBitsMul(Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const TargetData *TD, unsigned Depth) argument
228 ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne, const TargetData *TD, unsigned Depth) argument
780 ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne, const TargetData *TD, unsigned Depth) argument
799 isPowerOfTwo(Value *V, const TargetData *TD, bool OrZero, unsigned Depth) argument
862 isKnownNonZero(Value *V, const TargetData *TD, unsigned Depth) argument
988 MaskedValueIsZero(Value *V, const APInt &Mask, const TargetData *TD, unsigned Depth) argument
1006 ComputeNumSignBits(Value *V, const TargetData *TD, unsigned Depth) argument
1177 ComputeMultiple(Value *V, unsigned Base, Value *&Multiple, bool LookThroughSExt, unsigned Depth) argument
1299 CannotBeNegativeZero(const Value *V, unsigned Depth) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp70 unsigned Depth) {
74 return MatchAddr(ScaleReg, Depth);
156 unsigned Depth) {
158 if (Depth >= 5) return false;
163 return MatchAddr(AddrInst->getOperand(0), Depth);
168 return MatchAddr(AddrInst->getOperand(0), Depth);
179 return MatchAddr(AddrInst->getOperand(0), Depth);
185 if (MatchAddr(AddrInst->getOperand(1), Depth+1) &&
186 MatchAddr(AddrInst->getOperand(0), Depth+1))
194 if (MatchAddr(AddrInst->getOperand(0), Depth
69 MatchScaledValue(Value *ScaleReg, int64_t Scale, unsigned Depth) argument
155 MatchOperationAddr(User *AddrInst, unsigned Opcode, unsigned Depth) argument
312 MatchAddr(Value *Addr, unsigned Depth) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp70 unsigned Depth) {
72 KnownZero, KnownOne, Depth);
102 unsigned Depth) {
104 assert(Depth <= 6 && "Limit Search Depth");
137 if (Depth == 6) // Limit search depth.
145 ComputeMaskedBits(V, KnownZero, KnownOne, Depth);
152 if (Depth != 0 && !I->hasOneUse()) {
159 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1);
160 ComputeMaskedBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth
68 SimplifyDemandedBits(Use &U, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
100 SimplifyDemandedUseBits(Value *V, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
812 SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &UndefElts, unsigned Depth) argument
[all...]
H A DInstCombine.h295 APInt &KnownOne, unsigned Depth = 0) const {
296 return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, TD, Depth);
300 unsigned Depth = 0) const {
301 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
303 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
304 return llvm::ComputeNumSignBits(Op, TD, Depth);
324 unsigned Depth);
327 unsigned Depth=0);
335 APInt& UndefElts, unsigned Depth = 0);
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dlearn.c31 signed Depth:7; member in struct:__anon622
83 draft.Depth = depth;
135 draft.OnMove, draft.Bestmove, draft.Depth);
H A Dttable.c39 signed char Depth; member in struct:__anon631
147 if (( (DP_TTable[index].Depth < depth)
148 || ((DP_TTable[index].Depth == depth) &&
179 DP_TTable[index].Depth = depth;
210 AS_TTable[index].Depth = depth;
226 AS_TTable[index].Depth = depth;
264 && ((depth-2-1) <= DP_TTable[index].Depth)
270 if (DP_TTable[index].Depth >= depth)
299 && ((depth-2-1) <= AS_TTable[index].Depth)
305 if (AS_TTable[index].Depth >
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Transforms/Utils/
H A DAddrModeMatcher.h97 bool MatchScaledValue(Value *ScaleReg, int64_t Scale, unsigned Depth);
98 bool MatchAddr(Value *V, unsigned Depth);
99 bool MatchOperationAddr(User *Operation, unsigned Opcode, unsigned Depth);
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A Dreader7.py15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
H A Dwalker.py15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
H A Dreader2.py202 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth())
244 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth())
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dreader7.py16 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
H A Dwalker.py16 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(),
H A Dreader2.py193 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth())
235 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth())
/macosx-10.9.5/libxml2-26/libxml2/
H A Dregressions.py263 if reader.Depth() == 2:
269 elif reader.Depth() == 3:
296 if reader.Depth() == 2:
304 elif reader.Depth() == 3:
316 if reader.Depth() == 0:
318 if reader.Depth() != 1:
320 reader.Depth(), reader.NodeType(), reader.Name())
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dregressions.py263 if reader.Depth() == 2:
269 elif reader.Depth() == 3:
296 if reader.Depth() == 2:
304 elif reader.Depth() == 3:
316 if reader.Depth() == 0:
318 if reader.Depth() != 1:
320 reader.Depth(), reader.NodeType(), reader.Name())
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DPassManagers.h266 explicit PMDataManager() : TPM(NULL), Depth(0) {
335 unsigned getDepth() const { return Depth; }
336 void setDepth(unsigned newDepth) { Depth = newDepth; }
399 unsigned Depth; member in class:llvm::PMDataManager
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/CellSPU/
H A DSPUISelLowering.h126 unsigned Depth = 0) const;
129 unsigned Depth = 0) const;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Sparc/
H A DSparcISelLowering.h56 unsigned Depth = 0) const;
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/
H A Dwebdavvfs.tcl97 -headers [concat $extraHeadersList [list Depth 0]] -protocol 1.1]
179 -headers [concat $extraHeadersList [list Depth 1]]]
213 -headers [concat $extraHeadersList [list Depth 0]]]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DScheduleDAGInstrs.cpp530 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
533 return *Depth;
537 return *Depth;
550 return *Depth;
555 if (*Depth > 200 ||
559 return *Depth;
562 (*Depth)++;
567 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited);
568 return *Depth;
582 unsigned Depth local
529 iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI, SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth, SmallPtrSet<const SUnit*, 16> &Visited) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple/t/
H A D20_Tree_Simple_Visitor_test.t106 } qr/Insufficient Arguments \: Depth arguement must be either RECURSIVE or CHILDREN_ONLY/,
112 } qr/Insufficient Arguments \: Depth arguement must be either RECURSIVE or CHILDREN_ONLY/,
/macosx-10.9.5/CPANInternal-140/Tree-Simple-1.18/t/
H A D20_Tree_Simple_Visitor_test.t106 } qr/Insufficient Arguments \: Depth arguement must be either RECURSIVE or CHILDREN_ONLY/,
112 } qr/Insufficient Arguments \: Depth arguement must be either RECURSIVE or CHILDREN_ONLY/,

Completed in 149 milliseconds

123