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

1 2 3 4 5 6 7 8

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
SearchTest.java 89 private static int[] IA(int... elements) {
94 SD("xxxxxxxxxxxxxxxxxxxx", "fisher", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(-1), IA(0)),
95 SD("silly spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(13, -1), IA(6)),
96 SD("silly spring string string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(13, 20, -1), IA(6, 6)),
97 SD("silly string spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(6, 20, -1), IA(6, 6)),
98 SD("string spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(0, 14, -1), IA(6, 6))
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
SearchTest.java 86 private static int[] IA(int... elements) {
91 SD("xxxxxxxxxxxxxxxxxxxx", "fisher", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(-1), IA(0)),
92 SD("silly spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(13, -1), IA(6)),
93 SD("silly spring string string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(13, 20, -1), IA(6, 6)),
94 SD("silly string spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(6, 20, -1), IA(6, 6)),
95 SD("string spring string", "string", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(0, 14, -1), IA(6, 6))
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 71 void DeadCodeElimination::scanInstr(NodeAddr<InstrNode*> IA,
73 if (!DFG.IsCode<NodeAttrs::Stmt>(IA))
75 if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode()))
77 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) {
85 NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG);
86 for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) {
90 for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA))
118 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG))
119 scanInstr(IA, WorkQ);
139 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool
    [all...]
RDFCopy.cpp 92 void CopyPropagation::updateMap(NodeAddr<InstrNode*> IA) {
94 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG))
112 R.second[IA.Id] = F->second.top()->Id;
122 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
123 if (DFG.IsCode<NodeAttrs::Stmt>(IA)) {
124 NodeAddr<StmtNode*> SA = IA;
130 updateMap(IA);
131 DFG.pushDefs(IA, DefM);
203 NodeAddr<InstrNode*> IA = UA.Addr->getOwner(DFG);
204 assert(DFG.IsCode<NodeAttrs::Stmt>(IA));
    [all...]
HexagonRDFOpt.cpp 89 bool rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove);
90 void removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum);
175 void HexagonDCE::removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum) {
176 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode();
185 NodeList Refs = IA.Addr->members(getDFG());
201 bool HexagonDCE::rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove) {
202 if (!getDFG().IsCode<NodeAttrs::Stmt>(IA))
205 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode();
244 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) {
247 Defs = DFG.getRelatedRefs(IA, DA)
    [all...]
RDFCopy.h 48 void updateMap(NodeAddr<InstrNode*> IA);
RDFLiveness.cpp 137 auto Block = [this] (NodeAddr<InstrNode*> IA) -> MachineBasicBlock* {
138 if (IA.Addr->getKind() == NodeAttrs::Stmt)
139 return NodeAddr<StmtNode*>(IA).Addr->getCode()->getParent();
140 assert(IA.Addr->getKind() == NodeAttrs::Phi);
141 NodeAddr<PhiNode*> PA = IA;
532 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
533 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG))
535 NBMap.insert(std::make_pair(IA.Id, BB));
732 bool Liveness::isRestricted(NodeAddr<InstrNode*> IA, NodeAddr<RefNode*> RA,
735 for (NodeAddr<RefNode*> TA = DFG.getNextShadow(IA, RA)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 82 void DeadCodeElimination::scanInstr(NodeAddr<InstrNode*> IA,
84 if (!DFG.IsCode<NodeAttrs::Stmt>(IA))
86 if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode()))
88 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) {
96 NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG);
97 for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) {
101 for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA))
129 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG))
130 scanInstr(IA, WorkQ);
150 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool
    [all...]
RDFCopy.cpp 73 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
74 if (DFG.IsCode<NodeAttrs::Stmt>(IA)) {
75 NodeAddr<StmtNode*> SA = IA;
90 NodeAddr<InstrNode*> IA) {
91 NodeAddr<RefNode*> RA = L.getNearestAliasedRef(RefRR, IA);
165 NodeAddr<InstrNode*> IA = UA.Addr->getOwner(DFG);
166 assert(DFG.IsCode<NodeAttrs::Stmt>(IA));
167 NodeId AtUse = getLocalReachingDef(SR, IA);
177 << *NodeAddr<StmtNode*>(IA).Addr->getCode();
198 auto FC = CopyMap.find(IA.Id)
    [all...]
HexagonRDFOpt.cpp 95 bool rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove);
96 void removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum);
189 void HexagonDCE::removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum) {
190 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode();
200 NodeList Refs = IA.Addr->members(DFG);
215 bool HexagonDCE::rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove) {
216 if (!getDFG().IsCode<NodeAttrs::Stmt>(IA))
219 MachineInstr &MI = *NodeAddr<StmtNode*>(IA).Addr->getCode();
258 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) {
261 Defs = DFG.getRelatedRefs(IA, DA)
    [all...]
RDFCopy.h 55 NodeId getLocalReachingDef(RegisterRef RefRR, NodeAddr<InstrNode*> IA);
  /frameworks/av/media/libstagefright/foundation/tests/
TypeTraits_test.cpp 30 enum IA : int32_t { };
40 static_assert(!std::is_integral<IA>::value, "enums should not be integral");
43 static_assert(is_integral_or_enum<IA>::value, "enums should be integral_or_enum");
52 static_assert(!std::is_unsigned<IA>::value,
56 static_assert(!std::is_unsigned<typename std::underlying_type<IA>::type>::value,
60 static_assert(!is_unsigned_integral<IA>::value,
73 static_assert(!std::is_signed<IA>::value,
77 static_assert(std::is_signed<typename std::underlying_type<IA>::type>::value,
81 static_assert(is_signed_integral<IA>::value,
98 static_assert(std::is_same<int32_t, typename underlying_integral_type<IA>::type>::value
    [all...]
  /device/google/atv/products/
atv_x86.mk 30 PRODUCT_MODEL := AOSP TV on IA Emulator
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DebugLoc.cpp 79 while (DILocation *IA = CurInlinedAt->getInlinedAt()) {
81 if (auto *Found = Cache[IA]) {
86 if (ReplaceLast && !IA->getInlinedAt())
88 InlinedAtLocations.push_back(IA);
89 CurInlinedAt = IA;
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
AbstractInjectorGrapherTest.java 97 private static interface IA {}
99 private static class A implements IA {
104 private static class A2 implements IA {
133 iaNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class)), null);
134 iaAnnNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class, Ann.class)), null);
150 bind(IA.class).to(A.class);
151 bind(IA.class).annotatedWith(Ann.class).to(A.class);
180 bind(IA.class).toProvider(wrapper.value);
188 NodeId.newInstanceId(Key.get(IA.class)),
214 bind(IA.class).to(A.class)
    [all...]
  /external/clang/test/Sema/
ms_class_layout.cpp 100 class IA {
102 virtual ~IA(){}
103 virtual void ia() = 0;
106 class ICh : public virtual IA {
109 virtual void ia(){} function in class:ICh
389 // CHECK: 0 | class IA
390 // CHECK-NEXT: 0 | (IA vftable pointer)
397 // CHECK-NEXT: 8 | (vtordisp for vbase IA)
398 // CHECK-NEXT: 12 | class IA (virtual base)
399 // CHECK-NEXT: 12 | (IA vftable pointer
    [all...]
  /build/make/target/product/
full_x86.mk 46 PRODUCT_MODEL := AOSP on IA Emulator
  /external/swiftshader/third_party/LLVM/lib/VMCore/
DebugLoc.cpp 48 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
51 Scope = IA = 0;
61 IA = 0;
69 IA = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
102 MDNode *Scope, *IA;
103 getScopeAndInlinedAt(Scope, IA, Ctx);
110 Scope, IA
213 int LLVMContextImpl::getOrAddScopeInlinedAtIdxEntry(MDNode *Scope, MDNode *IA,
216 int &Idx = ScopeInlinedAtIdx[std::make_pair(Scope, IA)];
231 DebugRecVH(IA, this, Idx)))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
ValueMapper.cpp 38 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
40 FunctionType *NewTy = IA->getFunctionType();
44 if (NewTy != IA->getFunctionType())
45 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(),
46 IA->hasSideEffects(), IA->isAlignStack());
  /external/boringssl/src/ssl/test/runner/poly1305/
sum_arm.s 29 MOVM.IA.W (R1), [R2-R5]
39 MOVM.IA (R7), [R2-R6]
45 MOVM.IA.W [R2-R6], (R0)
51 MOVM.IA.W [R2-R6], (R0)
52 MOVM.IA.W (R1), [R2-R5]
53 MOVM.IA [R2-R6], (R0)
88 MOVM.IA (R0), [R0-R9]
89 MOVM.IA [R0-R4], (g)
101 MOVM.IA (g), [R0-R3]
106 MOVM.IA.W (R14), [R0-R3
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 65 const DILocation *IA; /// Inlined at location.
77 DbgVariable(const DILocalVariable *V, const DILocation *IA)
78 : Var(V), IA(IA) {}
100 assert(IA == DbgValue->getDebugLoc()->getInlinedAt() && "Wrong inlined-at");
110 const DILocation *getInlinedAt() const { return IA; }
128 assert(V.IA == IA && "conflicting inlined-at location");
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 185 LexicalScope *findInlinedScope(const DILocalScope *N, const DILocation *IA) {
186 auto I = InlinedLexicalScopeMap.find(std::make_pair(N, IA));
203 /// getOrCreateLexicalScope - Find lexical scope for the given Scope/IA. If
206 const DILocation *IA = nullptr);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
LexicalScopes.h 187 LexicalScope *findInlinedScope(const DILocalScope *N, const DILocation *IA) {
188 auto I = InlinedLexicalScopeMap.find(std::make_pair(N, IA));
205 /// getOrCreateLexicalScope - Find lexical scope for the given Scope/IA. If
208 const DILocation *IA = nullptr);
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 256 for (SuperRegClassIterator IA(RCA, this, true); IA.isValid(); ++IA) {
257 unsigned FinalA = composeSubRegIndices(IA.getSubReg(), SubA);
261 firstCommonClass(IA.getMask(), IB.getMask(), this);
276 *BestPreA = IA.getSubReg();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 78 const DILocation *IA; /// Inlined at location.
95 DbgVariable(const DILocalVariable *V, const DILocation *IA)
96 : Var(V), IA(IA) {}
115 assert(IA == DbgValue->getDebugLoc()->getInlinedAt() && "Wrong inlined-at");
125 const DILocation *getInlinedAt() const { return IA; }

Completed in 6463 milliseconds

1 2 3 4 5 6 7 8