Searched refs:CS (Results 1 - 25 of 232) sorted by last modified time

12345678910

/external/valgrind/none/tests/arm64/
H A Dinteger.stdout.exp850 CS{EL,INC,INV,NEG}(64)
883 CS{EL,INC,INV,NEG}(32)
/external/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]
/external/valgrind/VEX/auxprogs/
H A Dgenoffsets.c96 GENOFFSET(X86,x86,CS);
/external/valgrind/coregrind/m_sigframe/
H A Dsigframe-x86-linux.c383 SC2(cs,CS);
/external/valgrind/memcheck/
H A Dmc_machine.c748 if (o == GOF(CS) && sz == 2) return -1;
/external/strace/linux/i386/
H A Duserent.h14 XLAT(4*CS),
/external/strace/linux/x86_64/
H A Duserent.h18 XLAT(8*CS),
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.cpp1056 HANDLE_NAME_ABBR(key, ColorSpace, CS);
/external/selinux/policycoreutils/mcstrans/share/examples/nato/setrans.d/
H A Deyes-only.conf162 ~c252=CS # Costa Rica
H A Drel.conf168 ~c200,~c252=CS # Costa Rica
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h472 IMPLEMENT_SHADER_STAGE(CS, Compute)
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c43 #define CS 4 macro
91 } limits[CS+1] = {
122 if (csize < limits[CS].min_entry_size)
123 csize = limits[CS].min_entry_size;
147 brw->urb.nr_cs_entries = limits[CS].preferred_nr_entries;
176 brw->urb.nr_cs_entries = limits[CS].min_nr_entries;
199 printf("URB fence: %d ..VS.. %d ..GS.. %d ..CLP.. %d ..SF.. %d ..CS.. %d\n",
/external/mesa3d/src/mesa/x86/
H A Dassyntax.h117 #define CS cs macro
179 #define CS %cs macro
856 #define W_CS CS
/external/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp56 if (CheckSameMatcher *CS = dyn_cast<CheckSameMatcher>(MC->getNext()))
58 New = new CheckChildSameMatcher(MC->getChildNo(), CS->getMatchNumber());
60 if (CheckIntegerMatcher *CS = dyn_cast<CheckIntegerMatcher>(MC->getNext()))
62 New = new CheckChildIntegerMatcher(MC->getChildNo(), CS->getValue());
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp312 NWindows::NSynchronization::CCriticalSection CS; member in class:CBenchProgressStatus
320 NWindows::NSynchronization::CCriticalSectionLock lock(CS);
327 NWindows::NSynchronization::CCriticalSectionLock lock(CS);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1122 ConstantStruct *CS = cast<ConstantStruct>(OP); local
1125 if (Function *F = dyn_cast<Function>(CS->getOperand(1))) {
1127 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
1536 CallSite CS(&Inst);
1537 if (CS) {
1540 if (CS.doesNotReturn()) NoReturnCalls.push_back(CS.getInstruction());
H A DDataFlowSanitizer.cpp336 void visitCallSite(CallSite CS);
1387 void DFSanVisitor::visitCallSite(CallSite CS) { argument
1388 Function *F = CS.getCalledFunction();
1389 if ((F && F->isIntrinsic()) || isa<InlineAsm>(CS.getCalledValue())) {
1390 visitOperandShadowInst(*CS.getInstruction());
1400 CS.getCalledValue()->getType()->getPointerElementType())->isVarArg() &&
1401 dyn_cast<InvokeInst>(CS.getInstruction())));
1403 IRBuilder<> IRB(CS.getInstruction());
1406 DFSF.DFS.UnwrappedFnMap.find(CS.getCalledValue());
1411 CS
[all...]
H A DMemorySanitizer.cpp521 virtual void visitCallSite(CallSite &CS, IRBuilder<> &IRB) = 0;
2379 void visitCallSite(CallSite CS) { argument
2380 Instruction &I = *CS.getInstruction();
2381 assert((CS.isCall() || CS.isInvoke()) && "Unknown type of CallSite");
2382 if (CS.isCall()) {
2414 for (CallSite::arg_iterator ArgIt = CS.arg_begin(), End = CS.arg_end();
2417 unsigned i = ArgIt - CS.arg_begin();
2433 if (CS
[all...]
H A DSanitizerCoverage.cpp265 CallSite CS(&Inst);
266 if (CS && !CS.getCalledFunction())
309 CallSite CS(I);
310 Value *Callee = CS.getCalledValue();
/external/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp48 ImmutableCallSite CS(Inst);
49 assert(CS && "Only calls can alter reference counts!");
52 AliasAnalysis::ModRefBehavior MRB = PA.getAA()->getModRefBehavior(CS);
57 for (ImmutableCallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
102 } else if (auto CS = ImmutableCallSite(Inst)) {
104 for (ImmutableCallSite::arg_iterator OI = CS.arg_begin(),
105 OE = CS.arg_end(); OI != OE; ++OI) {
H A DObjCARC.h210 /// \brief Helper for GetARCInstKind. Determines what kind of construct CS
212 static inline ARCInstKind GetCallSiteClass(ImmutableCallSite CS) { argument
213 for (ImmutableCallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
216 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser;
218 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call;
H A DObjCARCAPElim.cpp44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
71 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) { argument
72 if (const Function *Callee = CS.getCalledFunction()) {
H A DObjCARCAliasAnalysis.cpp117 ObjCARCAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) { argument
119 return AliasAnalysis::getModRefBehavior(CS);
138 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) { argument
140 return AliasAnalysis::getModRefInfo(CS, Loc);
142 switch (GetBasicARCInstKind(CS.getInstruction())) {
159 return AliasAnalysis::getModRefInfo(CS, Loc);
H A DObjCARCAliasAnalysis.h61 ModRefBehavior getModRefBehavior(ImmutableCallSite CS) override;
63 ModRefResult getModRefInfo(ImmutableCallSite CS,
H A DObjCARCContract.cpp114 ImmutableCallSite CS(GetArgRCIdentityRoot(Retain));
115 const Instruction *Call = CS.getInstruction();

Completed in 626 milliseconds

12345678910