Home
last modified time | relevance | path

Searched full:ci (Results 1 – 25 of 9138) sorted by relevance

12345678910>>...366

/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp60 static bool isCallingConvCCompatible(CallInst *CI) { in isCallingConvCCompatible() argument
61 switch(CI->getCallingConv()) { in isCallingConvCCompatible()
72 if (Triple(CI->getModule()->getTargetTriple()).isiOS()) in isCallingConvCCompatible()
75 auto *FuncTy = CI->getFunctionType(); in isCallingConvCCompatible()
104 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument() argument
105 return any_of(CI->operands(), [](const Use &OI) { in callHasFloatingPointArgument()
110 static bool callHasFP128Argument(const CallInst *CI) { in callHasFP128Argument() argument
111 return any_of(CI->operands(), [](const Use &OI) { in callHasFP128Argument()
116 static Value *convertStrToNumber(CallInst *CI, StringRef &Str, int64_t Base) { in convertStrToNumber() argument
135 if (!isIntN(CI->getType()->getPrimitiveSizeInBits(), Result)) in convertStrToNumber()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp68 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument() argument
69 return any_of(CI->operands(), [](const Use &OI) { in callHasFloatingPointArgument()
74 static bool callHasFP128Argument(const CallInst *CI) { in callHasFP128Argument() argument
75 return any_of(CI->operands(), [](const Use &OI) { in callHasFP128Argument()
87 static Value *convertStrToInt(CallInst *CI, StringRef &Str, Value *EndPtr, in convertStrToInt() argument
120 Type *RetTy = CI->getType(); in convertStrToInt()
177 Value *StrBeg = CI->getArgOperand(0); in convertStrToInt()
201 static bool canTransformToMemCmp(CallInst *CI, Value *Str, uint64_t Len, in canTransformToMemCmp() argument
203 if (!isOnlyUsedInComparisonWithZero(CI)) in canTransformToMemCmp()
209 if (CI->getFunction()->hasFnAttribute(Attribute::SanitizeMemory)) in canTransformToMemCmp()
[all …]
/aosp_15_r20/external/libnl/lib/route/link/
H A Dcan.c81 struct can_info *ci; in can_alloc() local
84 memset(link->l_info, 0, sizeof(*ci)); in can_alloc()
86 ci = calloc(1, sizeof(*ci)); in can_alloc()
87 if (!ci) in can_alloc()
90 link->l_info = ci; in can_alloc()
100 struct can_info *ci; in can_parse() local
111 ci = link->l_info; in can_parse()
114 ci->ci_state = nla_get_u32(tb[IFLA_CAN_STATE]); in can_parse()
115 ci->ci_mask |= CAN_HAS_STATE; in can_parse()
119 ci->ci_restart = nla_get_u32(tb[IFLA_CAN_RESTART]); in can_parse()
[all …]
/aosp_15_r20/external/webrtc/infra/config/
H A Dluci-scheduler.cfg9 realm: "ci"
10 acl_sets: "ci"
13 bucket: "ci"
19 realm: "ci"
20 acl_sets: "ci"
23 bucket: "ci"
29 realm: "ci"
30 acl_sets: "ci"
33 bucket: "ci"
54 realm: "ci"
[all …]
/aosp_15_r20/external/angle/infra/config/generated/
H A Dluci-scheduler.cfg9 realm: "ci"
10 acl_sets: "ci"
17 bucket: "ci"
23 realm: "ci"
24 acl_sets: "ci"
31 bucket: "ci"
37 realm: "ci"
38 acl_sets: "ci"
45 bucket: "ci"
51 realm: "ci"
[all …]
/aosp_15_r20/external/libyuv/infra/config/
H A Dluci-scheduler.cfg9 realm: "ci"
10 acl_sets: "ci"
13 bucket: "ci"
19 realm: "ci"
20 acl_sets: "ci"
23 bucket: "ci"
29 realm: "ci"
30 acl_sets: "ci"
33 bucket: "ci"
39 realm: "ci"
[all …]
/aosp_15_r20/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp85 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument() argument
86 return std::any_of(CI->op_begin(), CI->op_end(), [](const Use &OI) { in callHasFloatingPointArgument()
110 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat() argument
112 Value *Dst = CI->getArgOperand(0); in optimizeStrCat()
113 Value *Src = CI->getArgOperand(1); in optimizeStrCat()
149 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat() argument
151 Value *Dst = CI->getArgOperand(0); in optimizeStrNCat()
152 Value *Src = CI->getArgOperand(1); in optimizeStrNCat()
156 if (ConstantInt *LengthArg = dyn_cast<ConstantInt>(CI->getArgOperand(2))) in optimizeStrNCat()
182 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrChr() argument
[all …]
/aosp_15_r20/external/clang/lib/Frontend/
H A DFrontendAction.cpp138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer() argument
140 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile); in CreateWrappedASTConsumer()
160 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size(); in CreateWrappedASTConsumer()
162 if (it->getName() == CI.getFrontendOpts().AddPluginActions[i]) { in CreateWrappedASTConsumer()
170 P->ParseArgs(CI, CI.getFrontendOpts().PluginArgs[it->getName()])) { in CreateWrappedASTConsumer()
171 std::unique_ptr<ASTConsumer> PluginConsumer = P->CreateASTConsumer(CI, InFile); in CreateWrappedASTConsumer()
189 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile() argument
194 setCompilerInstance(&CI); in BeginSourceFile()
198 if (!BeginInvocation(CI)) in BeginSourceFile()
209 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); in BeginSourceFile()
[all …]
/aosp_15_r20/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellIdentityLteTest.java37 private static final int CI = 268435455; field in CellIdentityLteTest
55 CellIdentityLte ci = in testDefaultConstructor() local
56 new CellIdentityLte(CI, PCI, TAC, EARFCN, BANDS, BANDWIDTH, MCC_STR, MNC_STR, in testDefaultConstructor()
59 assertEquals(CI, ci.getCi()); in testDefaultConstructor()
60 assertEquals(PCI, ci.getPci()); in testDefaultConstructor()
61 assertEquals(TAC, ci.getTac()); in testDefaultConstructor()
62 assertEquals(EARFCN, ci.getEarfcn()); in testDefaultConstructor()
63 assertEquals(EARFCN, ci.getChannelNumber()); in testDefaultConstructor()
64 assertEquals(BANDWIDTH, ci.getBandwidth()); in testDefaultConstructor()
65 assertEquals(MCC, ci.getMcc()); in testDefaultConstructor()
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/lang/invoke/VarHandles/
H A DX-VarHandleTestByteArrayView.java.template239 int ci = 1;
242 $type$ x = ($type$) vh.get(array, ci);
246 vh.set(array, ci, VALUE_1);
250 $type$ x = ($type$) vh.getVolatile(array, ci);
254 $type$ x = ($type$) vh.getAcquire(array, ci);
258 $type$ x = ($type$) vh.getOpaque(array, ci);
262 vh.setVolatile(array, ci, VALUE_1);
266 vh.setRelease(array, ci, VALUE_1);
270 vh.setOpaque(array, ci, VALUE_1);
275 boolean r = vh.compareAndSet(array, ci, VALUE_1, VALUE_2);
[all …]
H A DVarHandleTestByteArrayAsInt.java207 int ci = 1; in testArrayNPE() local
210 int x = (int) vh.get(array, ci); in testArrayNPE()
214 vh.set(array, ci, VALUE_1); in testArrayNPE()
218 int x = (int) vh.getVolatile(array, ci); in testArrayNPE()
222 int x = (int) vh.getAcquire(array, ci); in testArrayNPE()
226 int x = (int) vh.getOpaque(array, ci); in testArrayNPE()
230 vh.setVolatile(array, ci, VALUE_1); in testArrayNPE()
234 vh.setRelease(array, ci, VALUE_1); in testArrayNPE()
238 vh.setOpaque(array, ci, VALUE_1); in testArrayNPE()
242 boolean r = vh.compareAndSet(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
[all …]
H A DVarHandleTestByteArrayAsLong.java207 int ci = 1; in testArrayNPE() local
210 long x = (long) vh.get(array, ci); in testArrayNPE()
214 vh.set(array, ci, VALUE_1); in testArrayNPE()
218 long x = (long) vh.getVolatile(array, ci); in testArrayNPE()
222 long x = (long) vh.getAcquire(array, ci); in testArrayNPE()
226 long x = (long) vh.getOpaque(array, ci); in testArrayNPE()
230 vh.setVolatile(array, ci, VALUE_1); in testArrayNPE()
234 vh.setRelease(array, ci, VALUE_1); in testArrayNPE()
238 vh.setOpaque(array, ci, VALUE_1); in testArrayNPE()
242 boolean r = vh.compareAndSet(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
[all …]
H A DVarHandleTestByteArrayAsFloat.java207 int ci = 1; in testArrayNPE() local
210 float x = (float) vh.get(array, ci); in testArrayNPE()
214 vh.set(array, ci, VALUE_1); in testArrayNPE()
218 float x = (float) vh.getVolatile(array, ci); in testArrayNPE()
222 float x = (float) vh.getAcquire(array, ci); in testArrayNPE()
226 float x = (float) vh.getOpaque(array, ci); in testArrayNPE()
230 vh.setVolatile(array, ci, VALUE_1); in testArrayNPE()
234 vh.setRelease(array, ci, VALUE_1); in testArrayNPE()
238 vh.setOpaque(array, ci, VALUE_1); in testArrayNPE()
242 boolean r = vh.compareAndSet(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
[all …]
H A DVarHandleTestByteArrayAsDouble.java207 int ci = 1; in testArrayNPE() local
210 double x = (double) vh.get(array, ci); in testArrayNPE()
214 vh.set(array, ci, VALUE_1); in testArrayNPE()
218 double x = (double) vh.getVolatile(array, ci); in testArrayNPE()
222 double x = (double) vh.getAcquire(array, ci); in testArrayNPE()
226 double x = (double) vh.getOpaque(array, ci); in testArrayNPE()
230 vh.setVolatile(array, ci, VALUE_1); in testArrayNPE()
234 vh.setRelease(array, ci, VALUE_1); in testArrayNPE()
238 vh.setOpaque(array, ci, VALUE_1); in testArrayNPE()
242 boolean r = vh.compareAndSet(array, ci, VALUE_1, VALUE_2); in testArrayNPE()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp209 static bool dmasksCanBeCombined(const CombineInfo &CI,
212 static bool offsetsCanBeCombined(CombineInfo &CI, const MCSubtargetInfo &STI,
214 static bool widthsFit(const GCNSubtarget &STM, const CombineInfo &CI,
216 static unsigned getNewOpcode(const CombineInfo &CI, const CombineInfo &Paired);
217 static std::pair<unsigned, unsigned> getSubRegIdxs(const CombineInfo &CI,
219 const TargetRegisterClass *getTargetRegisterClass(const CombineInfo &CI,
222 bool findMatchingInst(CombineInfo &CI, CombineInfo &Paired);
226 MachineBasicBlock::iterator mergeRead2Pair(CombineInfo &CI, CombineInfo &Paired);
230 MachineBasicBlock::iterator mergeWrite2Pair(CombineInfo &CI, CombineInfo &Paired);
231 MachineBasicBlock::iterator mergeImagePair(CombineInfo &CI, CombineInfo &Paired);
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp125 bool hasSameBaseAddress(const CombineInfo &CI) { in hasSameBaseAddress()
126 if (NumAddresses != CI.NumAddresses) in hasSameBaseAddress()
129 const MachineInstr &MI = *CI.I; in hasSameBaseAddress()
210 static bool dmasksCanBeCombined(const CombineInfo &CI,
213 static bool offsetsCanBeCombined(CombineInfo &CI, const GCNSubtarget &STI,
215 static bool widthsFit(const GCNSubtarget &STI, const CombineInfo &CI,
217 static unsigned getNewOpcode(const CombineInfo &CI, const CombineInfo &Paired);
218 static std::pair<unsigned, unsigned> getSubRegIdxs(const CombineInfo &CI,
220 const TargetRegisterClass *getTargetRegisterClass(const CombineInfo &CI,
224 CombineInfo *checkAndPrepareMerge(CombineInfo &CI, CombineInfo &Paired);
[all …]
/aosp_15_r20/external/mesa3d/.gitlab-ci/
H A Dfarm-rules.yml5 # - exists: [ .ci-farms-disabled/$FARM ]
10 # - changes: [ .ci-farms-disabled/$FARM ]
19 # - changes: [ .ci-farms-disabled/* ]
29 # corresponding `src/**/ci/gitlab-ci.yml`.
33 - exists: [ .ci-farms-disabled/microsoft ] # 1. Is disabled, never run
35 - changes: [ .ci-farms-disabled/microsoft ] # 2. Removed from disabled, run
38 - changes: [ .ci-farms-disabled/* ] # 3. We touched other farms in MR, do not run
47 - exists: [ .ci-farms-disabled/microsoft ]
49 - changes: [ .ci-farms-disabled/microsoft ]
58 - exists: [ .ci-farms-disabled/microsoft ]
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib/contrib/minizip/
Dzip.c171 curfile64_info ci; /* info on the file curretly writing */ member
876 ziinit.ci.stream_initialised = 0; in zipOpen3()
969 if(zi->ci.zip64) in Write_LocalFileHeader()
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2); in Write_LocalFileHeader()
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2); in Write_LocalFileHeader()
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4); in Write_LocalFileHeader()
989 if(zi->ci.zip64) in Write_LocalFileHeader()
996 if(zi->ci.zip64) in Write_LocalFileHeader()
1005 if(zi->ci.zip64) in Write_LocalFileHeader()
1026 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
[all …]
/aosp_15_r20/external/zlib/contrib/minizip/
H A Dzip.c167 curfile64_info ci; /* info on the file currently writing */ member
842 ziinit.ci.stream_initialised = 0; in zipOpen3()
930 if(zi->ci.zip64) in Write_LocalFileHeader()
937 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2); in Write_LocalFileHeader()
940 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2); in Write_LocalFileHeader()
943 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4); in Write_LocalFileHeader()
950 if(zi->ci.zip64) in Write_LocalFileHeader()
957 if(zi->ci.zip64) in Write_LocalFileHeader()
966 if(zi->ci.zip64) in Write_LocalFileHeader()
987 if ((err==ZIP_OK) && (zi->ci.zip64)) in Write_LocalFileHeader()
[all …]
/aosp_15_r20/art/tools/luci/config/generated/
H A Dluci-scheduler.cfg9 realm: "ci"
10 acl_sets: "ci"
13 bucket: "ci"
19 realm: "ci"
20 acl_sets: "ci"
23 bucket: "ci"
29 realm: "ci"
30 acl_sets: "ci"
33 bucket: "ci"
39 realm: "ci"
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
62 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
65 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h51 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
54 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
62 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
62 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
65 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
62 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
65 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
62 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
65 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]

12345678910>>...366