HomeSort by: relevance | last modified time | path
    Searched refs:Access (Results 1 - 25 of 103) sorted by relevancy

1 2 3 4 5

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_mop.cc 111 t1.Access(l.loc(), true, 8, false);
112 t2.Access((char*)l.loc() + 4, true, 4, true);
116 t1.Access(l.loc(), true, 8, false);
117 t2.Access((char*)l.loc() + 7, true, 1, true);
121 t1.Access((char*)l.loc() + 4, true, 4, false);
122 t2.Access((char*)l.loc() + 4, true, 2, true);
126 t1.Access((char*)l.loc() + 4, true, 4, false);
127 t2.Access((char*)l.loc() + 6, true, 2, true);
131 t1.Access((char*)l.loc() + 3, true, 2, false);
132 t2.Access((char*)l.loc() + 4, true, 1, true)
    [all...]
tsan_test_util.h 74 void Access(void *addr, bool is_write, int size, bool expect_race);
76 Access(ml.loc(), false, size, expect_race);
79 Access(ml.loc(), true, size, expect_race);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DependentDiagnostic.h 12 // At the moment, the only consumer of this interface is access
38 enum AccessNonce { Access = 0 };
53 DD->AccessData.Access = AS;
61 return Access;
65 assert(getKind() == Access);
70 assert(getKind() == Access);
71 return AccessSpecifier(AccessData.Access);
75 assert(getKind() == Access);
80 assert(getKind() == Access);
85 assert(getKind() == Access);
    [all...]
CXXInheritance.h 72 /// The access along this inheritance path. This is only
74 /// used to indicate a path which permits no legal access.
75 AccessSpecifier Access = AS_public;
84 Access = AS_public;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 50 AccessPattern Access) {
59 sortKeysBy(R.Keys, Access);
80 template <class Access>
87 sortKeysBy(Keys, Access());
100 return "BM_Create" + Access::name() + baseName();
104 template <class Hit, class Access>
109 auto Data = makeTestingSets(TableSize, NumTables, Hit(), Access());
121 return "BM_Find" + Hit::name() + Access::name() + baseName();
125 template <class Hit, class Access>
130 auto Data = makeTestingSets(TableSize, NumTables, Hit(), Access());
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemProfiler.cpp 1 //===- MemProfiler.cpp - memory allocation and access profiler ------------===//
10 // to increment the access count held in a shadow memory location, or
93 ClMemoryAccessCallbackPrefix("memprof-memory-access-callback-prefix",
94 cl::desc("Prefix for memory access callbacks"),
165 /// If it is an interesting memory access, populate information
166 /// about the access and return a InterestingMemoryAccess struct.
172 InterestingMemoryAccess &Access);
330 InterestingMemoryAccess Access;
336 Access.IsWrite = false;
337 Access.TypeSize = DL.getTypeStoreSizeInBits(LI->getType())
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DelayedDiagnostic.h 15 /// diagnostics -- notably deprecation and access control -- are suppressed
63 : Access(FoundDecl.getAccess()), IsMember(true),
69 CXXRecordDecl *DerivedClass, AccessSpecifier Access)
70 : Access(Access), IsMember(false), Target(BaseClass),
77 AccessSpecifier getAccess() const { return AccessSpecifier(Access); }
114 unsigned Access : 2;
126 enum DDKind : unsigned char { Availability, Access, ForbiddenType };
147 DD.Kind = Access;
169 assert(Kind == Access && "Not an access diagnostic.")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ilist_iterator.h 41 using Access = ilist_detail::NodeAccess;
43 template <class T> static void increment(T *&I) { I = Access::getNext(*I); }
44 template <class T> static void decrement(T *&I) { I = Access::getPrev(*I); }
47 using Access = ilist_detail::NodeAccess;
49 template <class T> static void increment(T *&I) { I = Access::getPrev(*I); }
50 template <class T> static void decrement(T *&I) { I = Access::getNext(*I); }
63 using Access = ilist_detail::SpecificNodeAccess<OptionsT>;
84 explicit ilist_iterator(pointer NP) : NodePtr(Access::getNodePtr(NP)) {}
85 explicit ilist_iterator(reference NR) : NodePtr(Access::getNodePtr(&NR)) {}
139 return *Access::getValuePtr(NodePtr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kCollapseMOVEMPass.cpp 51 AccessTy Access;
56 Mask(0), Access(AccessTy::None) {}
141 void setLoad() { Access = AccessTy::Load; }
142 void setStore() { Access = AccessTy::Store; }
144 bool isLoad() const { return Access == AccessTy::Load; }
145 bool isStore() const { return Access == AccessTy::Store; }
151 /// access type into a `MOVEState` instance.
  /src/sys/external/bsd/acpica/dist/tools/examples/
extables.c 377 [0001] Encoded Access Width : 01 [Byte Access:8]
388 [0001] Encoded Access Width : 02 [Word Access:16]
395 [0001] Encoded Access Width : 00 [Undefined/Legacy]
402 [0001] Encoded Access Width : 02 [Word Access:16]
409 [0001] Encoded Access Width : 00 [Undefined/Legacy]
416 [0001] Encoded Access Width : 00 [Undefined/Legacy]
423 [0001] Encoded Access Width : 03 [DWord Access:32
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
DelayedDiagnostic.cpp 61 case Access:
SemaAccess.cpp 1 //===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===//
9 // This file provides Sema routines for C++ access control semantics.
36 /// SetMemberAccessSpecifier - Set the access specifier of a member.
37 /// Returns true on error (when the previous member decl access specifier
38 /// is different from the new member decl access specifier).
43 // Use the lexical access specifier.
48 // C++ [class.access.spec]p3: When a member is redeclared its access
88 // class template, but for access purposes behaves like the constructor
101 // C++11 [class.access.nest]p1
1791 AccessSpecifier access = target->getAccess(); local
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSA.h 13 /// Memory SSA class builds an SSA form that links together memory access
167 /// The user iterators for a memory access
173 /// MemoryUse/MemoryDef, this walks the defining access.
179 /// Get the iterators for the all access list and the defs only list
180 /// We default to the all access list.
259 /// Get the access that produces the memory state used by this Use.
272 // Retrieve AliasResult type of the optimized access. Ideally this would be
370 /// Represents a read-write access to memory, whether it is a must-alias,
499 // Block iterator interface. This provides access to the list of incoming
623 // After deleting incoming memory access MA, the incoming accesses order ma
    [all...]
AliasSetTracker.h 159 /// The kinds of access this alias set models.
162 /// memory (and not any particular access), whether it modifies or references
171 unsigned Access : 2;
204 bool isRef() const { return Access & RefAccess; }
205 bool isMod() const { return Access & ModAccess; }
216 // Alias Set iteration - Allow access to all of the pointers which are part of
275 : PtrListEnd(&PtrList), RefCount(0), AliasAny(false), Access(NoAccess),
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasSetTracker.cpp 53 // Update the alias and access types of this set...
54 Access |= AS.Access;
181 Access |= RefAccess;
187 Access = ModRefAccess;
536 (AliasSet::AccessLattice)AS.Access);
608 AliasAnyAS->Access = AliasSet::ModRefAccess;
631 AS.Access |= E;
649 switch (Access) {
650 case NoAccess: OS << "No access "; break
    [all...]
LoopAccessAnalysis.cpp 1 //===- LoopAccessAnalysis.cpp - Loop Access Analysis Implementation --------==//
107 "loop-access analysis (default = 100)"),
122 "enable-mem-access-versioning", cl::init(true), cl::Hidden,
123 cl::desc("Enable symbolic stride memory access versioning"));
129 cl::desc("Enable conflict detection in loop-access analysis"),
178 /// Calculate Start and End points of memory access.
179 /// Let's assume A is the first access and B is a memory access on N-th loop
187 /// where SizeOfElt is the size of single memory access in bytes.
380 MemoryDepChecker::MemAccessInfo Access(Pointers[I].PointerValue
    [all...]
StackSafetyAnalysis.cpp 116 // Access range if the address (alloca or parameters).
123 // access range that can cause empty-set to be propagated with
180 // StackSafetyDataFlowAnalysis counter stored here for faster access.
276 // Zero-size loads and stores do not access memory.
328 /// calculates local access range and all function calls where it was used.
520 auto &Access = ParamIt->second.Range;
521 if (Access.isEmptySet())
522 return Access;
523 if (Access.isFullSet())
525 return addOverflowNever(Access, Offsets)
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exprep.c 84 * DESCRIPTION: Generate an optimal access width for fields defined with the
90 * of this access width must be deferred until the region length has
134 * Iterative search for the maximum access width that is both aligned
142 * 1) Round end offset up to next access boundary and make sure that
144 * 2) When the Access width is greater than the FieldByteLength, we
168 /* Single access is optimal */
181 * try the next wider access on next iteration
206 * previous access
209 "Backing off to previous optimal access width of %u\n",
217 * just use max access widt
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeDumpVisitor.h 64 void printMemberAttributes(MemberAccess Access, MethodKind Kind,
TypeRecord.h 49 explicit MemberAttributes(MemberAccess Access)
50 : Attrs(static_cast<uint16_t>(Access)) {}
52 MemberAttributes(MemberAccess Access, MethodKind Kind, MethodOptions Flags) {
53 Attrs = static_cast<uint16_t>(Access);
58 /// Get the access specifier. Valid for any kind of member.
70 /// Get the flags that are not included in access control or method
727 OneMethodRecord(TypeIndex Type, MemberAccess Access, MethodKind MK,
730 Attrs(Access, MK, Options), VFTableOffset(VFTableOffset), Name(Name) {}
791 DataMemberRecord(MemberAccess Access, TypeIndex Type, uint64_t Offset,
793 : TypeRecord(TypeRecordKind::DataMember), Attrs(Access), Type(Type)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBExtras.h 36 raw_ostream &operator<<(raw_ostream &OS, const PDB_MemberAccess &Access);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
accctrl.d 115 const TCHAR[] ACCCTRL_DEFAULT_PROVIDER = "Windows NT Access Provider";
213 ACCESS_RIGHTS Access;
223 ACCESS_RIGHTS Access;
272 ACCESS_RIGHTS Access;
280 ACCESS_RIGHTS Access;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 568 sys::fs::CreationDisposition Disp, sys::fs::FileAccess Access,
570 assert((Access & sys::fs::FA_Write) &&
583 if (Access & sys::fs::FA_Read)
602 sys::fs::FileAccess Access)
603 : raw_fd_ostream(Filename, EC, sys::fs::CD_CreateAlways, Access,
613 sys::fs::FileAccess Access,
615 : raw_fd_ostream(getFD(Filename, EC, Disp, Access, Flags), true) {}
  /src/external/apache2/llvm/dist/clang/lib/AST/
CXXInheritance.cpp 164 // The access of the path down to this record.
165 AccessSpecifier AccessToHere = ScratchPath.Access;
210 // Calculate the "top-down" access to this base class.
213 // 1. Write down the access along each step in the inheritance
214 // chain, followed by the access of the decl itself.
222 // 2. If 'private' appears anywhere except far-left, access is denied.
223 // 3. Otherwise, overall access is determined by the most restrictive
224 // access in the sequence.
226 ScratchPath.Access = BaseSpec.getAccessSpecifier();
228 ScratchPath.Access = CXXRecordDecl::MergeAccess(AccessToHere
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 141 static std::string memberAccess(MemberAccess Access) {
142 switch (Access) {
148 return formatUnknownEnum(Access);
185 std::string Access = memberAccess(Attrs.getAccess());
187 if (!Access.empty())
188 Opts.push_back(Access);

Completed in 71 milliseconds

1 2 3 4 5