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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/merge-template-members/
a1.h 8 typedef A<int> AI;
a2.h 8 typedef A<int> AI;
  /external/llvm/lib/Transforms/Utils/
InstructionNamer.cpp 35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
36 AI != AE; ++AI)
37 if (!AI->hasName() && !AI->getType()->isVoidTy())
38 AI->setName("arg");
MetaRenamer.cpp 84 for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {
85 StringRef Name = AI->getName();
89 AI->setName("alias");
125 for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)
126 if (!AI->getType()->isVoidTy())
127 AI->setName("arg")
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InstructionNamer.cpp 35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
36 AI != AE; ++AI)
37 if (!AI->hasName() && !AI->getType()->isVoidTy())
38 AI->setName("arg");
  /external/skia/include/private/
SkNx_neon.h 19 AI static float32x4_t emulate_vrndmq_f32(float32x4_t v) {
24 AI static float32x2_t emulate_vrndm_f32(float32x2_t v) {
33 AI SkNx(float32x2_t vec) : fVec(vec) {}
35 AI SkNx() {}
36 AI SkNx(float val) : fVec(vdup_n_f32(val)) {}
37 AI SkNx(float a, float b) { fVec = (float32x2_t) { a, b }; }
39 AI static SkNx Load(const void* ptr) { return vld1_f32((const float*)ptr); }
40 AI void store(void* ptr) const { vst1_f32((float*)ptr, fVec); }
42 AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
48 AI static void Store2(void* dst, const SkNx& a, const SkNx& b)
    [all...]
SkNx_sse.h 31 AI static __m128 emulate_mm_floor_ps(__m128 v) {
40 AI SkNx(const __m128& vec) : fVec(vec) {}
42 AI SkNx() {}
43 AI SkNx(float val) : fVec(_mm_set1_ps(val)) {}
44 AI static SkNx Load(const void* ptr) {
47 AI SkNx(float a, float b) : fVec(_mm_setr_ps(a,b,0,0)) {}
49 AI void store(void* ptr) const { _mm_storel_pi((__m64*)ptr, fVec); }
51 AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
57 AI static void Store2(void* dst, const SkNx& a, const SkNx& b) {
62 AI static void Store3(void* dst, const SkNx& a, const SkNx& b, const SkNx& c)
    [all...]
SkNx.h 20 #define AI SK_ALWAYS_INLINE
31 AI SkNx() = default;
32 AI SkNx(const Half& lo, const Half& hi) : fLo(lo), fHi(hi) {}
34 AI SkNx(T v) : fLo(v), fHi(v) {}
36 AI SkNx(T a, T b) : fLo(a) , fHi(b) { static_assert(N==2, ""); }
37 AI SkNx(T a, T b, T c, T d) : fLo(a,b), fHi(c,d) { static_assert(N==4, ""); }
38 AI SkNx(T a, T b, T c, T d, T e, T f, T g, T h) : fLo(a,b,c,d), fHi(e,f,g,h) {
41 AI SkNx(T a, T b, T c, T d, T e, T f, T g, T h,
47 AI T operator[](int k) const {
52 AI static SkNx Load(const void* vptr)
    [all...]
  /external/skqp/include/private/
SkNx_neon.h 19 AI static float32x4_t emulate_vrndmq_f32(float32x4_t v) {
24 AI static float32x2_t emulate_vrndm_f32(float32x2_t v) {
33 AI SkNx(float32x2_t vec) : fVec(vec) {}
35 AI SkNx() {}
36 AI SkNx(float val) : fVec(vdup_n_f32(val)) {}
37 AI SkNx(float a, float b) { fVec = (float32x2_t) { a, b }; }
39 AI static SkNx Load(const void* ptr) { return vld1_f32((const float*)ptr); }
40 AI void store(void* ptr) const { vst1_f32((float*)ptr, fVec); }
42 AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
48 AI static void Store2(void* dst, const SkNx& a, const SkNx& b)
    [all...]
SkNx_sse.h 31 AI static __m128 emulate_mm_floor_ps(__m128 v) {
40 AI SkNx(const __m128& vec) : fVec(vec) {}
42 AI SkNx() {}
43 AI SkNx(float val) : fVec(_mm_set1_ps(val)) {}
44 AI static SkNx Load(const void* ptr) {
47 AI SkNx(float a, float b) : fVec(_mm_setr_ps(a,b,0,0)) {}
49 AI void store(void* ptr) const { _mm_storel_pi((__m64*)ptr, fVec); }
51 AI static void Load2(const void* ptr, SkNx* x, SkNx* y) {
57 AI static void Store2(void* dst, const SkNx& a, const SkNx& b) {
62 AI static void Store3(void* dst, const SkNx& a, const SkNx& b, const SkNx& c)
    [all...]
SkNx.h 20 #define AI SK_ALWAYS_INLINE
31 AI SkNx() = default;
32 AI SkNx(const Half& lo, const Half& hi) : fLo(lo), fHi(hi) {}
34 AI SkNx(T v) : fLo(v), fHi(v) {}
36 AI SkNx(T a, T b) : fLo(a) , fHi(b) { static_assert(N==2, ""); }
37 AI SkNx(T a, T b, T c, T d) : fLo(a,b), fHi(c,d) { static_assert(N==4, ""); }
38 AI SkNx(T a, T b, T c, T d, T e, T f, T g, T h) : fLo(a,b,c,d), fHi(e,f,g,h) {
41 AI SkNx(T a, T b, T c, T d, T e, T f, T g, T h,
47 AI T operator[](int k) const {
52 AI static SkNx Load(const void* vptr)
    [all...]
  /external/harfbuzz_ng/src/
hb-atomic.hh 58 #define hb_atomic_int_impl_add(AI, V) __atomic_fetch_add ((AI), (V), __ATOMIC_ACQ_REL)
59 #define hb_atomic_int_impl_set_relaxed(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELAXED)
60 #define hb_atomic_int_impl_set(AI, V) __atomic_store_n ((AI), (V), __ATOMIC_RELEASE)
61 #define hb_atomic_int_impl_get_relaxed(AI) __atomic_load_n ((AI), __ATOMIC_RELAXED)
62 #define hb_atomic_int_impl_get(AI) __atomic_load_n ((AI), __ATOMIC_ACQUIRE
    [all...]
  /external/llvm/include/llvm/CodeGen/
AtomicExpandUtils.h 56 expandAtomicRMWToCmpXchg(AtomicRMWInst *AI, CreateCmpXchgInstFun Factory);
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 47 for (CallSite::arg_iterator AI = CS.arg_begin(),
48 E = CS.arg_end(); AI != E; ++AI) {
49 if (!isa<Constant>(*AI)) continue;
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
PromoteMemToReg.h 30 bool isAllocaPromotable(const AllocaInst *AI);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
AtomicExpandUtils.h 61 bool expandAtomicRMWToCmpXchg(AtomicRMWInst *AI, CreateCmpXchgInstFun CreateCmpXchg);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
AnalysisWrappers.cpp 47 for (CallSite::arg_iterator AI = CS.arg_begin(),
48 E = CS.arg_end(); AI != E; ++AI) {
49 if (!isa<Constant>(*AI)) continue;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 96 for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {
97 StringRef Name = AI->getName();
101 AI->setName("alias");
147 for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)
148 if (!AI->getType()->isVoidTy())
149 AI->setName("arg")
    [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 61 StackProtector::getSSPLayout(const AllocaInst *AI) const {
62 return AI ? Layout.lookup(AI) : SSPLK_None;
166 bool StackProtector::HasAddressTaken(const Instruction *AI) {
167 for (const User *U : AI->users()) {
169 if (AI == SI->getValueOperand())
172 if (AI == SI->getOperand(0))
237 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
238 if (AI->isArrayAllocation()) {
244 if (const auto *CI = dyn_cast<ConstantInt>(AI->getArraySize()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 67 Function::arg_iterator AI;
71 AI = MainFn->arg_begin(); ++AI;
72 if (AI->getType() != ArgVTy) {
73 Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy,
76 CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall));
78 InitCall->setArgOperand(1, AI);
83 AI = MainFn->arg_begin();
86 if (!AI->getType()->isIntegerTy(32)) {
88 if (!AI->use_empty())
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 124 auto AI = ABIArgInfo(Direct);
125 AI.setCoerceToType(T);
126 AI.setPaddingType(Padding);
127 AI.setDirectOffset(Offset);
128 AI.setCanBeFlattened(CanBeFlattened);
129 return AI;
132 auto AI = getDirect(T);
133 AI.setInReg(true);
134 return AI;
137 auto AI = ABIArgInfo(Extend)
    [all...]
  /external/llvm/include/llvm/Transforms/Scalar/
SROA.h 115 bool presplitLoadsAndStores(AllocaInst &AI, sroa::AllocaSlices &AS);
116 AllocaInst *rewritePartition(AllocaInst &AI, sroa::AllocaSlices &AS,
118 bool splitAlloca(AllocaInst &AI, sroa::AllocaSlices &AS);
119 bool runOnAlloca(AllocaInst &AI);
  /external/llvm/include/llvm/Transforms/Utils/
PromoteMemToReg.h 32 bool isAllocaPromotable(const AllocaInst *AI);
  /external/swiftshader/third_party/LLVM/tools/opt/
AnalysisWrappers.cpp 48 for (CallSite::arg_iterator AI = CS.arg_begin(),
49 E = CS.arg_end(); AI != E; ++AI) {
50 if (!isa<Constant>(*AI)) continue;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
SROA.h 127 bool presplitLoadsAndStores(AllocaInst &AI, sroa::AllocaSlices &AS);
128 AllocaInst *rewritePartition(AllocaInst &AI, sroa::AllocaSlices &AS,
130 bool splitAlloca(AllocaInst &AI, sroa::AllocaSlices &AS);
131 bool runOnAlloca(AllocaInst &AI);

Completed in 1529 milliseconds

1 2 3 4 5 6 7 8 91011>>