HomeSort by: relevance | last modified time | path
    Searched refs:Direction (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/crypto/external/cpl/trousers/dist/src/tspi/
tspi_pcr_comp12.c 61 UINT32 Direction) /* in */
63 if (Direction != TSS_PCRS_DIRECTION_CREATION && Direction != TSS_PCRS_DIRECTION_RELEASE)
66 return obj_pcrs_select_index_ex(hPcrComposite, Direction, ulPcrIndex);
  /src/external/gpl3/binutils/dist/gprofng/src/
PRBTree.h 61 enum Direction
95 LMap *rb_copy_node (LMap *lm, Direction d);
96 LMap *rb_fix_chld (LMap *prnt, LMap *lm, Direction d);
97 LMap *rb_rotate (LMap *x, Direction d);
98 void rb_remove_fixup (LMap *x, LMap *prnt, Direction d0);
100 static LMap *rb_child (LMap *lm, Direction d, Time_t ts);
101 static Direction rb_which_chld (LMap *lm);
PRBTree.cc 128 PRBTree::rb_child (LMap *lm, Direction d, Time_t ts)
144 PRBTree::Direction
155 return (Direction) prnt->dir[i];
164 Direction d = D_OPPOSITE (lm->dir[0]);
176 PRBTree::rb_copy_node (LMap *lm, Direction d)
187 Direction dd = D_OPPOSITE (d);
193 PRBTree::rb_fix_chld (LMap *prnt, LMap *lm, Direction d)
245 PRBTree::rb_rotate (LMap *x, Direction d)
247 Direction dd = D_OPPOSITE (d);
256 PRBTree::rb_remove_fixup (LMap *x, LMap *prnt, Direction d0
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
PRBTree.h 61 enum Direction
95 LMap *rb_copy_node (LMap *lm, Direction d);
96 LMap *rb_fix_chld (LMap *prnt, LMap *lm, Direction d);
97 LMap *rb_rotate (LMap *x, Direction d);
98 void rb_remove_fixup (LMap *x, LMap *prnt, Direction d0);
100 static LMap *rb_child (LMap *lm, Direction d, Time_t ts);
101 static Direction rb_which_chld (LMap *lm);
PRBTree.cc 128 PRBTree::rb_child (LMap *lm, Direction d, Time_t ts)
144 PRBTree::Direction
155 return (Direction) prnt->dir[i];
164 Direction d = D_OPPOSITE (lm->dir[0]);
176 PRBTree::rb_copy_node (LMap *lm, Direction d)
187 Direction dd = D_OPPOSITE (d);
193 PRBTree::rb_fix_chld (LMap *prnt, LMap *lm, Direction d)
245 PRBTree::rb_rotate (LMap *x, Direction d)
247 Direction dd = D_OPPOSITE (d);
256 PRBTree::rb_remove_fixup (LMap *x, LMap *prnt, Direction d0
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineLoopUtils.h 29 /// after the loop based on Direction.
35 MachineBasicBlock *PeelSingleBlockLoop(LoopPeelDirection Direction,
  /src/external/bsd/elftosb/dist/common/
rijndael.h 89 enum Direction { Encrypt , Decrypt };
104 Direction m_direction;
118 // A cipher instance works only in one direction
127 int init(Mode mode,Direction dir,const uint8_t *key,KeyLength keyLen,uint8_t * initVector = 0);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceGraphBuilder.cpp 143 enum Direction {
154 // There is a flag defined for each direction (incoming vs outgoing) and
179 const Direction Dir) {
184 << (Dir == Direction::Incoming ? "incoming)" : "outgoing)")
187 assert((Dir == Direction::Incoming || Dir == Direction::Outgoing) &&
188 "Invalid direction.");
195 if (Dir == Direction::Incoming) {
198 } else if (Dir == Direction::Outgoing) {
212 reconnectEdges(N, SCCNode, &PiNode, Direction::Incoming)
    [all...]
DependenceAnalysis.cpp 268 // getDirection - Returns the direction associated with a particular level.
271 return DV[Level - 1].Direction;
619 unsigned Direction = getDirection(II);
620 if (Direction == DVEntry::ALL)
623 if (Direction & DVEntry::LT)
625 if (Direction & DVEntry::EQ)
627 if (Direction & DVEntry::GT)
734 // have 2 loops in common, so CommonLevels will equal 2 and the direction
1125 // Can prove independence. Failing that, can compute distance (and direction).
1137 // loop's upper bound. If a dependence exists, the dependence direction i
    [all...]
LoopInfo.cpp 230 using Direction = Loop::LoopBounds::Direction;
262 Direction D = getDirection();
263 if (D == Direction::Increasing)
266 if (D == Direction::Decreasing)
269 // If cannot determine the direction, then unable to find the canonical
274 Direction Loop::LoopBounds::getDirection() const {
279 return Direction::Increasing;
281 return Direction::Decreasing;
284 return Direction::Unknown
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineLoopUtils.cpp 27 MachineBasicBlock *llvm::PeelSingleBlockLoop(LoopPeelDirection Direction,
40 if (Direction == LPD_Front)
58 if (Direction == LPD_Back) {
86 if (Direction == LPD_Front) {
106 if (Direction == LPD_Front) {
  /src/sys/external/bsd/acpica/dist/compiler/
aslmapoutput.c 192 const char *Direction;
224 "\n\nPin Type Direction Polarity"
237 Direction = "-Interrupt-";
244 Direction = DirectionDecode[Info->Direction];
255 Info->PinNumber, Type, Direction, Polarity);
aslmapenter.c 116 Info->Direction = (UINT8) (Resource->Gpio.IntFlags & 0x0003); /* _IOR, for IO descriptor */
asltypes.h 357 UINT8 Direction;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 137 char Direction;
145 Direction = '<';
147 Direction = '=';
149 Direction = '>';
150 Dep.push_back(Direction);
152 Direction = 'S';
153 Dep.push_back(Direction);
158 Direction = '<';
161 Direction = '>';
163 Direction = '='
    [all...]
SimpleLoopUnswitch.cpp 194 bool Direction,
199 Value *Cond = Direction ? IRB.CreateOr(Invariants) :
201 IRB.CreateCondBr(Cond, Direction ? &UnswitchedSucc : &NormalSucc,
202 Direction ? &NormalSucc : &UnswitchedSucc);
1992 // the best direction to unswitch: we want to unswitch the direction that will
1994 bool Direction = true;
2003 Direction = false;
2222 buildPartialUnswitchConditionalBranch(*SplitBB, Invariants, Direction,
2296 Direction ? ConstantInt::getTrue(BI->getContext()
    [all...]
  /src/external/gpl3/gcc/dist/libcody/
cody.hh 638 enum Direction
654 Direction direction : 2;
675 void SetDirection (Direction d)
677 direction = d;
681 Direction GetDirection () const
683 return direction;
763 direction = WRITING;
778 direction = READING;
  /src/external/gpl3/gcc.old/dist/libcody/
cody.hh 638 enum Direction
654 Direction direction : 2;
675 void SetDirection (Direction d)
677 direction = d;
681 Direction GetDirection () const
683 return direction;
763 direction = WRITING;
778 direction = READING;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
interval.d 10 $(LREF Direction)
49 Indicates a direction in time. One example of its use is $(LREF Interval)'s
54 enum Direction
1199 dir = The direction in time to expand the interval.
1217 void expand(D)(D duration, Direction dir = Direction.both) pure
1224 case Direction.both:
1237 case Direction.fwd:
1247 case Direction.bwd:
1258 assert(0, "Invalid Direction.")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 235 int Direction = getParamPassDirection(ArgLower);
237 if (Direction == -1) {
242 Direction = getParamPassDirection(ArgLower);
245 if (Direction != -1) {
247 (ParamCommandComment::PassDirection)Direction);
252 Direction = ParamCommandComment::In; // Sane fall back.
255 Command->setDirection((ParamCommandComment::PassDirection)Direction,
267 // User didn't provide a direction argument.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DependenceAnalysis.h 85 /// Dependence::DVEntry - Each level in the distance/direction vector
86 /// has a direction (or perhaps a union of several directions), and
97 unsigned char Direction : 3; // Init to ALL, then refine.
103 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false),
156 /// getDirection - Returns the direction associated with a particular
209 /// dependence (direction vectors, etc.) and is used when the compiler is
237 /// getDirection - Returns the direction associated with a particular
365 unsigned char Direction;
499 /// have 2 loops in common, so CommonLevels will equal 2 and the direction
611 /// Sets appropriate direction vector entry and, when possible
    [all...]
  /src/sys/arch/emips/ebus/
gpio_ebus.c 167 sc->sc_dp->Direction = data;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Comment.h 157 /// Parameter passing direction, see ParamCommandComment::PassDirection.
158 unsigned Direction : 2;
160 /// True if direction was specified explicitly in the comment.
729 ParamCommandCommentBits.Direction = In;
746 return static_cast<PassDirection>(ParamCommandCommentBits.Direction);
753 void setDirection(PassDirection Direction, bool Explicit) {
754 ParamCommandCommentBits.Direction = Direction;
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
CrashDebugger.cpp 552 bool Direction;
555 ReduceCrashingConditionals(BugDriver &bd, BugTester testFn, bool Direction)
556 : BD(bd), TestFn(testFn), Direction(Direction) {}
583 << (Direction ? "true" : "false") << ":";
600 if (Direction)
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
LegacyPassManagers.h 361 Pass *findAnalysisPass(AnalysisID AID, bool Direction);

Completed in 143 milliseconds

1 2