HomeSort by relevance Sort by last modified time
    Searched defs:Order (Results 1 - 21 of 21) sorted by null

  /external/icu4c/test/intltest/
tscoll.h 26 struct Order
28 int32_t order; member in struct:IntlTestCollator::Order
51 Order *getOrders(CollationElementIterator &iter, int32_t &orderLength);
ssearch.cpp 674 struct Order
676 int32_t order; member in struct:Order
689 void add(int32_t order, int32_t low, int32_t high);
690 const Order *get(int32_t index) const;
699 Order *list;
707 list = new Order[listMax];
716 int32_t order, low, high; local
732 list = new Order[listMax];
738 order = ucol_next(elems, &status);
741 if (order != UCOL_NULLORDER)
788 const Order *order = get(index); local
799 const Order *order = get(index); local
810 const Order *order = get(index); local
875 const Order *order = list.get(i); local
893 const Order *order = list.get(i); local
991 int32_t order, low, high; local
1116 uint64_t order; local
    [all...]
  /external/llvm/lib/CodeGen/
AllocationOrder.cpp 1 //===-- llvm/CodeGen/AllocationOrder.cpp - Allocation Order ---------------===//
10 // This file implements an allocation order for virtual registers.
12 // The preferred allocation order for a virtual register depends on allocation
43 // The remaining allocation order may depend on the hint.
44 ArrayRef<unsigned> Order =
47 if (Order.empty())
50 // Copy the allocation order with reserved registers removed.
52 unsigned *P = new unsigned[Order.size()];
54 for (unsigned i = 0; i != Order.size(); ++i)
55 if (!RCI.isReserved(Order[i])
    [all...]
RegisterClassInfo.h 32 OwningArrayPtr<unsigned> Order;
36 return makeArrayRef(Order.get(), NumRegs);
84 /// getOrder - Returns the preferred allocation order for RC. The order
122 /// Allocatable registers may show up in the allocation order of some virtual
CriticalAntiDepBreaker.cpp 388 ArrayRef<unsigned> Order = RegClassInfo.getOrder(RC);
389 for (unsigned i = 0; i != Order.size(); ++i) {
390 unsigned NewReg = Order[i];
525 // the anti-dependencies in an instruction in order to be effective.
RegAllocBasic.cpp 488 ArrayRef<unsigned> Order =
490 for (ArrayRef<unsigned>::iterator I = Order.begin(), E = Order.end(); I != E;
RegAllocLinearScan.cpp 147 /// handled_ - Intervals are added to the handled_ set in the order of their
612 // physical register or spill an interval (possibly this one) in order to
    [all...]
  /external/llvm/lib/Target/
TargetRegisterInfo.cpp 76 ArrayRef<unsigned> Order = RC->getRawAllocationOrder(MF);
77 for (unsigned i = 0; i != Order.size(); ++i)
78 R.set(Order[i]);
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 50 unsigned Order;
55 unsigned O) : mdPtr(mdP), Offset(off), DL(dl), Order(O),
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
101 // Returns the SDNodeOrder. This is the order of the preceding node in the
103 unsigned getOrder() { return Order; }
ScheduleDAGSDNodes.cpp 169 /// outputs to ensure they are scheduled together and in order. This
209 // Sort them in increasing order.
231 // ensure they are scheduled in order of increasing addresses.
284 // Add all nodes in depth first order.
448 const SDep &dep = SDep(OpSU, isChain ? SDep::Order : SDep::Data,
638 unsigned Order) {
643 // order number right after the N.
651 if (!Order || DVOrder == ++Order) {
662 // ProcessSourceNode - Process nodes with source order numbers. These are adde
    [all...]
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java 37 private enum Order {
46 private final List<Order> mHistory = new ArrayList<Order>();
47 private final List<Order> mExpectedOrder = new ArrayList<Order>();
49 public MockVCardInterpreter addExpectedOrder(Order order) {
50 mExpectedOrder.add(order);
54 private void inspectOrder(Order order) {
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 187 // Sort by name to get a stable order.
286 // getSubRegs() orders by SubRegIndex. We want a topological order.
341 ArrayRef<Record*> Order = RC.getOrder();
350 for (unsigned i = 0, e = Order.size(); i != e; ++i) {
351 Record *Reg = Order[i];
360 for (unsigned i = 0, e = Order.size(); i != e; ++i) {
361 Record *Reg = Order[i];
504 ArrayRef<Record*> Order = RC.getOrder();
507 AllocatableRegs.insert(Order.begin(), Order.end())
    [all...]
CodeGenRegisters.cpp 73 // Here the order is important - earlier subregs take precedence.
79 // This creates a topological ordering, the exact order depends on the
80 // order getSubRegs is called on all registers.
276 // Allocation order 0 is the full set. AltOrders provides others.
281 // Default allocation order always contains all registers.
288 SetTheory::RecSet Order;
290 RegBank.getSets().evaluate(AltOrders->getElement(i), Order);
291 Orders[1 + i].append(Order.begin(), Order.end());
293 while (!Order.empty())
    [all...]
  /external/llvm/lib/MC/
MachObjectWriter.cpp 367 // when we see the attribute, but that makes getting the order in the symbol
439 // The particular order that we collect the symbols and create the string
511 // External and undefined symbols are required to be in lexicographic order.
532 const SmallVectorImpl<MCSectionData*> &Order = Layout.getSectionOrder();
533 for (int i = 0, n = Order.size(); i != n ; ++i) {
534 const MCSectionData *SD = Order[i];
747 // Write the section relocation entries, in reverse order to match 'as'
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 51 Order ///< Any other ordering dependency.
66 /// Order - Additional information about Order dependencies.
80 } Order;
106 assert(!isMustAlias && "isMustAlias only applies with SDep::Order!");
107 assert(!isArtificial && "isArtificial only applies with SDep::Order!");
110 case Order:
112 Contents.Order.isNormalMemory = isNormalMemory;
113 Contents.Order.isMustAlias = isMustAlias;
114 Contents.Order.isArtificial = isArtificial
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 701 // doesn't implicitly ignore high-order bits when doing
    [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 54 /// MapVector - An associative container with fast insertion-order
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 993 /* Fields are in the order in which they're applied... */
    [all...]

Completed in 5599 milliseconds